From owner-svn-src-user@FreeBSD.ORG Tue Apr 17 16:57:52 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 593D01065675; Tue, 17 Apr 2012 16:57:52 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3A58F8FC14; Tue, 17 Apr 2012 16:57: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 q3HGvq1n090829; Tue, 17 Apr 2012 16:57:52 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3HGvqZD090825; Tue, 17 Apr 2012 16:57:52 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204171657.q3HGvqZD090825@svn.freebsd.org> From: Navdeep Parhar Date: Tue, 17 Apr 2012 16:57:51 +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: r234387 - user/np/toe_iwarp/sys/netinet 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, 17 Apr 2012 16:57:52 -0000 Author: np Date: Tue Apr 17 16:57:51 2012 New Revision: 234387 URL: http://svn.freebsd.org/changeset/base/234387 Log: Replacement for the old arp_update_event. This one allows you to track state changes of an llentry. Modified: user/np/toe_iwarp/sys/netinet/if_ether.c user/np/toe_iwarp/sys/netinet/if_ether.h user/np/toe_iwarp/sys/netinet/in.c Modified: user/np/toe_iwarp/sys/netinet/if_ether.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/if_ether.c Tue Apr 17 16:28:22 2012 (r234386) +++ user/np/toe_iwarp/sys/netinet/if_ether.c Tue Apr 17 16:57:51 2012 (r234387) @@ -180,6 +180,17 @@ arptimer(void *arg) callout_active(&lle->la_timer)) { callout_stop(&lle->la_timer); LLE_REMREF(lle); + + if (lle->la_flags != LLE_DELETED) { + int evt; + + if (lle->la_flags & LLE_VALID) + evt = LLENTRY_EXPIRED; + else + evt = LLENTRY_TIMEDOUT; + EVENTHANDLER_INVOKE(lle_event, lle, evt); + } + pkts_dropped = llentry_free(lle); ARPSTAT_ADD(dropped, pkts_dropped); ARPSTAT_INC(timeouts); @@ -312,7 +323,7 @@ arpresolve(struct ifnet *ifp, struct rte } retry: IF_AFDATA_RLOCK(ifp); - la = lla_lookup(LLTABLE(ifp), flags, dst); + la = *lle = lla_lookup(LLTABLE(ifp), flags, dst); IF_AFDATA_RUNLOCK(ifp); if ((la == NULL) && ((flags & LLE_EXCLUSIVE) == 0) && ((ifp->if_flags & (IFF_NOARP | IFF_STATICARP)) == 0)) { @@ -344,7 +355,6 @@ retry: la->la_preempt--; } - *lle = la; error = 0; goto done; } @@ -727,6 +737,7 @@ match: la->la_flags |= LLE_VALID; EVENTHANDLER_INVOKE(arp_update_event, la); + EVENTHANDLER_INVOKE(lle_event, la, LLENTRY_RESOLVED); if (!(la->la_flags & LLE_STATIC)) { int canceled; Modified: user/np/toe_iwarp/sys/netinet/if_ether.h ============================================================================== --- user/np/toe_iwarp/sys/netinet/if_ether.h Tue Apr 17 16:28:22 2012 (r234386) +++ user/np/toe_iwarp/sys/netinet/if_ether.h Tue Apr 17 16:57:51 2012 (r234387) @@ -122,9 +122,19 @@ void arp_ifinit2(struct ifnet *, struct void arp_ifscrub(struct ifnet *, uint32_t); #include +/* XXX: can be retired once OFED code is updated to use lle_event */ typedef void (*llevent_arp_update_fn)(void *, struct llentry *); EVENTHANDLER_DECLARE(arp_update_event, llevent_arp_update_fn); +enum { + LLENTRY_RESOLVED, + LLENTRY_TIMEDOUT, + LLENTRY_DELETED, + LLENTRY_EXPIRED, +}; +typedef void (*lle_event_fn)(void *, struct llentry *, int); +EVENTHANDLER_DECLARE(lle_event, lle_event_fn); + #endif #endif Modified: user/np/toe_iwarp/sys/netinet/in.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/in.c Tue Apr 17 16:28:22 2012 (r234386) +++ user/np/toe_iwarp/sys/netinet/in.c Tue Apr 17 16:57:51 2012 (r234387) @@ -1470,6 +1470,7 @@ in_lltable_lookup(struct lltable *llt, u LLE_WLOCK(lle); lle->la_flags = LLE_DELETED; EVENTHANDLER_INVOKE(arp_update_event, lle); + EVENTHANDLER_INVOKE(lle_event, lle, LLENTRY_DELETED); LLE_WUNLOCK(lle); #ifdef DIAGNOSTIC log(LOG_INFO, "ifaddr cache = %p is deleted\n", lle); From owner-svn-src-user@FreeBSD.ORG Tue Apr 17 17:08:51 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA65A106566C; Tue, 17 Apr 2012 17:08:51 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7C0308FC19; Tue, 17 Apr 2012 17:08:51 +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 q3HH8pGs091202; Tue, 17 Apr 2012 17:08:51 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3HH8pB1091197; Tue, 17 Apr 2012 17:08:51 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204171708.q3HH8pB1091197@svn.freebsd.org> From: Navdeep Parhar Date: Tue, 17 Apr 2012 17:08:51 +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: r234388 - in user/np/toe_iwarp/sys: amd64/conf conf 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, 17 Apr 2012 17:08:51 -0000 Author: np Date: Tue Apr 17 17:08:50 2012 New Revision: 234388 URL: http://svn.freebsd.org/changeset/base/234388 Log: Rename TCP_OFFLOAD_DISABLE to TCP_OFFLOAD (with its meaning flipped, of course). Enable it in GENERIC on amd64 only for now. Modified: user/np/toe_iwarp/sys/amd64/conf/GENERIC user/np/toe_iwarp/sys/conf/NOTES user/np/toe_iwarp/sys/conf/files user/np/toe_iwarp/sys/conf/options Modified: user/np/toe_iwarp/sys/amd64/conf/GENERIC ============================================================================== --- user/np/toe_iwarp/sys/amd64/conf/GENERIC Tue Apr 17 16:57:51 2012 (r234387) +++ user/np/toe_iwarp/sys/amd64/conf/GENERIC Tue Apr 17 17:08:50 2012 (r234388) @@ -27,6 +27,7 @@ options SCHED_ULE # ULE scheduler options PREEMPTION # Enable kernel thread preemption options INET # InterNETworking options INET6 # IPv6 communications protocols +options TCP_OFFLOAD # TCP offload options SCTP # Stream Control Transmission Protocol options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support Modified: user/np/toe_iwarp/sys/conf/NOTES ============================================================================== --- user/np/toe_iwarp/sys/conf/NOTES Tue Apr 17 16:57:51 2012 (r234387) +++ user/np/toe_iwarp/sys/conf/NOTES Tue Apr 17 17:08:50 2012 (r234388) @@ -544,6 +544,8 @@ options INET6 #IPv6 communications pr options ROUTETABLES=2 # max 16. 1 is back compatible. +options TCP_OFFLOAD # TCP offload support. + # In order to enable IPSEC you MUST also add device crypto to # your kernel configuration options IPSEC #IP security (requires device crypto) Modified: user/np/toe_iwarp/sys/conf/files ============================================================================== --- user/np/toe_iwarp/sys/conf/files Tue Apr 17 16:57:51 2012 (r234387) +++ user/np/toe_iwarp/sys/conf/files Tue Apr 17 17:08:50 2012 (r234388) @@ -2993,7 +2993,7 @@ netinet/tcp_hostcache.c optional inet | netinet/tcp_input.c optional inet | inet6 netinet/tcp_lro.c optional inet | inet6 netinet/tcp_output.c optional inet | inet6 -netinet/tcp_offload.c optional inet | inet6 +netinet/tcp_offload.c optional tcp_offload inet | tcp_offload inet6 netinet/tcp_reass.c optional inet | inet6 netinet/tcp_sack.c optional inet | inet6 netinet/tcp_subr.c optional inet | inet6 Modified: user/np/toe_iwarp/sys/conf/options ============================================================================== --- user/np/toe_iwarp/sys/conf/options Tue Apr 17 16:57:51 2012 (r234387) +++ user/np/toe_iwarp/sys/conf/options Tue Apr 17 17:08:50 2012 (r234388) @@ -432,7 +432,7 @@ RADIX_MPATH opt_mpath.h ROUTETABLES opt_route.h SLIP_IFF_OPTS opt_slip.h TCPDEBUG -TCP_OFFLOAD_DISABLE opt_inet.h #Disable code to dispatch tcp offloading +TCP_OFFLOAD opt_inet.h # Enable code to dispatch TCP offloading TCP_SIGNATURE opt_inet.h VLAN_ARRAY opt_vlan.h XBONEHACK From owner-svn-src-user@FreeBSD.ORG Tue Apr 17 17:59:02 2012 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 90F77106566B; Tue, 17 Apr 2012 17:59:02 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 796558FC14; Tue, 17 Apr 2012 17:59: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 q3HHx24n092787; Tue, 17 Apr 2012 17:59:02 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3HHx2oN092782; Tue, 17 Apr 2012 17:59:02 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204171759.q3HHx2oN092782@svn.freebsd.org> From: Navdeep Parhar Date: Tue, 17 Apr 2012 17:59: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: r234389 - in user/np/toe_iwarp/sys: dev/cxgb/ulp/toecore modules modules/cxgb/toecore modules/toecore netinet 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, 17 Apr 2012 17:59:02 -0000 Author: np Date: Tue Apr 17 17:59:01 2012 New Revision: 234389 URL: http://svn.freebsd.org/changeset/base/234389 Log: Replacement toedev/toecore interface. Interfaces in the toedev struct are all the hooks a TOE driver exposes to the kernel (toe_usrreqs etc. will all be retired). A few helper functions for use by a TOE driver will also be added to this module. All TOE drivers are expected to have a dependency on the toecore module. Added: user/np/toe_iwarp/sys/modules/toecore/ user/np/toe_iwarp/sys/modules/toecore/Makefile (contents, props changed) user/np/toe_iwarp/sys/netinet/toecore.c (contents, props changed) user/np/toe_iwarp/sys/netinet/toecore.h (contents, props changed) Deleted: user/np/toe_iwarp/sys/dev/cxgb/ulp/toecore/cxgb_toedev.h user/np/toe_iwarp/sys/dev/cxgb/ulp/toecore/toedev.c user/np/toe_iwarp/sys/modules/cxgb/toecore/Makefile user/np/toe_iwarp/sys/netinet/toedev.h Modified: user/np/toe_iwarp/sys/modules/Makefile Modified: user/np/toe_iwarp/sys/modules/Makefile ============================================================================== --- user/np/toe_iwarp/sys/modules/Makefile Tue Apr 17 17:08:50 2012 (r234388) +++ user/np/toe_iwarp/sys/modules/Makefile Tue Apr 17 17:59:01 2012 (r234389) @@ -309,6 +309,7 @@ SUBDIR= ${_3dfx} \ ${_ti} \ tl \ tmpfs \ + ${_toecore} \ ${_tpm} \ trm \ ${_twa} \ @@ -383,6 +384,7 @@ _random= random .if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \ defined(ALL_MODULES) _carp= carp +_toecore= toecore .endif .if ${MK_INET_SUPPORT} != "no" || defined(ALL_MODULES) Added: user/np/toe_iwarp/sys/modules/toecore/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/np/toe_iwarp/sys/modules/toecore/Makefile Tue Apr 17 17:59:01 2012 (r234389) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../netinet + +KMOD= toecore +SRCS= toecore.c + +.include Added: user/np/toe_iwarp/sys/netinet/toecore.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/np/toe_iwarp/sys/netinet/toecore.c Tue Apr 17 17:59:01 2012 (r234389) @@ -0,0 +1,480 @@ +/*- + * Copyright (c) 2012 Chelsio Communications, Inc. + * All rights reserved. + * Written by: Navdeep Parhar + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD$"); + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#define TCPSTATES +#include +#include +#include +#include +#include +#include + +static struct mtx toedev_lock; +static TAILQ_HEAD(, toedev) toedev_list; +static eventhandler_tag listen_start_eh, listen_stop_eh; +static eventhandler_tag lle_event_eh, route_redirect_eh; + +static int +toedev_connect(struct toedev *tod __unused, struct socket *so __unused, + struct rtentry *rt __unused, struct sockaddr *nam __unused) +{ + + return (ENOTSUP); +} + +static int +toedev_listen_start(struct toedev *tod __unused, struct tcpcb *tp __unused) +{ + + return (ENOTSUP); +} + +static int +toedev_listen_stop(struct toedev *tod __unused, struct tcpcb *tp __unused) +{ + + return (ENOTSUP); +} + +static void +toedev_input(struct toedev *tod __unused, struct tcpcb *tp __unused, + struct mbuf *m __unused, int hlen __unused) +{ + + m_freem(m); + return; +} + +static void +toedev_rcvd(struct toedev *tod __unused, struct tcpcb *tp __unused) +{ + + return; +} + +static int +toedev_output(struct toedev *tod __unused, struct tcpcb *tp __unused) +{ + + return (ENOTSUP); +} + +static void +toedev_pcb_detach(struct toedev *tod __unused, struct tcpcb *tp __unused) +{ + + return; +} + +static void +toedev_l2_update(struct toedev *tod __unused, struct ifnet *ifp __unused, + struct sockaddr *sa __unused, uint8_t *lladdr __unused, + uint16_t vtag __unused) +{ + + return; +} + +static void +toedev_route_redirect(struct toedev *tod __unused, struct ifnet *ifp __unused, + struct rtentry *rt0 __unused, struct rtentry *rt1 __unused) +{ + + return; +} + +static void +toedev_syncache_added(struct toedev *tod __unused, void *ctx __unused) +{ + + return; +} + +static void +toedev_syncache_removed(struct toedev *tod __unused, void *ctx __unused) +{ + + return; +} + +static int +toedev_syncache_respond(struct toedev *tod __unused, void *ctx __unused, + struct mbuf *m) +{ + + m_freem(m); + return (0); +} + +static void +toedev_ctloutput(struct toedev *tod __unused, struct tcpcb *tp __unused, + int sopt_dir __unused, int sopt_name __unused) +{ + + return; +} + +/* + * Inform one or more TOE devices about a listening socket. + */ +static void +toe_listen_start(struct inpcb *inp, void *arg) +{ + struct toedev *t = arg, *tod; + struct tcpcb *tp; + + INP_WLOCK_ASSERT(inp); + KASSERT(inp->inp_pcbinfo == &V_tcbinfo, + ("%s: inp is not a TCP inp", __func__)); + + if (inp->inp_flags & (INP_DROPPED | INP_TIMEWAIT)) + return; + + tp = intotcpcb(inp); + if (tp->t_state != TCPS_LISTEN) + return; + + mtx_lock(&toedev_lock); + TAILQ_FOREACH(tod, &toedev_list, link) { + if (t == NULL || t == tod) + tod->tod_listen_start(tod, tp); + } + mtx_unlock(&toedev_lock); +} + +static void +toe_listen_start_event(void *arg __unused, struct tcpcb *tp) +{ + struct inpcb *inp = tp->t_inpcb; + + INP_WLOCK_ASSERT(inp); + KASSERT(tp->t_state == TCPS_LISTEN, + ("%s: t_state %s", __func__, tcpstates[tp->t_state])); + + toe_listen_start(inp, NULL); +} + +static void +toe_listen_stop_event(void *arg __unused, struct tcpcb *tp) +{ + struct toedev *tod; +#ifdef INVARIANTS + struct inpcb *inp = tp->t_inpcb; +#endif + + INP_WLOCK_ASSERT(inp); + KASSERT(tp->t_state == TCPS_LISTEN, + ("%s: t_state %s", __func__, tcpstates[tp->t_state])); + + mtx_lock(&toedev_lock); + TAILQ_FOREACH(tod, &toedev_list, link) + tod->tod_listen_stop(tod, tp); + mtx_unlock(&toedev_lock); +} + +/* + * Fill up a freshly allocated toedev struct with reasonable defaults. + */ +void +init_toedev(struct toedev *tod) +{ + + tod->tod_softc = NULL; + + /* + * Provide no-op defaults so that the kernel can call any toedev + * function without having to check whether the TOE driver supplied one + * or not. + */ + tod->tod_connect = toedev_connect; + tod->tod_listen_start = toedev_listen_start; + tod->tod_listen_stop = toedev_listen_stop; + tod->tod_input = toedev_input; + tod->tod_rcvd = toedev_rcvd; + tod->tod_output = toedev_output; + tod->tod_send_rst = toedev_output; + tod->tod_send_fin = toedev_output; + tod->tod_pcb_detach = toedev_pcb_detach; + tod->tod_l2_update = toedev_l2_update; + tod->tod_route_redirect = toedev_route_redirect; + tod->tod_syncache_added = toedev_syncache_added; + tod->tod_syncache_removed = toedev_syncache_removed; + tod->tod_syncache_respond = toedev_syncache_respond; + tod->tod_ctloutput = toedev_ctloutput; +} + +/* + * Register an active TOE device with the system. This allows it to receive + * notifications from the kernel. + */ +int +register_toedev(struct toedev *tod) +{ + struct toedev *t; + + mtx_lock(&toedev_lock); + TAILQ_FOREACH(t, &toedev_list, link) { + if (t == tod) { + mtx_unlock(&toedev_lock); + return (EEXIST); + } + } + + TAILQ_INSERT_TAIL(&toedev_list, tod, link); + registered_toedevs++; + mtx_unlock(&toedev_lock); + + inp_apply_all(toe_listen_start, tod); + + return (0); +} + +/* + * Remove the TOE device from the global list of active TOE devices. It is the + * caller's responsibility to ensure that the TOE device is quiesced prior to + * this call. + */ +int +unregister_toedev(struct toedev *tod) +{ + struct toedev *t, *t2; + int rc = ENODEV; + + mtx_lock(&toedev_lock); + TAILQ_FOREACH_SAFE(t, &toedev_list, link, t2) { + if (t == tod) { + TAILQ_REMOVE(&toedev_list, tod, link); + registered_toedevs--; + rc = 0; + break; + } + } + KASSERT(registered_toedevs >= 0, + ("%s: registered_toedevs < 0", __func__)); + mtx_unlock(&toedev_lock); + return (rc); +} + +void +toe_syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, + struct inpcb *inp, void *tod, void *todctx) +{ + struct socket *lso = inp->inp_socket; + + INP_INFO_WLOCK_ASSERT(&V_tcbinfo); + INP_WLOCK_ASSERT(inp); + + syncache_add(inc, to, th, inp, &lso, NULL, tod, todctx); +} + +int +toe_syncache_expand(struct in_conninfo *inc, struct tcpopt *to, + struct tcphdr *th, struct socket **lsop) +{ + + INP_INFO_WLOCK_ASSERT(&V_tcbinfo); + + return (syncache_expand(inc, to, th, lsop, NULL)); +} + +static void +toe_lle_event(void *arg __unused, struct llentry *lle, int evt) +{ + struct toedev *tod; + struct ifnet *ifp; + uint8_t *lladdr; + uint16_t vtag = 0xfff; + struct sockaddr *sa; + + LLE_WLOCK_ASSERT(lle); + + ifp = lle->lle_tbl->llt_ifp; + sa = L3_ADDR(lle); + + KASSERT(sa->sa_family == AF_INET || sa->sa_family == AF_INET6, + ("%s: lle_event but sa !INET && !INET6", __func__)); + + /* + * Not interested if the interface's TOE capability is not enabled. + */ + if ((sa->sa_family == AF_INET && !(ifp->if_capenable & IFCAP_TOE4)) || + (sa->sa_family == AF_INET6 && !(ifp->if_capenable & IFCAP_TOE6))) + return; + + tod = TOEDEV(ifp); + if (tod == NULL) + return; + + if (evt != LLENTRY_RESOLVED) { + + /* + * LLENTRY_TIMEDOUT, LLENTRY_DELETED, LLENTRY_EXPIRED all mean + * this entry is going to be deleted. + */ + + lladdr = NULL; + } else { + + KASSERT(lle->la_flags & LLE_VALID, + ("%s: %p resolved but not valid?", __func__, lle)); + + lladdr = (uint8_t *)&lle->ll_addr; +#ifdef VLAN_TAG + VLAN_TAG(ifp, &vtag); +#endif + } + + tod->tod_l2_update(tod, ifp, sa, lladdr, vtag); +} + +/* + * XXX: implement. + */ +static void +toe_route_redirect_event(void *arg __unused, struct rtentry *rt0, + struct rtentry *rt1, struct sockaddr *sa) +{ + return; +} + +/* + * Returns 0 or EWOULDBLOCK on success (any other value is an error). 0 means + * lladdr and vtag are valid on return, EWOULDBLOCK means the TOE driver's + * tod_l2_update will be called later, when the entry is resolved or times out. + */ +int +toe_l2_resolve(struct toedev *tod, struct ifnet *ifp, struct sockaddr *sa, + uint8_t *lladdr, uint16_t *vtag) +{ + struct llentry *lle; + int rc; + + switch (sa->sa_family) { + case AF_INET: + rc = arpresolve(ifp, NULL, NULL, sa, lladdr, &lle); + break; + case AF_INET6: + rc = nd6_storelladdr(ifp, NULL, sa, lladdr, &lle); + break; + default: + return (EPROTONOSUPPORT); + } + + if (rc == 0) { +#ifdef VLAN_TAG + if (VLAN_TAG(ifp, vtag) != 0) +#endif + *vtag = 0xfff; + } + + return (rc); +} + +static int +toecore_load(void) +{ + + mtx_init(&toedev_lock, "toedev lock", NULL, MTX_DEF); + TAILQ_INIT(&toedev_list); + + listen_start_eh = EVENTHANDLER_REGISTER(tcp_offload_listen_start, + toe_listen_start_event, NULL, EVENTHANDLER_PRI_ANY); + listen_stop_eh = EVENTHANDLER_REGISTER(tcp_offload_listen_stop, + toe_listen_stop_event, NULL, EVENTHANDLER_PRI_ANY); + lle_event_eh = EVENTHANDLER_REGISTER(lle_event, toe_lle_event, NULL, + EVENTHANDLER_PRI_ANY); + route_redirect_eh = EVENTHANDLER_REGISTER(route_redirect_event, + toe_route_redirect_event, NULL, EVENTHANDLER_PRI_ANY); + + return (0); +} + +static int +toecore_unload(void) +{ + + mtx_lock(&toedev_lock); + if (!TAILQ_EMPTY(&toedev_list)) { + mtx_unlock(&toedev_lock); + return (EBUSY); + } + + EVENTHANDLER_DEREGISTER(tcp_offload_listen_start, listen_start_eh); + EVENTHANDLER_DEREGISTER(tcp_offload_listen_stop, listen_stop_eh); + EVENTHANDLER_DEREGISTER(lle_event, lle_event_eh); + EVENTHANDLER_DEREGISTER(route_redirect_event, route_redirect_eh); + + mtx_unlock(&toedev_lock); + mtx_destroy(&toedev_lock); + + return (0); +} + +static int +toecore_mod_handler(module_t mod, int cmd, void *arg) +{ + + if (cmd == MOD_LOAD) + return (toecore_load()); + + if (cmd == MOD_UNLOAD) + return (toecore_unload()); + + return (0); +} + +static moduledata_t mod_data= { + "toecore", + toecore_mod_handler, + 0 +}; + +MODULE_VERSION(toecore, 1); +DECLARE_MODULE(toecore, mod_data, SI_SUB_EXEC, SI_ORDER_ANY); Added: user/np/toe_iwarp/sys/netinet/toecore.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/np/toe_iwarp/sys/netinet/toecore.h Tue Apr 17 17:59:01 2012 (r234389) @@ -0,0 +1,112 @@ +/*- + * Copyright (c) 2012 Chelsio Communications, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + * + */ + +#ifndef _NETINET_TOE_H_ +#define _NETINET_TOE_H_ + +#ifndef _KERNEL +#error "no user-serviceable parts inside" +#endif + +struct tcpopt; +struct tcphdr; +struct in_conninfo; + +struct toedev { + TAILQ_ENTRY(toedev) link; /* glue for toedev_list */ + void *tod_softc; /* TOE driver private data */ + + /* Active open. */ + int (*tod_connect)(struct toedev *, struct socket *, struct rtentry *, + struct sockaddr *); + + /* Passive open. */ + int (*tod_listen_start)(struct toedev *, struct tcpcb *); + int (*tod_listen_stop)(struct toedev *, struct tcpcb *); + + /* Frame received by kernel for an offloaded connection */ + void (*tod_input)(struct toedev *, struct tcpcb *, struct mbuf *, int); + + /* Some data read */ + void (*tod_rcvd)(struct toedev *, struct tcpcb *); + + /* Output data, if any is waiting to be sent out. */ + int (*tod_output)(struct toedev *, struct tcpcb *); + + /* Immediate teardown, send RST to peer */ + int (*tod_send_rst)(struct toedev *, struct tcpcb *); + + /* Orderly disconnect, send FIN to the peer */ + int (*tod_send_fin)(struct toedev *, struct tcpcb *); + + /* Kernel is done with the TCP PCB */ + void (*tod_pcb_detach)(struct toedev *, struct tcpcb *); + + /* Information about an L2 entry is now available. */ + void (*tod_l2_update)(struct toedev *, struct ifnet *, + struct sockaddr *, uint8_t *, uint16_t); + + /* XXX. Route has been redirected. */ + void (*tod_route_redirect)(struct toedev *, struct ifnet *, + struct rtentry *, struct rtentry *); + + /* Syncache interaction. */ + void (*tod_syncache_added)(struct toedev *, void *); + void (*tod_syncache_removed)(struct toedev *, void *); + int (*tod_syncache_respond)(struct toedev *, void *, struct mbuf *); + + /* TCP socket option */ + void (*tod_ctloutput)(struct toedev *, struct tcpcb *, int, int); +}; + +#define TOEDEV(ifp) ((ifp)->if_llsoftc) + +#include +typedef void (*tcp_offload_listen_start_fn)(void *, struct tcpcb *); +typedef void (*tcp_offload_listen_stop_fn)(void *, struct tcpcb *); +EVENTHANDLER_DECLARE(tcp_offload_listen_start, tcp_offload_listen_start_fn); +EVENTHANDLER_DECLARE(tcp_offload_listen_stop, tcp_offload_listen_stop_fn); + +void init_toedev(struct toedev *); +int register_toedev(struct toedev *); +int unregister_toedev(struct toedev *); + +/* + * General interface for looking up L2 information for an IP or IPv6 address. + * If an answer is not available right away then the TOE driver's tod_l2_update + * will be called later. + */ +int toe_l2_resolve(struct toedev *, struct ifnet *, struct sockaddr *, + uint8_t *, uint16_t *); + +void toe_syncache_add(struct in_conninfo *, struct tcpopt *, struct tcphdr *, + struct inpcb *, void *, void *); +int toe_syncache_expand(struct in_conninfo *, struct tcpopt *, struct tcphdr *, + struct socket **); +#endif From owner-svn-src-user@FreeBSD.ORG Tue Apr 17 19:42:55 2012 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 E20C51065676; Tue, 17 Apr 2012 19:42:55 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CDB818FC17; Tue, 17 Apr 2012 19:42: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 q3HJgtjw096203; Tue, 17 Apr 2012 19:42:55 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3HJgteX096200; Tue, 17 Apr 2012 19:42:55 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204171942.q3HJgteX096200@svn.freebsd.org> From: Navdeep Parhar Date: Tue, 17 Apr 2012 19:42: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: r234390 - user/np/toe_iwarp/sys/netinet 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, 17 Apr 2012 19:42:56 -0000 Author: np Date: Tue Apr 17 19:42:55 2012 New Revision: 234390 URL: http://svn.freebsd.org/changeset/base/234390 Log: Remove unused parameter from tod_input. Modified: user/np/toe_iwarp/sys/netinet/toecore.c user/np/toe_iwarp/sys/netinet/toecore.h Modified: user/np/toe_iwarp/sys/netinet/toecore.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/toecore.c Tue Apr 17 17:59:01 2012 (r234389) +++ user/np/toe_iwarp/sys/netinet/toecore.c Tue Apr 17 19:42:55 2012 (r234390) @@ -85,7 +85,7 @@ toedev_listen_stop(struct toedev *tod __ static void toedev_input(struct toedev *tod __unused, struct tcpcb *tp __unused, - struct mbuf *m __unused, int hlen __unused) + struct mbuf *m) { m_freem(m); Modified: user/np/toe_iwarp/sys/netinet/toecore.h ============================================================================== --- user/np/toe_iwarp/sys/netinet/toecore.h Tue Apr 17 17:59:01 2012 (r234389) +++ user/np/toe_iwarp/sys/netinet/toecore.h Tue Apr 17 19:42:55 2012 (r234390) @@ -51,7 +51,7 @@ struct toedev { int (*tod_listen_stop)(struct toedev *, struct tcpcb *); /* Frame received by kernel for an offloaded connection */ - void (*tod_input)(struct toedev *, struct tcpcb *, struct mbuf *, int); + void (*tod_input)(struct toedev *, struct tcpcb *, struct mbuf *); /* Some data read */ void (*tod_rcvd)(struct toedev *, struct tcpcb *); From owner-svn-src-user@FreeBSD.ORG Tue Apr 17 20:43:47 2012 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 B73D21065670; Tue, 17 Apr 2012 20:43:47 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9DC998FC08; Tue, 17 Apr 2012 20:43:47 +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 q3HKhlBX098409; Tue, 17 Apr 2012 20:43:47 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3HKhlXX098401; Tue, 17 Apr 2012 20:43:47 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204172043.q3HKhlXX098401@svn.freebsd.org> From: Navdeep Parhar Date: Tue, 17 Apr 2012 20:43:47 +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: r234397 - user/np/toe_iwarp/sys/netinet 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, 17 Apr 2012 20:43:47 -0000 Author: np Date: Tue Apr 17 20:43:46 2012 New Revision: 234397 URL: http://svn.freebsd.org/changeset/base/234397 Log: Changes to the TCP offload code in the kernel. input: - Deliver stray packets for an offloaded connection to the TOE driver handling the connection. - Inform the TOE driver when received data is consumed from the socket buffer. This allows for forward progress in the rx path. output: - Have one central catch-all in tcp_output instead of various tcp_output_foo routines. This ensures that the kernel never outputs anything for an offloaded connection and always kicks the TOE driver's tx routine instead. timers: - Do not arm any TCP timer for an offloaded connection. syncache: - Update the TOE driver when the entry it sought to add to the syncache is added or removed. The kernel can call on a TOE driver to respond to a SYN anytime for an entry in the syncache so the TOE driver is expected to maintain state for entries that were added but have not been deleted yet. - Do not skip any syncache checks simply because the entry is being added by a hardware TOE. ctloutput - Inform the TOE driver when setsockopt(2) changes any tcp(4) option of an offloaded socket. Modified: user/np/toe_iwarp/sys/netinet/tcp_input.c user/np/toe_iwarp/sys/netinet/tcp_offload.c user/np/toe_iwarp/sys/netinet/tcp_offload.h user/np/toe_iwarp/sys/netinet/tcp_output.c user/np/toe_iwarp/sys/netinet/tcp_subr.c user/np/toe_iwarp/sys/netinet/tcp_syncache.c user/np/toe_iwarp/sys/netinet/tcp_syncache.h user/np/toe_iwarp/sys/netinet/tcp_timer.c user/np/toe_iwarp/sys/netinet/tcp_usrreq.c user/np/toe_iwarp/sys/netinet/tcp_var.h Modified: user/np/toe_iwarp/sys/netinet/tcp_input.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/tcp_input.c Tue Apr 17 20:35:54 2012 (r234396) +++ user/np/toe_iwarp/sys/netinet/tcp_input.c Tue Apr 17 20:43:46 2012 (r234397) @@ -105,6 +105,9 @@ __FBSDID("$FreeBSD$"); #ifdef TCPDEBUG #include #endif /* TCPDEBUG */ +#ifdef TCP_OFFLOAD +#include +#endif #ifdef IPSEC #include @@ -938,6 +941,14 @@ relocked: goto dropwithreset; } +#ifdef TCP_OFFLOAD + if (tp->t_flags & TF_TOE) { + tcp_offload_input(tp, m); + m = NULL; /* consumed by the TOE driver */ + goto dropunlock; + } +#endif + /* * We've identified a valid inpcb, but it could be that we need an * inpcbinfo write lock but don't hold it. In this case, attempt to @@ -1299,7 +1310,7 @@ relocked: (void *)tcp_saveipgen, &tcp_savetcp, 0); #endif tcp_dooptions(&to, optp, optlen, TO_SYN); - syncache_add(&inc, &to, th, inp, &so, m); + syncache_add(&inc, &to, th, inp, &so, m, NULL, NULL); /* * Entry added to syncache and mbuf consumed. * Everything already unlocked by syncache_add(). Modified: user/np/toe_iwarp/sys/netinet/tcp_offload.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/tcp_offload.c Tue Apr 17 20:35:54 2012 (r234396) +++ user/np/toe_iwarp/sys/netinet/tcp_offload.c Tue Apr 17 20:43:46 2012 (r234397) @@ -1,145 +1,177 @@ /*- - * Copyright (c) 2007, Chelsio Inc. + * Copyright (c) 2012 Chelsio Communications, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: + * 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. * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Neither the name of the Chelsio Corporation nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * 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 COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. + * 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 "opt_inet.h" + #include #include #include -#include -#include -#include #include #include -#include - +#include #include -#include -#include #include -#include - -#include -#include -#include #include #include #include -#include +#define TCPOUTFLAGS +#include +#include -uint32_t toedev_registration_count; +int registered_toedevs; +/* + * Provide an opportunity for a TOE driver to offload. + */ int tcp_offload_connect(struct socket *so, struct sockaddr *nam) { struct ifnet *ifp; - struct toedev *tdev; + struct toedev *tod; struct rtentry *rt; - int error; + int error = EOPNOTSUPP; + + INP_WLOCK_ASSERT(sotoinpcb(so)); + KASSERT(nam->sa_family == AF_INET || nam->sa_family == AF_INET6, + ("%s: called with sa_family %d", __func__, nam->sa_family)); - if (toedev_registration_count == 0) - return (EINVAL); - - /* - * Look up the route used for the connection to - * determine if it uses an interface capable of - * offloading the connection. - */ - rt = rtalloc1(nam, 0 /*report*/, 0 /*ignflags*/); - if (rt) + if (registered_toedevs == 0) + return (error); + + rt = rtalloc1(nam, 0, 0); + if (rt) RT_UNLOCK(rt); - else + else return (EHOSTUNREACH); ifp = rt->rt_ifp; - if ((ifp->if_capenable & IFCAP_TOE) == 0) { - error = EINVAL; - goto fail; - } - - tdev = TOEDEV(ifp); - if (tdev == NULL) { - error = EPERM; - goto fail; - } - - if (tdev->tod_can_offload(tdev, so) == 0) { - error = EPERM; - goto fail; - } - - return (tdev->tod_connect(tdev, so, rt, nam)); -fail: + +#ifdef INET + if (nam->sa_family == AF_INET && !(ifp->if_capenable & IFCAP_TOE4)) + goto done; +#endif +#ifdef INET6 + if (nam->sa_family == AF_INET6 && !(ifp->if_capenable & IFCAP_TOE6)) + goto done; +#endif + + tod = TOEDEV(ifp); + if (tod != NULL) + error = tod->tod_connect(tod, so, rt, nam); +done: RTFREE(rt); return (error); } +void +tcp_offload_listen_start(struct tcpcb *tp) +{ -/* - * This file contains code as a short-term staging area before it is moved in - * to sys/netinet/tcp_offload.c - */ + INP_WLOCK_ASSERT(tp->t_inpcb); + + EVENTHANDLER_INVOKE(tcp_offload_listen_start, tp); +} void -tcp_offload_twstart(struct tcpcb *tp) +tcp_offload_listen_stop(struct tcpcb *tp) { - INP_INFO_WLOCK(&V_tcbinfo); - INP_WLOCK(tp->t_inpcb); - tcp_twstart(tp); - INP_INFO_WUNLOCK(&V_tcbinfo); + INP_WLOCK_ASSERT(tp->t_inpcb); + + EVENTHANDLER_INVOKE(tcp_offload_listen_stop, tp); } -struct tcpcb * -tcp_offload_close(struct tcpcb *tp) +void +tcp_offload_input(struct tcpcb *tp, struct mbuf *m) { + struct toedev *tod = tp->tod; - INP_INFO_WLOCK(&V_tcbinfo); - INP_WLOCK(tp->t_inpcb); - tp = tcp_close(tp); - INP_INFO_WUNLOCK(&V_tcbinfo); - if (tp) - INP_WUNLOCK(tp->t_inpcb); + KASSERT(tod != NULL, ("%s: tp->tod is NULL", __func__)); + INP_WLOCK_ASSERT(tp->t_inpcb); - return (tp); + tod->tod_input(tod, tp, m); } -struct tcpcb * -tcp_offload_drop(struct tcpcb *tp, int error) +int +tcp_offload_output(struct tcpcb *tp) { + struct toedev *tod = tp->tod; + int error, flags; + + KASSERT(tod != NULL, ("%s: tp->tod is NULL", __func__)); + INP_WLOCK_ASSERT(tp->t_inpcb); - INP_INFO_WLOCK(&V_tcbinfo); - INP_WLOCK(tp->t_inpcb); - tp = tcp_drop(tp, error); - INP_INFO_WUNLOCK(&V_tcbinfo); - if (tp) - INP_WUNLOCK(tp->t_inpcb); + flags = tcp_outflags[tp->t_state]; - return (tp); + if (flags & TH_RST) { + /* XXX: avoid repeated calls like we do for FIN */ + error = tod->tod_send_rst(tod, tp); + } else if ((flags & TH_FIN || tp->t_flags & TF_NEEDFIN) && + (tp->t_flags & TF_SENTFIN) == 0) { + error = tod->tod_send_fin(tod, tp); + if (error == 0) + tp->t_flags |= TF_SENTFIN; + } else + error = tod->tod_output(tod, tp); + + return (error); +} + +void +tcp_offload_rcvd(struct tcpcb *tp) +{ + struct toedev *tod = tp->tod; + + KASSERT(tod != NULL, ("%s: tp->tod is NULL", __func__)); + INP_WLOCK_ASSERT(tp->t_inpcb); + + tod->tod_rcvd(tod, tp); } +void +tcp_offload_ctloutput(struct tcpcb *tp, int sopt_dir, int sopt_name) +{ + struct toedev *tod = tp->tod; + + KASSERT(tod != NULL, ("%s: tp->tod is NULL", __func__)); + INP_WLOCK_ASSERT(tp->t_inpcb); + + tod->tod_ctloutput(tod, tp, sopt_dir, sopt_name); +} + +void +tcp_offload_detach(struct tcpcb *tp) +{ + struct toedev *tod = tp->tod; + + KASSERT(tod != NULL, ("%s: tp->tod is NULL", __func__)); + INP_WLOCK_ASSERT(tp->t_inpcb); + + tod->tod_pcb_detach(tod, tp); +} Modified: user/np/toe_iwarp/sys/netinet/tcp_offload.h ============================================================================== --- user/np/toe_iwarp/sys/netinet/tcp_offload.h Tue Apr 17 20:35:54 2012 (r234396) +++ user/np/toe_iwarp/sys/netinet/tcp_offload.h Tue Apr 17 20:43:46 2012 (r234397) @@ -1,354 +1,48 @@ /*- - * Copyright (c) 2007, Chelsio Inc. + * Copyright (c) 2012 Chelsio Communications, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: + * 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. * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Neither the name of the Chelsio Corporation nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * 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 COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. * * $FreeBSD$ + * */ #ifndef _NETINET_TCP_OFFLOAD_H_ -#define _NETINET_TCP_OFFLOAD_H_ +#define _NETINET_TCP_OFFLOAD_H_ #ifndef _KERNEL #error "no user-serviceable parts inside" #endif -/* - * A driver publishes that it provides offload services - * by setting IFCAP_TOE in the ifnet. The offload connect - * will bypass any further work if the interface that a - * connection would use does not support TCP offload. - * - * The TOE API assumes that the tcp offload engine can offload the - * the entire connection from set up to teardown, with some provision - * being made to allowing the software stack to handle time wait. If - * the device does not meet these criteria, it is the driver's responsibility - * to overload the functions that it needs to in tcp_usrreqs and make - * its own calls to tcp_output if it needs to do so. - * - * There is currently no provision for the device advertising the congestion - * control algorithms it supports as there is currently no API for querying - * an operating system for the protocols that it has loaded. This is a desirable - * future extension. - * - * - * - * It is assumed that individuals deploying TOE will want connections - * to be offloaded without software changes so all connections on an - * interface providing TOE are offloaded unless the SO_NO_OFFLOAD - * flag is set on the socket. - * - * - * The toe_usrreqs structure constitutes the TOE driver's - * interface to the TCP stack for functionality that doesn't - * interact directly with userspace. If one wants to provide - * (optional) functionality to do zero-copy to/from - * userspace one still needs to override soreceive/sosend - * with functions that fault in and pin the user buffers. - * - * + tu_send - * - tells the driver that new data may have been added to the - * socket's send buffer - the driver should not fail if the - * buffer is in fact unchanged - * - the driver is responsible for providing credits (bytes in the send window) - * back to the socket by calling sbdrop() as segments are acknowledged. - * - The driver expects the inpcb lock to be held - the driver is expected - * not to drop the lock. Hence the driver is not allowed to acquire the - * pcbinfo lock during this call. - * - * + tu_rcvd - * - returns credits to the driver and triggers window updates - * to the peer (a credit as used here is a byte in the peer's receive window) - * - the driver is expected to determine how many bytes have been - * consumed and credit that back to the card so that it can grow - * the window again by maintaining its own state between invocations. - * - In principle this could be used to shrink the window as well as - * grow the window, although it is not used for that now. - * - this function needs to correctly handle being called any number of - * times without any bytes being consumed from the receive buffer. - * - The driver expects the inpcb lock to be held - the driver is expected - * not to drop the lock. Hence the driver is not allowed to acquire the - * pcbinfo lock during this call. - * - * + tu_disconnect - * - tells the driver to send FIN to peer - * - driver is expected to send the remaining data and then do a clean half close - * - disconnect implies at least half-close so only send, reset, and detach - * are legal - * - the driver is expected to handle transition through the shutdown - * state machine and allow the stack to support SO_LINGER. - * - The driver expects the inpcb lock to be held - the driver is expected - * not to drop the lock. Hence the driver is not allowed to acquire the - * pcbinfo lock during this call. - * - * + tu_reset - * - closes the connection and sends a RST to peer - * - driver is expectd to trigger an RST and detach the toepcb - * - no further calls are legal after reset - * - The driver expects the inpcb lock to be held - the driver is expected - * not to drop the lock. Hence the driver is not allowed to acquire the - * pcbinfo lock during this call. - * - * The following fields in the tcpcb are expected to be referenced by the driver: - * + iss - * + rcv_nxt - * + rcv_wnd - * + snd_isn - * + snd_max - * + snd_nxt - * + snd_una - * + t_flags - * + t_inpcb - * + t_maxseg - * + t_toe - * - * The following fields in the inpcb are expected to be referenced by the driver: - * + inp_lport - * + inp_fport - * + inp_laddr - * + inp_fport - * + inp_socket - * + inp_ip_tos - * - * The following fields in the socket are expected to be referenced by the - * driver: - * + so_comp - * + so_error - * + so_linger - * + so_options - * + so_rcv - * + so_snd - * + so_state - * + so_timeo - * - * These functions all return 0 on success and can return the following errors - * as appropriate: - * + EPERM: - * + ENOBUFS: memory allocation failed - * + EMSGSIZE: MTU changed during the call - * + EHOSTDOWN: - * + EHOSTUNREACH: - * + ENETDOWN: - * * ENETUNREACH: the peer is no longer reachable - * - * + tu_detach - * - tells driver that the socket is going away so disconnect - * the toepcb and free appropriate resources - * - allows the driver to cleanly handle the case of connection state - * outliving the socket - * - no further calls are legal after detach - * - the driver is expected to provide its own synchronization between - * detach and receiving new data. - * - * + tu_syncache_event - * - even if it is not actually needed, the driver is expected to - * call syncache_add for the initial SYN and then syncache_expand - * for the SYN,ACK - * - tells driver that a connection either has not been added or has - * been dropped from the syncache - * - the driver is expected to maintain state that lives outside the - * software stack so the syncache needs to be able to notify the - * toe driver that the software stack is not going to create a connection - * for a received SYN - * - The driver is responsible for any synchronization required between - * the syncache dropping an entry and the driver processing the SYN,ACK. - * - */ -struct toe_usrreqs { - int (*tu_send)(struct tcpcb *tp); - int (*tu_rcvd)(struct tcpcb *tp); - int (*tu_disconnect)(struct tcpcb *tp); - int (*tu_reset)(struct tcpcb *tp); - void (*tu_detach)(struct tcpcb *tp); - void (*tu_syncache_event)(int event, void *toep); -}; - -/* - * Proxy for struct tcpopt between TOE drivers and TCP functions. - */ -struct toeopt { - u_int64_t to_flags; /* see tcpopt in tcp_var.h */ - u_int16_t to_mss; /* maximum segment size */ - u_int8_t to_wscale; /* window scaling */ - - u_int8_t _pad1; /* explicit pad for 64bit alignment */ - u_int32_t _pad2; /* explicit pad for 64bit alignment */ - u_int64_t _pad3[4]; /* TBD */ -}; - -#define TOE_SC_ENTRY_PRESENT 1 /* 4-tuple already present */ -#define TOE_SC_DROP 2 /* connection was timed out */ - -/* - * Because listen is a one-to-many relationship (a socket can be listening - * on all interfaces on a machine some of which may be using different TCP - * offload devices), listen uses a publish/subscribe mechanism. The TCP - * offload driver registers a listen notification function with the stack. - * When a listen socket is created all TCP offload devices are notified - * so that they can do the appropriate set up to offload connections on the - * port to which the socket is bound. When the listen socket is closed, - * the offload devices are notified so that they will stop listening on that - * port and free any associated resources as well as sending RSTs on any - * connections in the SYN_RCVD state. - * - */ - -typedef void (*tcp_offload_listen_start_fn)(void *, struct tcpcb *); -typedef void (*tcp_offload_listen_stop_fn)(void *, struct tcpcb *); - -EVENTHANDLER_DECLARE(tcp_offload_listen_start, tcp_offload_listen_start_fn); -EVENTHANDLER_DECLARE(tcp_offload_listen_stop, tcp_offload_listen_stop_fn); - -/* - * Check if the socket can be offloaded by the following steps: - * - determine the egress interface - * - check the interface for TOE capability and TOE is enabled - * - check if the device has resources to offload the connection - */ -int tcp_offload_connect(struct socket *so, struct sockaddr *nam); - -/* - * The tcp_output_* routines are wrappers around the toe_usrreqs calls - * which trigger packet transmission. In the non-offloaded case they - * translate to tcp_output. The tcp_offload_* routines notify TOE - * of specific events. I the non-offloaded case they are no-ops. - * - * Listen is a special case because it is a 1 to many relationship - * and there can be more than one offload driver in the system. - */ - -/* - * Connection is offloaded - */ -#define tp_offload(tp) ((tp)->t_flags & TF_TOE) - -/* - * hackish way of allowing this file to also be included by TOE - * which needs to be kept ignorant of socket implementation details - */ -#ifdef _SYS_SOCKETVAR_H_ -/* - * The socket has not been marked as "do not offload" - */ -#define SO_OFFLOADABLE(so) ((so->so_options & SO_NO_OFFLOAD) == 0) - -static __inline int -tcp_output_connect(struct socket *so, struct sockaddr *nam) -{ - struct tcpcb *tp = sototcpcb(so); - int error; - - /* - * If offload has been disabled for this socket or the - * connection cannot be offloaded just call tcp_output - * to start the TCP state machine. - */ -#ifndef TCP_OFFLOAD_DISABLE - if (!SO_OFFLOADABLE(so) || (error = tcp_offload_connect(so, nam)) != 0) -#endif - error = tcp_output(tp); - return (error); -} - -static __inline int -tcp_output_send(struct tcpcb *tp) -{ - -#ifndef TCP_OFFLOAD_DISABLE - if (tp_offload(tp)) - return (tp->t_tu->tu_send(tp)); -#endif - return (tcp_output(tp)); -} - -static __inline int -tcp_output_rcvd(struct tcpcb *tp) -{ - -#ifndef TCP_OFFLOAD_DISABLE - if (tp_offload(tp)) - return (tp->t_tu->tu_rcvd(tp)); -#endif - return (tcp_output(tp)); -} +extern int registered_toedevs; -static __inline int -tcp_output_disconnect(struct tcpcb *tp) -{ +int tcp_offload_connect(struct socket *, struct sockaddr *); +void tcp_offload_listen_start(struct tcpcb *); +void tcp_offload_listen_stop(struct tcpcb *); +void tcp_offload_input(struct tcpcb *, struct mbuf *); +int tcp_offload_output(struct tcpcb *); +void tcp_offload_rcvd(struct tcpcb *); +void tcp_offload_ctloutput(struct tcpcb *, int, int); +void tcp_offload_detach(struct tcpcb *); -#ifndef TCP_OFFLOAD_DISABLE - if (tp_offload(tp)) - return (tp->t_tu->tu_disconnect(tp)); #endif - return (tcp_output(tp)); -} - -static __inline int -tcp_output_reset(struct tcpcb *tp) -{ - -#ifndef TCP_OFFLOAD_DISABLE - if (tp_offload(tp)) - return (tp->t_tu->tu_reset(tp)); -#endif - return (tcp_output(tp)); -} - -static __inline void -tcp_offload_detach(struct tcpcb *tp) -{ - -#ifndef TCP_OFFLOAD_DISABLE - if (tp_offload(tp)) - tp->t_tu->tu_detach(tp); -#endif -} - -static __inline void -tcp_offload_listen_open(struct tcpcb *tp) -{ - -#ifndef TCP_OFFLOAD_DISABLE - if (SO_OFFLOADABLE(tp->t_inpcb->inp_socket)) - EVENTHANDLER_INVOKE(tcp_offload_listen_start, tp); -#endif -} - -static __inline void -tcp_offload_listen_close(struct tcpcb *tp) -{ - -#ifndef TCP_OFFLOAD_DISABLE - EVENTHANDLER_INVOKE(tcp_offload_listen_stop, tp); -#endif -} -#undef SO_OFFLOADABLE -#endif /* _SYS_SOCKETVAR_H_ */ -#undef tp_offload - -void tcp_offload_twstart(struct tcpcb *tp); -struct tcpcb *tcp_offload_close(struct tcpcb *tp); -struct tcpcb *tcp_offload_drop(struct tcpcb *tp, int error); - -#endif /* _NETINET_TCP_OFFLOAD_H_ */ Modified: user/np/toe_iwarp/sys/netinet/tcp_output.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/tcp_output.c Tue Apr 17 20:35:54 2012 (r234396) +++ user/np/toe_iwarp/sys/netinet/tcp_output.c Tue Apr 17 20:43:46 2012 (r234397) @@ -75,6 +75,9 @@ __FBSDID("$FreeBSD$"); #ifdef TCPDEBUG #include #endif +#ifdef TCP_OFFLOAD +#include +#endif #ifdef IPSEC #include @@ -191,6 +194,11 @@ tcp_output(struct tcpcb *tp) INP_WLOCK_ASSERT(tp->t_inpcb); +#ifdef TCP_OFFLOAD + if (tp->t_flags & TF_TOE) + tcp_offload_output(tp); +#endif + /* * Determine length of data that should be transmitted, * and flags that will be used. Modified: user/np/toe_iwarp/sys/netinet/tcp_subr.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/tcp_subr.c Tue Apr 17 20:35:54 2012 (r234396) +++ user/np/toe_iwarp/sys/netinet/tcp_subr.c Tue Apr 17 20:43:46 2012 (r234397) @@ -85,7 +85,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #ifdef INET6 #include #endif @@ -96,6 +95,9 @@ __FBSDID("$FreeBSD$"); #ifdef INET6 #include #endif +#ifdef TCP_OFFLOAD +#include +#endif #ifdef IPSEC #include @@ -824,7 +826,7 @@ tcp_drop(struct tcpcb *tp, int errno) if (TCPS_HAVERCVDSYN(tp->t_state)) { tp->t_state = TCPS_CLOSED; - (void) tcp_output_reset(tp); + (void) tcp_output(tp); TCPSTAT_INC(tcps_drops); } else TCPSTAT_INC(tcps_conndrops); @@ -924,8 +926,12 @@ tcp_discardcb(struct tcpcb *tp) /* free the reassembly queue, if any */ tcp_reass_flush(tp); + +#ifdef TCP_OFFLOAD /* Disconnect offload device, if any. */ - tcp_offload_detach(tp); + if (tp->t_flags & TF_TOE) + tcp_offload_detach(tp); +#endif tcp_free_sackholes(tp); @@ -954,9 +960,10 @@ tcp_close(struct tcpcb *tp) INP_INFO_WLOCK_ASSERT(&V_tcbinfo); INP_WLOCK_ASSERT(inp); - /* Notify any offload devices of listener close */ +#ifdef TCP_OFFLOAD if (tp->t_state == TCPS_LISTEN) - tcp_offload_listen_close(tp); + tcp_offload_listen_stop(tp); +#endif in_pcbdrop(inp); TCPSTAT_INC(tcps_closed); KASSERT(inp->inp_socket != NULL, ("tcp_close: inp_socket NULL")); @@ -1687,7 +1694,7 @@ tcp_mtudisc(struct inpcb *inp, int errno tp->snd_recover = tp->snd_max; if (tp->t_flags & TF_SACK_PERMIT) EXIT_FASTRECOVERY(tp->t_flags); - tcp_output_send(tp); + tcp_output(tp); return (inp); } Modified: user/np/toe_iwarp/sys/netinet/tcp_syncache.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/tcp_syncache.c Tue Apr 17 20:35:54 2012 (r234396) +++ user/np/toe_iwarp/sys/netinet/tcp_syncache.c Tue Apr 17 20:43:46 2012 (r234397) @@ -81,10 +81,12 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #ifdef INET6 #include #endif +#ifdef TCP_OFFLOAD +#include +#endif #ifdef IPSEC #include @@ -110,10 +112,8 @@ SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, &VNET_NAME(tcp_syncookiesonly), 0, "Use only TCP SYN cookies"); -#ifdef TCP_OFFLOAD_DISABLE -#define TOEPCB_ISSET(sc) (0) -#else -#define TOEPCB_ISSET(sc) ((sc)->sc_toepcb != NULL) +#ifdef TCP_OFFLOAD +#define ADDED_BY_TOE(sc) ((sc)->sc_tod != NULL) #endif static void syncache_drop(struct syncache *, struct syncache_head *); @@ -332,6 +332,14 @@ syncache_insert(struct syncache *sc, str TAILQ_INSERT_HEAD(&sch->sch_bucket, sc, sc_hash); sch->sch_length++; +#ifdef TCP_OFFLOAD + if (ADDED_BY_TOE(sc)) { + struct toedev *tod = sc->sc_tod; + + tod->tod_syncache_added(tod, sc->sc_todctx); + } +#endif + /* Reinitialize the bucket row's timer. */ if (sch->sch_length == 1) sch->sch_nextc = ticks + INT_MAX; @@ -356,10 +364,14 @@ syncache_drop(struct syncache *sc, struc TAILQ_REMOVE(&sch->sch_bucket, sc, sc_hash); sch->sch_length--; -#ifndef TCP_OFFLOAD_DISABLE - if (sc->sc_tu) - sc->sc_tu->tu_syncache_event(TOE_SC_DROP, sc->sc_toepcb); -#endif +#ifdef TCP_OFFLOAD + if (ADDED_BY_TOE(sc)) { + struct toedev *tod = sc->sc_tod; + + tod->tod_syncache_removed(tod, sc->sc_todctx); + } +#endif + syncache_free(sc); V_tcp_syncache.cache_count--; } @@ -926,6 +938,13 @@ syncache_expand(struct in_conninfo *inc, /* Pull out the entry to unlock the bucket row. */ TAILQ_REMOVE(&sch->sch_bucket, sc, sc_hash); sch->sch_length--; +#ifdef TCP_OFFLOAD + if (ADDED_BY_TOE(sc)) { + struct toedev *tod = sc->sc_tod; + + tod->tod_syncache_removed(tod, sc->sc_todctx); + } +#endif V_tcp_syncache.cache_count--; SCH_UNLOCK(sch); } @@ -934,7 +953,7 @@ syncache_expand(struct in_conninfo *inc, * Segment validation: * ACK must match our initial sequence number + 1 (the SYN|ACK). */ - if (th->th_ack != sc->sc_iss + 1 && !TOEPCB_ISSET(sc)) { + if (th->th_ack != sc->sc_iss + 1) { if ((s = tcp_log_addrs(inc, th, NULL, NULL))) log(LOG_DEBUG, "%s; %s: ACK %u != ISS+1 %u, segment " "rejected\n", s, __func__, th->th_ack, sc->sc_iss); @@ -945,9 +964,8 @@ syncache_expand(struct in_conninfo *inc, * The SEQ must fall in the window starting at the received * initial receive sequence number + 1 (the SYN). */ - if ((SEQ_LEQ(th->th_seq, sc->sc_irs) || - SEQ_GT(th->th_seq, sc->sc_irs + sc->sc_wnd)) && - !TOEPCB_ISSET(sc)) { + if (SEQ_LEQ(th->th_seq, sc->sc_irs) || + SEQ_GT(th->th_seq, sc->sc_irs + sc->sc_wnd)) { if ((s = tcp_log_addrs(inc, th, NULL, NULL))) log(LOG_DEBUG, "%s; %s: SEQ %u != IRS+1 %u, segment " "rejected\n", s, __func__, th->th_seq, sc->sc_irs); @@ -964,8 +982,7 @@ syncache_expand(struct in_conninfo *inc, * If timestamps were negotiated the reflected timestamp * must be equal to what we actually sent in the SYN|ACK. */ - if ((to->to_flags & TOF_TS) && to->to_tsecr != sc->sc_ts && - !TOEPCB_ISSET(sc)) { + if ((to->to_flags & TOF_TS) && to->to_tsecr != sc->sc_ts) { if ((s = tcp_log_addrs(inc, th, NULL, NULL))) log(LOG_DEBUG, "%s; %s: TSECR %u != TS %u, " "segment rejected\n", @@ -993,25 +1010,6 @@ failed: return (0); } -int -tcp_offload_syncache_expand(struct in_conninfo *inc, struct toeopt *toeo, - struct tcphdr *th, struct socket **lsop, struct mbuf *m) -{ - struct tcpopt to; - int rc; - - bzero(&to, sizeof(struct tcpopt)); - to.to_mss = toeo->to_mss; - to.to_wscale = toeo->to_wscale; - to.to_flags = toeo->to_flags; - - INP_INFO_WLOCK(&V_tcbinfo); - rc = syncache_expand(inc, &to, th, lsop, m); - INP_INFO_WUNLOCK(&V_tcbinfo); - - return (rc); -} - /* * Given a LISTEN socket and an inbound SYN request, add * this to the syn cache, and send back a segment: @@ -1025,10 +1023,10 @@ tcp_offload_syncache_expand(struct in_co * consume all available buffer space if it were ACKed. By not ACKing * the data, we avoid this DoS scenario. */ -static void -_syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, - struct inpcb *inp, struct socket **lsop, struct mbuf *m, - struct toe_usrreqs *tu, void *toepcb) +void +syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, + struct inpcb *inp, struct socket **lsop, struct mbuf *m, void *tod, + void *todctx) { struct tcpcb *tp; struct socket *so; @@ -1114,11 +1112,6 @@ _syncache_add(struct in_conninfo *inc, s sc = syncache_lookup(inc, &sch); /* returns locked entry */ SCH_LOCK_ASSERT(sch); if (sc != NULL) { -#ifndef TCP_OFFLOAD_DISABLE - if (sc->sc_tu) - sc->sc_tu->tu_syncache_event(TOE_SC_ENTRY_PRESENT, - sc->sc_toepcb); -#endif TCPSTAT_INC(tcps_sc_dupsyn); if (ipopts) { /* @@ -1151,7 +1144,7 @@ _syncache_add(struct in_conninfo *inc, s s, __func__); free(s, M_TCPLOG); } - if (!TOEPCB_ISSET(sc) && syncache_respond(sc) == 0) { + if (syncache_respond(sc) == 0) { sc->sc_rxmits = 0; syncache_timeout(sc, sch, 1); TCPSTAT_INC(tcps_sndacks); @@ -1202,9 +1195,9 @@ _syncache_add(struct in_conninfo *inc, s sc->sc_ip_tos = ip_tos; sc->sc_ip_ttl = ip_ttl; } -#ifndef TCP_OFFLOAD_DISABLE - sc->sc_tu = tu; - sc->sc_toepcb = toepcb; +#ifdef TCP_OFFLOAD + sc->sc_tod = tod; + sc->sc_todctx = todctx; #endif sc->sc_irs = th->th_seq; sc->sc_iss = arc4random(); @@ -1299,7 +1292,7 @@ _syncache_add(struct in_conninfo *inc, s /* * Do a standard 3-way handshake. */ - if (TOEPCB_ISSET(sc) || syncache_respond(sc) == 0) { + if (syncache_respond(sc) == 0) { if (V_tcp_syncookies && V_tcp_syncookiesonly && sc != &scs) syncache_free(sc); else if (sc != &scs) @@ -1491,37 +1484,21 @@ syncache_respond(struct syncache *sc) htons(tlen + optlen - hlen + IPPROTO_TCP)); m->m_pkthdr.csum_flags = CSUM_TCP; m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum); +#ifdef TCP_OFFLOAD + if (ADDED_BY_TOE(sc)) { + struct toedev *tod = sc->sc_tod; + + error = tod->tod_syncache_respond(tod, sc->sc_todctx, m); + + return (error); + } +#endif error = ip_output(m, sc->sc_ipopts, NULL, 0, NULL, NULL); } #endif return (error); } -void -syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, - struct inpcb *inp, struct socket **lsop, struct mbuf *m) -{ - _syncache_add(inc, to, th, inp, lsop, m, NULL, NULL); -} - *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Tue Apr 17 20:47:11 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1033106566C; Tue, 17 Apr 2012 20:47:11 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8DB538FC15; Tue, 17 Apr 2012 20:47: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 q3HKlBMV098557; Tue, 17 Apr 2012 20:47:11 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3HKlBVU098555; Tue, 17 Apr 2012 20:47:11 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204172047.q3HKlBVU098555@svn.freebsd.org> From: Navdeep Parhar Date: Tue, 17 Apr 2012 20:47: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: r234398 - user/np/toe_iwarp/sbin/ifconfig 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, 17 Apr 2012 20:47:11 -0000 Author: np Date: Tue Apr 17 20:47:11 2012 New Revision: 234398 URL: http://svn.freebsd.org/changeset/base/234398 Log: Allow ifconfig to display, set, and clear IFCAP_TOE. Modified: user/np/toe_iwarp/sbin/ifconfig/ifconfig.c Modified: user/np/toe_iwarp/sbin/ifconfig/ifconfig.c ============================================================================== --- user/np/toe_iwarp/sbin/ifconfig/ifconfig.c Tue Apr 17 20:43:46 2012 (r234397) +++ user/np/toe_iwarp/sbin/ifconfig/ifconfig.c Tue Apr 17 20:47:11 2012 (r234398) @@ -916,7 +916,7 @@ unsetifdescr(const char *val, int value, #define IFCAPBITS \ "\020\1RXCSUM\2TXCSUM\3NETCONS\4VLAN_MTU\5VLAN_HWTAGGING\6JUMBO_MTU\7POLLING" \ "\10VLAN_HWCSUM\11TSO4\12TSO6\13LRO\14WOL_UCAST\15WOL_MCAST\16WOL_MAGIC" \ -"\21VLAN_HWFILTER\23VLAN_HWTSO\24LINKSTATE\25NETMAP" +"\17TOE4\20TOE6\21VLAN_HWFILTER\23VLAN_HWTSO\24LINKSTATE\25NETMAP\26VLAN_TOE" /* * Print the status of the interface. If an address family was @@ -1203,6 +1203,8 @@ static struct cmd basic_cmds[] = { DEF_CMD("-polling", -IFCAP_POLLING, setifcap), DEF_CMD("tso", IFCAP_TSO, setifcap), DEF_CMD("-tso", -IFCAP_TSO, setifcap), + DEF_CMD("toe", IFCAP_TOE, setifcap), + DEF_CMD("-toe", -IFCAP_TOE, setifcap), DEF_CMD("lro", IFCAP_LRO, setifcap), DEF_CMD("-lro", -IFCAP_LRO, setifcap), DEF_CMD("wol", IFCAP_WOL, setifcap), From owner-svn-src-user@FreeBSD.ORG Tue Apr 17 20:54:33 2012 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 47BB51065673; Tue, 17 Apr 2012 20:54:33 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 33A618FC08; Tue, 17 Apr 2012 20:54:33 +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 q3HKsXsC098793; Tue, 17 Apr 2012 20:54:33 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3HKsXm0098791; Tue, 17 Apr 2012 20:54:33 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204172054.q3HKsXm0098791@svn.freebsd.org> From: Navdeep Parhar Date: Tue, 17 Apr 2012 20:54:32 +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: r234399 - user/np/toe_iwarp/usr.bin/netstat 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, 17 Apr 2012 20:54:33 -0000 Author: np Date: Tue Apr 17 20:54:32 2012 New Revision: 234399 URL: http://svn.freebsd.org/changeset/base/234399 Log: Have netstat display "toe" instead of "tcp" for offloaded connections. Modified: user/np/toe_iwarp/usr.bin/netstat/inet.c Modified: user/np/toe_iwarp/usr.bin/netstat/inet.c ============================================================================== --- user/np/toe_iwarp/usr.bin/netstat/inet.c Tue Apr 17 20:47:11 2012 (r234398) +++ user/np/toe_iwarp/usr.bin/netstat/inet.c Tue Apr 17 20:54:32 2012 (r234399) @@ -461,7 +461,10 @@ protopr(u_long off, const char *name, in #endif vchar = ((inp->inp_vflag & INP_IPV4) != 0) ? "4 " : " "; - printf("%-3.3s%-2.2s ", name, vchar); + if (istcp && (tp->t_flags & TF_TOE) != 0) + printf("%-3.3s%-2.2s ", "toe", vchar); + else + printf("%-3.3s%-2.2s ", name, vchar); if (Lflag) { char buf1[15]; From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 12:51:49 2012 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 5758D106564A; Wed, 18 Apr 2012 12:51:49 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4327E8FC1F; Wed, 18 Apr 2012 12:51:49 +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 q3ICpnH4032272; Wed, 18 Apr 2012 12:51:49 GMT (envelope-from des@svn.freebsd.org) Received: (from des@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3ICpn8g032270; Wed, 18 Apr 2012 12:51:49 GMT (envelope-from des@svn.freebsd.org) Message-Id: <201204181251.q3ICpn8g032270@svn.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 18 Apr 2012 12:51: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: r234419 - user/des/zfs-backup 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: Wed, 18 Apr 2012 12:51:49 -0000 Author: des Date: Wed Apr 18 12:51:48 2012 New Revision: 234419 URL: http://svn.freebsd.org/changeset/base/234419 Log: Support remote backups - both push and pull. Modified: user/des/zfs-backup/zfs-backup.sh Modified: user/des/zfs-backup/zfs-backup.sh ============================================================================== --- user/des/zfs-backup/zfs-backup.sh Wed Apr 18 12:50:13 2012 (r234418) +++ user/des/zfs-backup/zfs-backup.sh Wed Apr 18 12:51:48 2012 (r234419) @@ -48,20 +48,42 @@ fi if [ $# -ne 2 ] ; then error "usage: $0 src dst" fi -src="$1" -dst="$2" + +fqsrc="$1" +case $fqsrc in +*:*) + src="${fqsrc#*:}" + srczfs="ssh ${fqsrc%%:*} zfs" + ;; +*) + src="${fqsrc}" + srczfs="zfs" + ;; +esac + +fqdst="$2" +case $fqdst in +*:*) + dst="${fqdst#*:}" + dstzfs="ssh ${fqdst%%:*} zfs" + ;; +*) + dst="${fqdst}" + dstzfs="zfs" + ;; +esac # Check src / dst datasets -if ! zfs list "$src" >/dev/null 2>&1 ; then - error "'$src' is not a valid dataset" +if ! $srczfs list "$src" >/dev/null 2>&1 ; then + error "'$fqsrc' is not a valid dataset" fi -if ! zfs list "$dst" >/dev/null 2>&1 ; then - error "'$dst' is not a valid dataset" +if ! $dstzfs list "$dst" >/dev/null 2>&1 ; then + error "'$fqdst' is not a valid dataset" fi -if [ "$src" = "$dst" ] ; then +if [ "$fqsrc" = "$fqdst" ] ; then error "source and destination must be different datasets" fi -if [ "${src#$dst/}" != "$src" -o "${dst#$src/}" != "$dst" ] ; then +if [ "${fqsrc#$fqdst/}" != "$fqsrc" -o "${fqdst#$fqsrc/}" != "$fqdst" ] ; then error "source and destination must be non-overlapping datasets" fi case src in @@ -77,12 +99,12 @@ fi now=$(date +%Y%m%d-%H%M%S) beg=$(date +%s) this="bak-$now" -last=$(zfs list -t snapshot | cut -d' ' -f1 | grep "^$dst$sub@bak-" | sort | tail -1) +last=$($dstzfs list -t snapshot | cut -d' ' -f1 | grep "^$dst$sub@bak-" | sort | tail -1) if [ -z "$last" ] ; then # First time - info "It looks like this is the first backup from $src to $dst." \ - "Continuing will DESTROY the contents of $dst, including any" \ - "preexisting snapshots, and replace them with the contents of $src." + info "It looks like this is the first backup from $fqsrc to $fqdst." \ + "Continuing will DESTROY the contents of $fqdst, including any" \ + "preexisting snapshots, and replace them with the contents of $fqsrc." while :; do echo -n "Are you sure you want to proceed? (yes/no) " read answer @@ -95,17 +117,17 @@ if [ -z "$last" ] ; then ;; esac done - zfs snapshot -r "$src@$this" || error "snapshot failed" - zfs send $verbose -R "$src@$this" | - zfs receive $verbose -F -d -u "$dst" + $srczfs snapshot -r "$src@$this" || error "snapshot failed" + $srczfs send $verbose -R "$src@$this" | + $dstzfs receive $verbose -F -d -u "$dst" else # Subsequent times last="${last#*@}" - zfs list "$src@$last" >/dev/null || error "failed to determine last backup" - zfs snapshot -r "$src@$this" || error "snapshot failed" - zfs send $verbose -R -I "$src@$last" "$src@$this" | - zfs receive $verbose -F -d -u "$dst" - zfs destroy -r "$src@$last" + $srczfs list "$src@$last" >/dev/null || error "failed to determine last backup" + $srczfs snapshot -r "$src@$this" || error "snapshot failed" + $srczfs send $verbose -R -I "$src@$last" "$src@$this" | + $dstzfs receive $verbose -F -d -u "$dst" + $srczfs destroy -r "$src@$last" fi end=$(date +%s) -info "Backup from $src to $dst completed in $((end - beg)) seconds" +#info "Backup from $fqsrc to $fqdst completed in $((end - beg)) seconds" From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 17:12:04 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D321F106564A; Wed, 18 Apr 2012 17:12:04 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BE99A8FC1C; Wed, 18 Apr 2012 17:12: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 q3IHC4L6041542; Wed, 18 Apr 2012 17:12:04 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IHC4Uk041539; Wed, 18 Apr 2012 17:12:04 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204181712.q3IHC4Uk041539@svn.freebsd.org> From: Navdeep Parhar Date: Wed, 18 Apr 2012 17:12: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: r234426 - in user/np/toe_iwarp/sys: modules/toecore netinet 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: Wed, 18 Apr 2012 17:12:04 -0000 Author: np Date: Wed Apr 18 17:12:04 2012 New Revision: 234426 URL: http://svn.freebsd.org/changeset/base/234426 Log: proper #includes. Modified: user/np/toe_iwarp/sys/modules/toecore/Makefile user/np/toe_iwarp/sys/netinet/tcp_offload.c Modified: user/np/toe_iwarp/sys/modules/toecore/Makefile ============================================================================== --- user/np/toe_iwarp/sys/modules/toecore/Makefile Wed Apr 18 16:47:57 2012 (r234425) +++ user/np/toe_iwarp/sys/modules/toecore/Makefile Wed Apr 18 17:12:04 2012 (r234426) @@ -4,5 +4,6 @@ KMOD= toecore SRCS= toecore.c +SRCS+= opt_ofed.h .include Modified: user/np/toe_iwarp/sys/netinet/tcp_offload.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/tcp_offload.c Wed Apr 18 16:47:57 2012 (r234425) +++ user/np/toe_iwarp/sys/netinet/tcp_offload.c Wed Apr 18 17:12:04 2012 (r234426) @@ -34,9 +34,12 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include +#include +#include #include #include #include From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 18:11:43 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 823ED106564A; Wed, 18 Apr 2012 18:11:43 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 610218FC15; Wed, 18 Apr 2012 18:11:43 +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 q3IIBh77044381; Wed, 18 Apr 2012 18:11:43 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IIBgFZ044372; Wed, 18 Apr 2012 18:11:42 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201204181811.q3IIBgFZ044372@svn.freebsd.org> From: Hiroki Sato Date: Wed, 18 Apr 2012 18:11:42 +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: r234428 - in user/hrs/ipv6: . bin/cat bin/chio bin/csh bin/df bin/ed bin/expr bin/kenv bin/ln bin/ls bin/mkdir bin/mv bin/ps bin/pwait bin/rm bin/setfacl bin/sh bin/sh/funcs bin/stty bi... 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: Wed, 18 Apr 2012 18:11:43 -0000 Author: hrs Date: Wed Apr 18 18:11:32 2012 New Revision: 234428 URL: http://svn.freebsd.org/changeset/base/234428 Log: Merge from HEAD @ 234423. Added: user/hrs/ipv6/cddl/contrib/opensolaris/lib/libdtrace/mips/ - copied from r234412, head/cddl/contrib/opensolaris/lib/libdtrace/mips/ user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c - copied unchanged from r234412, head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c user/hrs/ipv6/contrib/binutils/ld/emulparams/elf64ppc_fbsd.sh - copied unchanged from r234412, head/contrib/binutils/ld/emulparams/elf64ppc_fbsd.sh user/hrs/ipv6/contrib/compiler-rt/lib/int_endianness.h - copied unchanged from r234412, head/contrib/compiler-rt/lib/int_endianness.h user/hrs/ipv6/contrib/compiler-rt/lib/int_math.h - copied unchanged from r234412, head/contrib/compiler-rt/lib/int_math.h user/hrs/ipv6/contrib/compiler-rt/lib/int_types.h - copied unchanged from r234412, head/contrib/compiler-rt/lib/int_types.h user/hrs/ipv6/contrib/compiler-rt/lib/int_util.c - copied unchanged from r234412, head/contrib/compiler-rt/lib/int_util.c user/hrs/ipv6/contrib/compiler-rt/lib/int_util.h - copied unchanged from r234412, head/contrib/compiler-rt/lib/int_util.h user/hrs/ipv6/contrib/compiler-rt/lib/mulodi4.c - copied unchanged from r234412, head/contrib/compiler-rt/lib/mulodi4.c user/hrs/ipv6/contrib/compiler-rt/lib/mulosi4.c - copied unchanged from r234412, head/contrib/compiler-rt/lib/mulosi4.c user/hrs/ipv6/contrib/compiler-rt/lib/muloti4.c - copied unchanged from r234412, head/contrib/compiler-rt/lib/muloti4.c user/hrs/ipv6/contrib/compiler-rt/lib/sparc64/ - copied from r234412, head/contrib/compiler-rt/lib/sparc64/ user/hrs/ipv6/contrib/gperf/configure.ac - copied unchanged from r234412, head/contrib/gperf/configure.ac user/hrs/ipv6/contrib/gperf/doc/configure.ac - copied unchanged from r234412, head/contrib/gperf/doc/configure.ac user/hrs/ipv6/contrib/gperf/lib/configure.ac - copied unchanged from r234412, head/contrib/gperf/lib/configure.ac user/hrs/ipv6/contrib/gperf/lib/getline.cc - copied unchanged from r234412, head/contrib/gperf/lib/getline.cc user/hrs/ipv6/contrib/gperf/lib/getline.h - copied unchanged from r234412, head/contrib/gperf/lib/getline.h user/hrs/ipv6/contrib/gperf/src/config.h_vms - copied unchanged from r234412, head/contrib/gperf/src/config.h_vms user/hrs/ipv6/contrib/gperf/src/configure.ac - copied unchanged from r234412, head/contrib/gperf/src/configure.ac user/hrs/ipv6/contrib/gperf/src/input.cc - copied unchanged from r234412, head/contrib/gperf/src/input.cc user/hrs/ipv6/contrib/gperf/src/input.h - copied unchanged from r234412, head/contrib/gperf/src/input.h user/hrs/ipv6/contrib/gperf/src/keyword-list.cc - copied unchanged from r234412, head/contrib/gperf/src/keyword-list.cc user/hrs/ipv6/contrib/gperf/src/keyword-list.h - copied unchanged from r234412, head/contrib/gperf/src/keyword-list.h user/hrs/ipv6/contrib/gperf/src/keyword-list.icc - copied unchanged from r234412, head/contrib/gperf/src/keyword-list.icc user/hrs/ipv6/contrib/gperf/src/keyword.cc - copied unchanged from r234412, head/contrib/gperf/src/keyword.cc user/hrs/ipv6/contrib/gperf/src/keyword.h - copied unchanged from r234412, head/contrib/gperf/src/keyword.h user/hrs/ipv6/contrib/gperf/src/keyword.icc - copied unchanged from r234412, head/contrib/gperf/src/keyword.icc user/hrs/ipv6/contrib/gperf/src/output.cc - copied unchanged from r234412, head/contrib/gperf/src/output.cc user/hrs/ipv6/contrib/gperf/src/output.h - copied unchanged from r234412, head/contrib/gperf/src/output.h user/hrs/ipv6/contrib/gperf/src/positions.cc - copied unchanged from r234412, head/contrib/gperf/src/positions.cc user/hrs/ipv6/contrib/gperf/src/positions.h - copied unchanged from r234412, head/contrib/gperf/src/positions.h user/hrs/ipv6/contrib/gperf/src/positions.icc - copied unchanged from r234412, head/contrib/gperf/src/positions.icc user/hrs/ipv6/contrib/gperf/src/search.cc - copied unchanged from r234412, head/contrib/gperf/src/search.cc user/hrs/ipv6/contrib/gperf/src/search.h - copied unchanged from r234412, head/contrib/gperf/src/search.h user/hrs/ipv6/contrib/jemalloc/ - copied from r234412, head/contrib/jemalloc/ - copied from r234412, head/contrib/libarchive/ - copied from r234412, head/contrib/libc++/ - copied from r234412, head/contrib/libcxxrt/ user/hrs/ipv6/contrib/llvm/LICENSE.TXT - copied unchanged from r234412, head/contrib/llvm/LICENSE.TXT user/hrs/ipv6/contrib/llvm/include/llvm-c/TargetMachine.h - copied unchanged from r234412, head/contrib/llvm/include/llvm-c/TargetMachine.h user/hrs/ipv6/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h - copied unchanged from r234412, head/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h user/hrs/ipv6/contrib/llvm/include/llvm-c/Transforms/Vectorize.h - copied unchanged from r234412, head/contrib/llvm/include/llvm-c/Transforms/Vectorize.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/Hashing.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/ADT/Hashing.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/SparseSet.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/ADT/SparseSet.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/TinyPtrVector.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/ADT/TinyPtrVector.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/VariadicFunction.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/ADT/VariadicFunction.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/edit_distance.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/ADT/edit_distance.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/LoopIterator.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Analysis/LoopIterator.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h user/hrs/ipv6/contrib/llvm/include/llvm/DebugInfo/ - copied from r234412, head/contrib/llvm/include/llvm/DebugInfo/ user/hrs/ipv6/contrib/llvm/include/llvm/ExecutionEngine/IntelJITEventsWrapper.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/ExecutionEngine/IntelJITEventsWrapper.h user/hrs/ipv6/contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h user/hrs/ipv6/contrib/llvm/include/llvm/IntrinsicsHexagon.td - copied unchanged from r234412, head/contrib/llvm/include/llvm/IntrinsicsHexagon.td user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCAsmBackend.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MCAsmBackend.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCAtom.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MCAtom.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCModule.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MCModule.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MachineLocation.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/MC/MachineLocation.h user/hrs/ipv6/contrib/llvm/include/llvm/Object/Archive.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Object/Archive.h user/hrs/ipv6/contrib/llvm/include/llvm/Object/ELF.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Object/ELF.h user/hrs/ipv6/contrib/llvm/include/llvm/Object/MachO.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Object/MachO.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/BlockFrequency.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/BlockFrequency.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/Capacity.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/Capacity.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/CodeGen.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/CodeGen.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/DataExtractor.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/DataExtractor.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/DataStream.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/DataStream.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/GCOV.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/GCOV.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/JSONParser.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/JSONParser.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/LockFileManager.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/LockFileManager.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/SaveAndRestore.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/SaveAndRestore.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/TargetRegistry.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/TargetRegistry.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/TargetSelect.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/TargetSelect.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/YAMLParser.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Support/YAMLParser.h user/hrs/ipv6/contrib/llvm/include/llvm/TableGen/ - copied from r234412, head/contrib/llvm/include/llvm/TableGen/ user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Vectorize.h - copied unchanged from r234412, head/contrib/llvm/include/llvm/Transforms/Vectorize.h user/hrs/ipv6/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/CodeMetrics.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Analysis/CodeMetrics.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/JITCodeEmitter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/JITCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LexicalScopes.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/LexicalScopes.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveRangeCalc.h - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/LiveRangeCalc.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineCodeEmitter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/MachineCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineScheduler.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/MachineScheduler.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegAllocBase.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/RegAllocBase.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp - copied unchanged from r234412, head/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp user/hrs/ipv6/contrib/llvm/lib/DebugInfo/ - copied from r234412, head/contrib/llvm/lib/DebugInfo/ user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h - copied unchanged from r234412, head/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ - copied from r234412, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.cpp - copied unchanged from r234412, head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/OProfileJIT/ - copied from r234412, head/contrib/llvm/lib/ExecutionEngine/OProfileJIT/ user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp - copied unchanged from r234412, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h - copied unchanged from r234412, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h - copied unchanged from r234412, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h user/hrs/ipv6/contrib/llvm/lib/MC/MCAsmBackend.cpp - copied unchanged from r234412, head/contrib/llvm/lib/MC/MCAsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCAtom.cpp - copied unchanged from r234412, head/contrib/llvm/lib/MC/MCAtom.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCCodeGenInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/MC/MCCodeGenInfo.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp - copied unchanged from r234412, head/contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCInstrAnalysis.cpp - copied unchanged from r234412, head/contrib/llvm/lib/MC/MCInstrAnalysis.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCModule.cpp - copied unchanged from r234412, head/contrib/llvm/lib/MC/MCModule.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCObjectFileInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/MC/MCObjectFileInfo.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp - copied unchanged from r234412, head/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCTargetAsmLexer.cpp - copied unchanged from r234412, head/contrib/llvm/lib/MC/MCTargetAsmLexer.cpp user/hrs/ipv6/contrib/llvm/lib/Object/Archive.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Object/Archive.cpp user/hrs/ipv6/contrib/llvm/lib/Support/BlockFrequency.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Support/BlockFrequency.cpp user/hrs/ipv6/contrib/llvm/lib/Support/COPYRIGHT.regex - copied unchanged from r234412, head/contrib/llvm/lib/Support/COPYRIGHT.regex user/hrs/ipv6/contrib/llvm/lib/Support/DataExtractor.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Support/DataExtractor.cpp user/hrs/ipv6/contrib/llvm/lib/Support/DataStream.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Support/DataStream.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Hashing.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Support/Hashing.cpp user/hrs/ipv6/contrib/llvm/lib/Support/IntrusiveRefCntPtr.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Support/IntrusiveRefCntPtr.cpp user/hrs/ipv6/contrib/llvm/lib/Support/JSONParser.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Support/JSONParser.cpp user/hrs/ipv6/contrib/llvm/lib/Support/LockFileManager.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Support/LockFileManager.cpp user/hrs/ipv6/contrib/llvm/lib/Support/StreamableMemoryObject.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Support/StreamableMemoryObject.cpp user/hrs/ipv6/contrib/llvm/lib/Support/YAMLParser.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Support/YAMLParser.cpp user/hrs/ipv6/contrib/llvm/lib/TableGen/ - copied from r234412, head/contrib/llvm/lib/TableGen/ user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Hexagon/ - copied from r234412, head/contrib/llvm/lib/Target/Hexagon/ user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeBaseInfo.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeBaseInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeELFObjectWriter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeELFObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/AsmParser/ - copied from r234412, head/contrib/llvm/lib/Target/Mips/AsmParser/ user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsCondMov.td - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MipsCondMov.td user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsJITInfo.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MipsJITInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsRelocations.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/Mips/MipsRelocations.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/InstPrinter/ - copied from r234412, head/contrib/llvm/lib/Target/PTX/InstPrinter/ user/hrs/ipv6/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXBaseInfo.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXBaseInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXFPRoundingModePass.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXFPRoundingModePass.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXInstrLoadStore.td - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXInstrLoadStore.td user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXMCInstLower.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXMCInstLower.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXParamManager.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXParamManager.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXParamManager.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXParamManager.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXRegAlloc.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXRegAlloc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCBaseInfo.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCBaseInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td - copied unchanged from r234412, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetJITInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/TargetJITInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetMachineC.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/TargetMachineC.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrSVM.td - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/X86InstrSVM.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrXOP.td - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/X86InstrXOP.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86Schedule.td - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/X86Schedule.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.h - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.h user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp - copied unchanged from r234412, head/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Vectorize/ - copied from r234412, head/contrib/llvm/lib/Transforms/Vectorize/ user/hrs/ipv6/contrib/llvm/lib/VMCore/GCOV.cpp - copied unchanged from r234412, head/contrib/llvm/lib/VMCore/GCOV.cpp user/hrs/ipv6/contrib/llvm/tools/bugpoint/ - copied from r234412, head/contrib/llvm/tools/bugpoint/ user/hrs/ipv6/contrib/llvm/tools/clang/LICENSE.TXT - copied unchanged from r234412, head/contrib/llvm/tools/clang/LICENSE.TXT user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/LambdaMangleContext.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/AST/LambdaMangleContext.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Module.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Basic/Module.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Edit/ - copied from r234412, head/contrib/llvm/tools/clang/include/clang/Edit/ user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/ChainedIncludesSource.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Frontend/ChainedIncludesSource.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Index/GlobalCallGraph.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Index/GlobalCallGraph.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/Weak.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Sema/Weak.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/Module.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Serialization/Module.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CommonBugCategories.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CommonBugCategories.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Tooling/ - copied from r234412, head/contrib/llvm/tools/clang/include/clang/Tooling/ user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/Module.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Basic/Module.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Edit/ - copied from r234412, head/contrib/llvm/tools/clang/lib/Edit/ user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/cpuid.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/cpuid.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/module.map - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/module.map user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/stdalign.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/stdalign.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/unwind.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Headers/unwind.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Index/GlobalCallGraph.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Index/GlobalCallGraph.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/PPCallbacks.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Lex/PPCallbacks.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaConsumer.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Sema/SemaConsumer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/Module.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Serialization/Module.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CommonBugCategories.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CommonBugCategories.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp - copied unchanged from r234412, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Tooling/ - copied from r234412, head/contrib/llvm/tools/clang/lib/Tooling/ user/hrs/ipv6/contrib/llvm/tools/clang/utils/ - copied from r234412, head/contrib/llvm/tools/clang/utils/ user/hrs/ipv6/contrib/llvm/tools/llc/ - copied from r234412, head/contrib/llvm/tools/llc/ user/hrs/ipv6/contrib/llvm/tools/lli/ - copied from r234412, head/contrib/llvm/tools/lli/ user/hrs/ipv6/contrib/llvm/tools/llvm-ar/ - copied from r234412, head/contrib/llvm/tools/llvm-ar/ user/hrs/ipv6/contrib/llvm/tools/llvm-as/ - copied from r234412, head/contrib/llvm/tools/llvm-as/ user/hrs/ipv6/contrib/llvm/tools/llvm-bcanalyzer/ - copied from r234412, head/contrib/llvm/tools/llvm-bcanalyzer/ user/hrs/ipv6/contrib/llvm/tools/llvm-diff/ - copied from r234412, head/contrib/llvm/tools/llvm-diff/ user/hrs/ipv6/contrib/llvm/tools/llvm-dis/ - copied from r234412, head/contrib/llvm/tools/llvm-dis/ user/hrs/ipv6/contrib/llvm/tools/llvm-extract/ - copied from r234412, head/contrib/llvm/tools/llvm-extract/ user/hrs/ipv6/contrib/llvm/tools/llvm-ld/ - copied from r234412, head/contrib/llvm/tools/llvm-ld/ user/hrs/ipv6/contrib/llvm/tools/llvm-link/ - copied from r234412, head/contrib/llvm/tools/llvm-link/ user/hrs/ipv6/contrib/llvm/tools/llvm-mc/ - copied from r234412, head/contrib/llvm/tools/llvm-mc/ user/hrs/ipv6/contrib/llvm/tools/llvm-nm/ - copied from r234412, head/contrib/llvm/tools/llvm-nm/ user/hrs/ipv6/contrib/llvm/tools/llvm-objdump/ - copied from r234412, head/contrib/llvm/tools/llvm-objdump/ user/hrs/ipv6/contrib/llvm/tools/llvm-prof/ - copied from r234412, head/contrib/llvm/tools/llvm-prof/ user/hrs/ipv6/contrib/llvm/tools/llvm-ranlib/ - copied from r234412, head/contrib/llvm/tools/llvm-ranlib/ user/hrs/ipv6/contrib/llvm/tools/llvm-readobj/ - copied from r234412, head/contrib/llvm/tools/llvm-readobj/ user/hrs/ipv6/contrib/llvm/tools/llvm-rtdyld/ - copied from r234412, head/contrib/llvm/tools/llvm-rtdyld/ user/hrs/ipv6/contrib/llvm/tools/llvm-stress/ - copied from r234412, head/contrib/llvm/tools/llvm-stress/ user/hrs/ipv6/contrib/llvm/tools/llvm-stub/ - copied from r234412, head/contrib/llvm/tools/llvm-stub/ user/hrs/ipv6/contrib/llvm/tools/macho-dump/ - copied from r234412, head/contrib/llvm/tools/macho-dump/ user/hrs/ipv6/contrib/llvm/tools/opt/ - copied from r234412, head/contrib/llvm/tools/opt/ user/hrs/ipv6/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp - copied unchanged from r234412, head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.h - copied unchanged from r234412, head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h - copied unchanged from r234412, head/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h user/hrs/ipv6/contrib/llvm/utils/TableGen/X86ModRMFilters.cpp - copied unchanged from r234412, head/contrib/llvm/utils/TableGen/X86ModRMFilters.cpp user/hrs/ipv6/contrib/openpam/bin/pamtest/ - copied from r234412, head/contrib/openpam/bin/pamtest/ user/hrs/ipv6/contrib/openpam/bin/su/su.1 - copied unchanged from r234412, head/contrib/openpam/bin/su/su.1 user/hrs/ipv6/contrib/openpam/doc/man/openpam_subst.3 - copied unchanged from r234412, head/contrib/openpam/doc/man/openpam_subst.3 user/hrs/ipv6/contrib/openpam/lib/openpam_check_owner_perms.c - copied unchanged from r234412, head/contrib/openpam/lib/openpam_check_owner_perms.c user/hrs/ipv6/contrib/openpam/lib/openpam_constants.c - copied unchanged from r234412, head/contrib/openpam/lib/openpam_constants.c user/hrs/ipv6/contrib/openpam/lib/openpam_constants.h - copied unchanged from r234412, head/contrib/openpam/lib/openpam_constants.h user/hrs/ipv6/contrib/openpam/lib/openpam_debug.h - copied unchanged from r234412, head/contrib/openpam/lib/openpam_debug.h user/hrs/ipv6/contrib/openpam/lib/openpam_strlcmp.h - copied unchanged from r234412, head/contrib/openpam/lib/openpam_strlcmp.h user/hrs/ipv6/contrib/openpam/lib/openpam_strlcpy.h - copied unchanged from r234412, head/contrib/openpam/lib/openpam_strlcpy.h user/hrs/ipv6/contrib/openpam/lib/openpam_subst.c - copied unchanged from r234412, head/contrib/openpam/lib/openpam_subst.c user/hrs/ipv6/contrib/tcsh/nls/Makefile.in - copied unchanged from r234412, head/contrib/tcsh/nls/Makefile.in user/hrs/ipv6/contrib/tcsh/nls/catgen - copied unchanged from r234412, head/contrib/tcsh/nls/catgen user/hrs/ipv6/contrib/tcsh/svn - copied unchanged from r234412, head/contrib/tcsh/svn user/hrs/ipv6/crypto/heimdal/admin/destroy.c - copied unchanged from r234412, head/crypto/heimdal/admin/destroy.c user/hrs/ipv6/crypto/heimdal/appl/login/login-protos.h - copied unchanged from r234412, head/crypto/heimdal/appl/login/login-protos.h user/hrs/ipv6/crypto/heimdal/base/ - copied from r234412, head/crypto/heimdal/base/ user/hrs/ipv6/crypto/heimdal/doc/copyright.texi - copied unchanged from r234412, head/crypto/heimdal/doc/copyright.texi user/hrs/ipv6/crypto/heimdal/doc/doxyout/ - copied from r234412, head/crypto/heimdal/doc/doxyout/ user/hrs/ipv6/crypto/heimdal/doc/gssapi.din - copied unchanged from r234412, head/crypto/heimdal/doc/gssapi.din user/hrs/ipv6/crypto/heimdal/doc/header.html - copied unchanged from r234412, head/crypto/heimdal/doc/header.html user/hrs/ipv6/crypto/heimdal/doc/wind.din - copied unchanged from r234412, head/crypto/heimdal/doc/wind.din user/hrs/ipv6/crypto/heimdal/include/crypto-headers.h - copied unchanged from r234412, head/crypto/heimdal/include/crypto-headers.h user/hrs/ipv6/crypto/heimdal/include/heim_threads.h - copied unchanged from r234412, head/crypto/heimdal/include/heim_threads.h user/hrs/ipv6/crypto/heimdal/include/krb5-types.cross - copied unchanged from r234412, head/crypto/heimdal/include/krb5-types.cross user/hrs/ipv6/crypto/heimdal/kadmin/rpc.c - copied unchanged from r234412, head/crypto/heimdal/kadmin/rpc.c user/hrs/ipv6/crypto/heimdal/kcm/kcm-protos.h - copied unchanged from r234412, head/crypto/heimdal/kcm/kcm-protos.h user/hrs/ipv6/crypto/heimdal/kcm/sessions.c - copied unchanged from r234412, head/crypto/heimdal/kcm/sessions.c user/hrs/ipv6/crypto/heimdal/kdc/announce.c - copied unchanged from r234412, head/crypto/heimdal/kdc/announce.c user/hrs/ipv6/crypto/heimdal/kdc/digest-service.c - copied unchanged from r234412, head/crypto/heimdal/kdc/digest-service.c user/hrs/ipv6/crypto/heimdal/kuser/kcc-commands.in - copied unchanged from r234412, head/crypto/heimdal/kuser/kcc-commands.in user/hrs/ipv6/crypto/heimdal/kuser/kcc.c - copied unchanged from r234412, head/crypto/heimdal/kuser/kcc.c user/hrs/ipv6/crypto/heimdal/kuser/kdigest.8 - copied unchanged from r234412, head/crypto/heimdal/kuser/kdigest.8 user/hrs/ipv6/crypto/heimdal/kuser/kimpersonate.8 - copied unchanged from r234412, head/crypto/heimdal/kuser/kimpersonate.8 user/hrs/ipv6/crypto/heimdal/kuser/kswitch.1 - copied unchanged from r234412, head/crypto/heimdal/kuser/kswitch.1 user/hrs/ipv6/crypto/heimdal/kuser/kswitch.c - copied unchanged from r234412, head/crypto/heimdal/kuser/kswitch.c user/hrs/ipv6/crypto/heimdal/lib/asn1/asn1-template.h - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/asn1-template.h user/hrs/ipv6/crypto/heimdal/lib/asn1/asn1parse.c - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/asn1parse.c user/hrs/ipv6/crypto/heimdal/lib/asn1/asn1parse.h - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/asn1parse.h user/hrs/ipv6/crypto/heimdal/lib/asn1/asn1parse.y - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/asn1parse.y user/hrs/ipv6/crypto/heimdal/lib/asn1/cms.asn1 - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/cms.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/cms.opt - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/cms.opt user/hrs/ipv6/crypto/heimdal/lib/asn1/der-private.h - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/der-private.h user/hrs/ipv6/crypto/heimdal/lib/asn1/gen_template.c - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/gen_template.c user/hrs/ipv6/crypto/heimdal/lib/asn1/krb5.asn1 - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/krb5.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/krb5.opt - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/krb5.opt user/hrs/ipv6/crypto/heimdal/lib/asn1/template.c - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/template.c user/hrs/ipv6/crypto/heimdal/lib/asn1/version-script.map - copied unchanged from r234412, head/crypto/heimdal/lib/asn1/version-script.map user/hrs/ipv6/crypto/heimdal/lib/gssapi/gssapi/gssapi_ntlm.h - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/gssapi/gssapi_ntlm.h user/hrs/ipv6/crypto/heimdal/lib/gssapi/gssapi/gssapi_oid.h - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/gssapi/gssapi_oid.h user/hrs/ipv6/crypto/heimdal/lib/gssapi/gsstool.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/gsstool.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/aeap.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/krb5/aeap.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/authorize_localname.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/krb5/authorize_localname.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/creds.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/krb5/creds.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/pname_to_uid.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/krb5/pname_to_uid.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/store_cred.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/krb5/store_cred.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/mech/ - copied from r234412, head/crypto/heimdal/lib/gssapi/mech/ user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/creds.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/ntlm/creds.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/inquire_sec_context_by_oid.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/ntlm/inquire_sec_context_by_oid.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/iter_cred.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/ntlm/iter_cred.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/kdc.c - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/ntlm/kdc.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/spnego.opt - copied unchanged from r234412, head/crypto/heimdal/lib/gssapi/spnego/spnego.opt user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb-keytab.c - copied unchanged from r234412, head/crypto/heimdal/lib/hdb/hdb-keytab.c user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb-mitdb.c - copied unchanged from r234412, head/crypto/heimdal/lib/hdb/hdb-mitdb.c user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb-sqlite.c - copied unchanged from r234412, head/crypto/heimdal/lib/hdb/hdb-sqlite.c user/hrs/ipv6/crypto/heimdal/lib/hdb/version-script.map - copied unchanged from r234412, head/crypto/heimdal/lib/hdb/version-script.map user/hrs/ipv6/crypto/heimdal/lib/heimdal/ - copied from r234412, head/crypto/heimdal/lib/heimdal/ user/hrs/ipv6/crypto/heimdal/lib/hx509/char_map.h - copied unchanged from r234412, head/crypto/heimdal/lib/hx509/char_map.h user/hrs/ipv6/crypto/heimdal/lib/hx509/ocsp.opt - copied unchanged from r234412, head/crypto/heimdal/lib/hx509/ocsp.opt user/hrs/ipv6/crypto/heimdal/lib/hx509/pkcs10.opt - copied unchanged from r234412, head/crypto/heimdal/lib/hx509/pkcs10.opt user/hrs/ipv6/crypto/heimdal/lib/hx509/quote.py - copied unchanged from r234412, head/crypto/heimdal/lib/hx509/quote.py user/hrs/ipv6/crypto/heimdal/lib/hx509/sel-gram.y - copied unchanged from r234412, head/crypto/heimdal/lib/hx509/sel-gram.y user/hrs/ipv6/crypto/heimdal/lib/hx509/sel-lex.l - copied unchanged from r234412, head/crypto/heimdal/lib/hx509/sel-lex.l user/hrs/ipv6/crypto/heimdal/lib/hx509/sel.c - copied unchanged from r234412, head/crypto/heimdal/lib/hx509/sel.c user/hrs/ipv6/crypto/heimdal/lib/hx509/sel.h - copied unchanged from r234412, head/crypto/heimdal/lib/hx509/sel.h user/hrs/ipv6/crypto/heimdal/lib/ipc/ - copied from r234412, head/crypto/heimdal/lib/ipc/ user/hrs/ipv6/crypto/heimdal/lib/krb5/ccache_plugin.h - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/ccache_plugin.h user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-aes.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-aes.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-algs.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-algs.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-arcfour.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-arcfour.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-des-common.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-des-common.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-des.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-des.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-des3.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-des3.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-evp.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-evp.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-null.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-null.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-pk.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-pk.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-rand.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-rand.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto-stubs.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto-stubs.c user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto.h - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/crypto.h user/hrs/ipv6/crypto/heimdal/lib/krb5/deprecated.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/deprecated.c user/hrs/ipv6/crypto/heimdal/lib/krb5/expand_path.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/expand_path.c user/hrs/ipv6/crypto/heimdal/lib/krb5/pcache.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/pcache.c user/hrs/ipv6/crypto/heimdal/lib/krb5/salt-aes.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/salt-aes.c user/hrs/ipv6/crypto/heimdal/lib/krb5/salt-arcfour.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/salt-arcfour.c user/hrs/ipv6/crypto/heimdal/lib/krb5/salt-des.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/salt-des.c user/hrs/ipv6/crypto/heimdal/lib/krb5/salt-des3.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/salt-des3.c user/hrs/ipv6/crypto/heimdal/lib/krb5/salt.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/salt.c user/hrs/ipv6/crypto/heimdal/lib/krb5/scache.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/scache.c user/hrs/ipv6/crypto/heimdal/lib/krb5/send_to_kdc_plugin.h - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/send_to_kdc_plugin.h user/hrs/ipv6/crypto/heimdal/lib/krb5/store-int.c - copied unchanged from r234412, head/crypto/heimdal/lib/krb5/store-int.c user/hrs/ipv6/crypto/heimdal/lib/ntlm/ntlm_err.et - copied unchanged from r234412, head/crypto/heimdal/lib/ntlm/ntlm_err.et user/hrs/ipv6/crypto/heimdal/lib/roken/cloexec.c - copied unchanged from r234412, head/crypto/heimdal/lib/roken/cloexec.c user/hrs/ipv6/crypto/heimdal/lib/roken/ct.c - copied unchanged from r234412, head/crypto/heimdal/lib/roken/ct.c user/hrs/ipv6/crypto/heimdal/lib/roken/doxygen.c - copied unchanged from r234412, head/crypto/heimdal/lib/roken/doxygen.c user/hrs/ipv6/crypto/heimdal/lib/roken/qsort.c - copied unchanged from r234412, head/crypto/heimdal/lib/roken/qsort.c user/hrs/ipv6/crypto/heimdal/lib/roken/rand.c - copied unchanged from r234412, head/crypto/heimdal/lib/roken/rand.c user/hrs/ipv6/crypto/heimdal/lib/roken/rkpty.c - copied unchanged from r234412, head/crypto/heimdal/lib/roken/rkpty.c user/hrs/ipv6/crypto/heimdal/lib/roken/search.hin - copied unchanged from r234412, head/crypto/heimdal/lib/roken/search.hin user/hrs/ipv6/crypto/heimdal/lib/roken/strerror_r.c - copied unchanged from r234412, head/crypto/heimdal/lib/roken/strerror_r.c user/hrs/ipv6/crypto/heimdal/lib/roken/tsearch.c - copied unchanged from r234412, head/crypto/heimdal/lib/roken/tsearch.c user/hrs/ipv6/crypto/heimdal/lib/roken/version-script.map - copied unchanged from r234412, head/crypto/heimdal/lib/roken/version-script.map user/hrs/ipv6/crypto/heimdal/lib/roken/xfree.c - copied unchanged from r234412, head/crypto/heimdal/lib/roken/xfree.c user/hrs/ipv6/crypto/heimdal/lib/sqlite/ - copied from r234412, head/crypto/heimdal/lib/sqlite/ user/hrs/ipv6/crypto/heimdal/lib/wind/ - copied from r234412, head/crypto/heimdal/lib/wind/ user/hrs/ipv6/crypto/openssh/sandbox-darwin.c - copied unchanged from r234412, head/crypto/openssh/sandbox-darwin.c user/hrs/ipv6/crypto/openssh/sandbox-null.c - copied unchanged from r234412, head/crypto/openssh/sandbox-null.c user/hrs/ipv6/crypto/openssh/sandbox-rlimit.c - copied unchanged from r234412, head/crypto/openssh/sandbox-rlimit.c user/hrs/ipv6/crypto/openssh/sandbox-systrace.c - copied unchanged from r234412, head/crypto/openssh/sandbox-systrace.c user/hrs/ipv6/crypto/openssh/ssh-sandbox.h - copied unchanged from r234412, head/crypto/openssh/ssh-sandbox.h user/hrs/ipv6/etc/devd/apple.conf - copied unchanged from r234412, head/etc/devd/apple.conf user/hrs/ipv6/etc/rc.d/kfd - copied unchanged from r234412, head/etc/rc.d/kfd user/hrs/ipv6/etc/rc.d/static_ndp - copied unchanged from r234412, head/etc/rc.d/static_ndp user/hrs/ipv6/etc/rc.d/utx - copied unchanged from r234412, head/etc/rc.d/utx user/hrs/ipv6/gnu/lib/libsupc++/Version.map - copied unchanged from r234412, head/gnu/lib/libsupc++/Version.map user/hrs/ipv6/gnu/usr.bin/cc/cpp/gcpp.1 - copied unchanged from r234412, head/gnu/usr.bin/cc/cpp/gcpp.1 user/hrs/ipv6/include/stdalign.h - copied unchanged from r234412, head/include/stdalign.h user/hrs/ipv6/include/stdatomic.h - copied unchanged from r234412, head/include/stdatomic.h user/hrs/ipv6/include/stdnoreturn.h - copied unchanged from r234412, head/include/stdnoreturn.h user/hrs/ipv6/include/xlocale/ - copied from r234412, head/include/xlocale/ user/hrs/ipv6/include/xlocale.h - copied unchanged from r234412, head/include/xlocale.h user/hrs/ipv6/kerberos5/lib/libasn1/version.map - copied unchanged from r234412, head/kerberos5/lib/libasn1/version.map user/hrs/ipv6/kerberos5/lib/libgssapi_krb5/gss_oid.c - copied unchanged from r234412, head/kerberos5/lib/libgssapi_krb5/gss_oid.c user/hrs/ipv6/kerberos5/lib/libgssapi_spnego/freebsd_compat.c - copied unchanged from r234412, head/kerberos5/lib/libgssapi_spnego/freebsd_compat.c user/hrs/ipv6/kerberos5/lib/libheimbase/ - copied from r234412, head/kerberos5/lib/libheimbase/ user/hrs/ipv6/kerberos5/lib/libheimipcc/ - copied from r234412, head/kerberos5/lib/libheimipcc/ user/hrs/ipv6/kerberos5/lib/libheimipcs/ - copied from r234412, head/kerberos5/lib/libheimipcs/ user/hrs/ipv6/kerberos5/lib/libheimsqlite/ - copied from r234412, head/kerberos5/lib/libheimsqlite/ user/hrs/ipv6/kerberos5/lib/libkafs5/version.map - copied unchanged from r234412, head/kerberos5/lib/libkafs5/version.map user/hrs/ipv6/kerberos5/lib/libkdc/ - copied from r234412, head/kerberos5/lib/libkdc/ user/hrs/ipv6/kerberos5/lib/libwind/ - copied from r234412, head/kerberos5/lib/libwind/ user/hrs/ipv6/kerberos5/libexec/digest-service/ - copied from r234412, head/kerberos5/libexec/digest-service/ user/hrs/ipv6/kerberos5/libexec/kdigest/ - copied from r234412, head/kerberos5/libexec/kdigest/ user/hrs/ipv6/kerberos5/libexec/kfd/ - copied from r234412, head/kerberos5/libexec/kfd/ user/hrs/ipv6/kerberos5/libexec/kimpersonate/ - copied from r234412, head/kerberos5/libexec/kimpersonate/ user/hrs/ipv6/kerberos5/usr.bin/hxtool/ - copied from r234412, head/kerberos5/usr.bin/hxtool/ user/hrs/ipv6/kerberos5/usr.bin/kcc/ - copied from r234412, head/kerberos5/usr.bin/kcc/ user/hrs/ipv6/kerberos5/usr.bin/kf/ - copied from r234412, head/kerberos5/usr.bin/kf/ user/hrs/ipv6/kerberos5/usr.bin/kgetcred/ - copied from r234412, head/kerberos5/usr.bin/kgetcred/ user/hrs/ipv6/kerberos5/usr.bin/string2key/ - copied from r234412, head/kerberos5/usr.bin/string2key/ user/hrs/ipv6/kerberos5/usr.sbin/iprop-log/ - copied from r234412, head/kerberos5/usr.sbin/iprop-log/ user/hrs/ipv6/lib/clang/include/ARMGenDisassemblerTables.inc - copied unchanged from r234412, head/lib/clang/include/ARMGenDisassemblerTables.inc user/hrs/ipv6/lib/clang/include/MipsGenCodeEmitter.inc - copied unchanged from r234412, head/lib/clang/include/MipsGenCodeEmitter.inc user/hrs/ipv6/lib/clang/include/MipsGenMCCodeEmitter.inc - copied unchanged from r234412, head/lib/clang/include/MipsGenMCCodeEmitter.inc user/hrs/ipv6/lib/clang/include/clang/Basic/DiagnosticSerializationKinds.inc - copied unchanged from r234412, head/lib/clang/include/clang/Basic/DiagnosticSerializationKinds.inc user/hrs/ipv6/lib/clang/include/clang/Config/ - copied from r234412, head/lib/clang/include/clang/Config/ user/hrs/ipv6/lib/clang/include/clang/Parse/ - copied from r234412, head/lib/clang/include/clang/Parse/ user/hrs/ipv6/lib/clang/include/clang/Sema/ - copied from r234412, head/lib/clang/include/clang/Sema/ user/hrs/ipv6/lib/clang/libclangedit/ - copied from r234412, head/lib/clang/libclangedit/ user/hrs/ipv6/lib/clang/libllvmarchive/ - copied from r234412, head/lib/clang/libllvmarchive/ user/hrs/ipv6/lib/clang/libllvmdebuginfo/ - copied from r234412, head/lib/clang/libllvmdebuginfo/ user/hrs/ipv6/lib/clang/libllvmexecutionengine/ - copied from r234412, head/lib/clang/libllvmexecutionengine/ user/hrs/ipv6/lib/clang/libllvminterpreter/ - copied from r234412, head/lib/clang/libllvminterpreter/ user/hrs/ipv6/lib/clang/libllvmjit/ - copied from r234412, head/lib/clang/libllvmjit/ user/hrs/ipv6/lib/clang/libllvmlinker/ - copied from r234412, head/lib/clang/libllvmlinker/ user/hrs/ipv6/lib/clang/libllvmmcdisassembler/ - copied from r234412, head/lib/clang/libllvmmcdisassembler/ user/hrs/ipv6/lib/clang/libllvmmcjit/ - copied from r234412, head/lib/clang/libllvmmcjit/ user/hrs/ipv6/lib/clang/libllvmmipsasmparser/ - copied from r234412, head/lib/clang/libllvmmipsasmparser/ user/hrs/ipv6/lib/clang/libllvmobject/ - copied from r234412, head/lib/clang/libllvmobject/ user/hrs/ipv6/lib/clang/libllvmruntimedyld/ - copied from r234412, head/lib/clang/libllvmruntimedyld/ user/hrs/ipv6/lib/clang/libllvmtablegen/ - copied from r234412, head/lib/clang/libllvmtablegen/ user/hrs/ipv6/lib/clang/libllvmvectorize/ - copied from r234412, head/lib/clang/libllvmvectorize/ user/hrs/ipv6/lib/csu/common/ignore_init.c - copied unchanged from r234412, head/lib/csu/common/ignore_init.c user/hrs/ipv6/lib/csu/common/notes.h - copied unchanged from r234412, head/lib/csu/common/notes.h user/hrs/ipv6/lib/libc++/ - copied from r234412, head/lib/libc++/ user/hrs/ipv6/lib/libc/amd64/gen/getcontextx.c - copied unchanged from r234412, head/lib/libc/amd64/gen/getcontextx.c user/hrs/ipv6/lib/libc/arm/gen/__aeabi_read_tp.S - copied unchanged from r234412, head/lib/libc/arm/gen/__aeabi_read_tp.S user/hrs/ipv6/lib/libc/arm/gen/flt_rounds.c - copied unchanged from r234412, head/lib/libc/arm/gen/flt_rounds.c user/hrs/ipv6/lib/libc/arm/gen/getcontextx.c - copied unchanged from r234412, head/lib/libc/arm/gen/getcontextx.c user/hrs/ipv6/lib/libc/gen/dl_iterate_phdr.3 - copied unchanged from r234412, head/lib/libc/gen/dl_iterate_phdr.3 user/hrs/ipv6/lib/libc/gen/libc_dlopen.c - copied unchanged from r234412, head/lib/libc/gen/libc_dlopen.c user/hrs/ipv6/lib/libc/gen/modf.c - copied unchanged from r234412, head/lib/libc/gen/modf.c user/hrs/ipv6/lib/libc/i386/gen/getcontextx.c - copied unchanged from r234412, head/lib/libc/i386/gen/getcontextx.c user/hrs/ipv6/lib/libc/ia64/gen/getcontextx.c - copied unchanged from r234412, head/lib/libc/ia64/gen/getcontextx.c user/hrs/ipv6/lib/libc/locale/DESIGN.xlocale - copied unchanged from r234412, head/lib/libc/locale/DESIGN.xlocale user/hrs/ipv6/lib/libc/locale/ctype.c - copied unchanged from r234412, head/lib/libc/locale/ctype.c user/hrs/ipv6/lib/libc/locale/ctype_l.3 - copied unchanged from r234412, head/lib/libc/locale/ctype_l.3 user/hrs/ipv6/lib/libc/locale/duplocale.3 - copied unchanged from r234412, head/lib/libc/locale/duplocale.3 user/hrs/ipv6/lib/libc/locale/freelocale.3 - copied unchanged from r234412, head/lib/libc/locale/freelocale.3 user/hrs/ipv6/lib/libc/locale/newlocale.3 - copied unchanged from r234412, head/lib/libc/locale/newlocale.3 user/hrs/ipv6/lib/libc/locale/querylocale.3 - copied unchanged from r234412, head/lib/libc/locale/querylocale.3 user/hrs/ipv6/lib/libc/locale/uselocale.3 - copied unchanged from r234412, head/lib/libc/locale/uselocale.3 user/hrs/ipv6/lib/libc/locale/xlocale.3 - copied unchanged from r234412, head/lib/libc/locale/xlocale.3 user/hrs/ipv6/lib/libc/locale/xlocale.c - copied unchanged from r234412, head/lib/libc/locale/xlocale.c user/hrs/ipv6/lib/libc/locale/xlocale_private.h - copied unchanged from r234412, head/lib/libc/locale/xlocale_private.h user/hrs/ipv6/lib/libc/mips/gen/getcontextx.c - copied unchanged from r234412, head/lib/libc/mips/gen/getcontextx.c user/hrs/ipv6/lib/libc/mips/string/strchr.S - copied unchanged from r234412, head/lib/libc/mips/string/strchr.S user/hrs/ipv6/lib/libc/mips/string/strrchr.S - copied unchanged from r234412, head/lib/libc/mips/string/strrchr.S user/hrs/ipv6/lib/libc/powerpc/gen/getcontextx.c - copied unchanged from r234412, head/lib/libc/powerpc/gen/getcontextx.c user/hrs/ipv6/lib/libc/powerpc64/gen/getcontextx.c - copied unchanged from r234412, head/lib/libc/powerpc64/gen/getcontextx.c user/hrs/ipv6/lib/libc/softfloat/eqtf2.c - copied unchanged from r234412, head/lib/libc/softfloat/eqtf2.c user/hrs/ipv6/lib/libc/softfloat/getf2.c - copied unchanged from r234412, head/lib/libc/softfloat/getf2.c user/hrs/ipv6/lib/libc/softfloat/gexf2.c - copied unchanged from r234412, head/lib/libc/softfloat/gexf2.c user/hrs/ipv6/lib/libc/softfloat/gttf2.c - copied unchanged from r234412, head/lib/libc/softfloat/gttf2.c user/hrs/ipv6/lib/libc/softfloat/gtxf2.c - copied unchanged from r234412, head/lib/libc/softfloat/gtxf2.c user/hrs/ipv6/lib/libc/softfloat/letf2.c - copied unchanged from r234412, head/lib/libc/softfloat/letf2.c user/hrs/ipv6/lib/libc/softfloat/lttf2.c - copied unchanged from r234412, head/lib/libc/softfloat/lttf2.c user/hrs/ipv6/lib/libc/softfloat/negtf2.c - copied unchanged from r234412, head/lib/libc/softfloat/negtf2.c user/hrs/ipv6/lib/libc/softfloat/negxf2.c - copied unchanged from r234412, head/lib/libc/softfloat/negxf2.c user/hrs/ipv6/lib/libc/softfloat/netf2.c - copied unchanged from r234412, head/lib/libc/softfloat/netf2.c user/hrs/ipv6/lib/libc/softfloat/nexf2.c - copied unchanged from r234412, head/lib/libc/softfloat/nexf2.c user/hrs/ipv6/lib/libc/sparc64/gen/getcontextx.c - copied unchanged from r234412, head/lib/libc/sparc64/gen/getcontextx.c user/hrs/ipv6/lib/libc/stdlib/at_quick_exit.3 - copied unchanged from r234412, head/lib/libc/stdlib/at_quick_exit.3 user/hrs/ipv6/lib/libc/stdlib/jemalloc/ - copied from r234412, head/lib/libc/stdlib/jemalloc/ user/hrs/ipv6/lib/libc/stdlib/quick_exit.3 - copied unchanged from r234412, head/lib/libc/stdlib/quick_exit.3 user/hrs/ipv6/lib/libc/stdlib/quick_exit.c - copied unchanged from r234412, head/lib/libc/stdlib/quick_exit.c user/hrs/ipv6/lib/libc/stdlib/reallocf.3 - copied unchanged from r234412, head/lib/libc/stdlib/reallocf.3 user/hrs/ipv6/lib/libc/sys/ffclock.2 - copied unchanged from r234412, head/lib/libc/sys/ffclock.2 user/hrs/ipv6/lib/libc/sys/posix_fadvise.2 - copied unchanged from r234412, head/lib/libc/sys/posix_fadvise.2 user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_add_4.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_add_4.c user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_add_8.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_add_8.c user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_and_4.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_and_4.c user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_and_8.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_and_8.c user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_op_n.h - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_op_n.h user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_or_4.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_or_4.c user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_or_8.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_or_8.c user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_sub_4.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_sub_4.c user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_sub_8.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_sub_8.c user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_xor_4.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_xor_4.c user/hrs/ipv6/lib/libcompiler_rt/__sync_fetch_and_xor_8.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_fetch_and_xor_8.c user/hrs/ipv6/lib/libcompiler_rt/__sync_lock_test_and_set_4.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_lock_test_and_set_4.c user/hrs/ipv6/lib/libcompiler_rt/__sync_lock_test_and_set_8.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_lock_test_and_set_8.c user/hrs/ipv6/lib/libcompiler_rt/__sync_val_compare_and_swap_4.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_val_compare_and_swap_4.c user/hrs/ipv6/lib/libcompiler_rt/__sync_val_compare_and_swap_8.c - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_val_compare_and_swap_8.c user/hrs/ipv6/lib/libcompiler_rt/__sync_val_compare_and_swap_n.h - copied unchanged from r234412, head/lib/libcompiler_rt/__sync_val_compare_and_swap_n.h user/hrs/ipv6/lib/libcxxrt/ - copied from r234412, head/lib/libcxxrt/ user/hrs/ipv6/lib/libpmc/pmc.mips24k.3 - copied unchanged from r234412, head/lib/libpmc/pmc.mips24k.3 user/hrs/ipv6/lib/libpmc/pmc.octeon.3 - copied unchanged from r234412, head/lib/libpmc/pmc.octeon.3 user/hrs/ipv6/lib/libpmc/pmc.sandybridge.3 - copied unchanged from r234412, head/lib/libpmc/pmc.sandybridge.3 user/hrs/ipv6/lib/libpmc/pmc.sandybridgeuc.3 - copied unchanged from r234412, head/lib/libpmc/pmc.sandybridgeuc.3 user/hrs/ipv6/lib/libpmc/pmc.soft.3 - copied unchanged from r234412, head/lib/libpmc/pmc.soft.3 user/hrs/ipv6/lib/libstdthreads/ - copied from r234412, head/lib/libstdthreads/ user/hrs/ipv6/lib/msun/man/ccos.3 - copied unchanged from r234412, head/lib/msun/man/ccos.3 user/hrs/ipv6/lib/msun/man/ccosh.3 - copied unchanged from r234412, head/lib/msun/man/ccosh.3 user/hrs/ipv6/lib/msun/src/fenv-softfloat.h - copied unchanged from r234412, head/lib/msun/src/fenv-softfloat.h user/hrs/ipv6/lib/msun/src/k_exp.c - copied unchanged from r234412, head/lib/msun/src/k_exp.c user/hrs/ipv6/lib/msun/src/k_expf.c - copied unchanged from r234412, head/lib/msun/src/k_expf.c user/hrs/ipv6/lib/msun/src/s_ccosh.c - copied unchanged from r234412, head/lib/msun/src/s_ccosh.c user/hrs/ipv6/lib/msun/src/s_ccoshf.c - copied unchanged from r234412, head/lib/msun/src/s_ccoshf.c user/hrs/ipv6/lib/msun/src/s_csinh.c - copied unchanged from r234412, head/lib/msun/src/s_csinh.c user/hrs/ipv6/lib/msun/src/s_csinhf.c - copied unchanged from r234412, head/lib/msun/src/s_csinhf.c user/hrs/ipv6/lib/msun/src/s_ctanh.c - copied unchanged from r234412, head/lib/msun/src/s_ctanh.c user/hrs/ipv6/lib/msun/src/s_ctanhf.c - copied unchanged from r234412, head/lib/msun/src/s_ctanhf.c user/hrs/ipv6/sbin/camcontrol/fwdownload.c - copied unchanged from r234412, head/sbin/camcontrol/fwdownload.c user/hrs/ipv6/sbin/ifconfig/carp.c - copied unchanged from r234412, head/sbin/ifconfig/carp.c user/hrs/ipv6/share/doc/llvm/ - copied from r234412, head/share/doc/llvm/ user/hrs/ipv6/share/examples/csh/ - copied from r234412, head/share/examples/csh/ user/hrs/ipv6/share/man/man3/ATOMIC_VAR_INIT.3 - copied unchanged from r234412, head/share/man/man3/ATOMIC_VAR_INIT.3 user/hrs/ipv6/share/man/man3/offsetof.3 - copied unchanged from r234412, head/share/man/man3/offsetof.3 user/hrs/ipv6/share/man/man4/apic.4 - copied unchanged from r234412, head/share/man/man4/apic.4 user/hrs/ipv6/share/man/man4/capsicum.4 - copied unchanged from r234412, head/share/man/man4/capsicum.4 user/hrs/ipv6/share/man/man4/eventtimers.4 - copied unchanged from r234412, head/share/man/man4/eventtimers.4 user/hrs/ipv6/share/man/man4/ffclock.4 - copied unchanged from r234412, head/share/man/man4/ffclock.4 user/hrs/ipv6/share/man/man4/hpt27xx.4 - copied unchanged from r234412, head/share/man/man4/hpt27xx.4 user/hrs/ipv6/share/man/man4/isci.4 - copied unchanged from r234412, head/share/man/man4/isci.4 user/hrs/ipv6/share/man/man4/man4.powerpc/abtn.4 - copied unchanged from r234412, head/share/man/man4/man4.powerpc/abtn.4 user/hrs/ipv6/share/man/man4/netmap.4 - copied unchanged from r234412, head/share/man/man4/netmap.4 user/hrs/ipv6/share/man/man4/oce.4 - copied unchanged from r234412, head/share/man/man4/oce.4 user/hrs/ipv6/share/man/man4/qlxgb.4 - copied unchanged from r234412, head/share/man/man4/qlxgb.4 user/hrs/ipv6/share/man/man4/sfxge.4 - copied unchanged from r234412, head/share/man/man4/sfxge.4 user/hrs/ipv6/share/man/man4/snd_hdspe.4 - copied unchanged from r234412, head/share/man/man4/snd_hdspe.4 user/hrs/ipv6/share/man/man4/timecounters.4 - copied unchanged from r234412, head/share/man/man4/timecounters.4 user/hrs/ipv6/share/man/man4/tws.4 - copied unchanged from r234412, head/share/man/man4/tws.4 user/hrs/ipv6/share/man/man4/viawd.4 - copied unchanged from r234412, head/share/man/man4/viawd.4 user/hrs/ipv6/share/man/man4/virtio.4 - copied unchanged from r234412, head/share/man/man4/virtio.4 user/hrs/ipv6/share/man/man4/virtio_balloon.4 - copied unchanged from r234412, head/share/man/man4/virtio_balloon.4 user/hrs/ipv6/share/man/man4/virtio_blk.4 - copied unchanged from r234412, head/share/man/man4/virtio_blk.4 user/hrs/ipv6/share/man/man4/vtnet.4 - copied unchanged from r234412, head/share/man/man4/vtnet.4 user/hrs/ipv6/share/man/man4/wbwd.4 - copied unchanged from r234412, head/share/man/man4/wbwd.4 user/hrs/ipv6/share/man/man4/xnb.4 - copied unchanged from r234412, head/share/man/man4/xnb.4 user/hrs/ipv6/share/man/man9/buf_ring.9 - copied unchanged from r234412, head/share/man/man9/buf_ring.9 user/hrs/ipv6/share/man/man9/drbr.9 - copied unchanged from r234412, head/share/man/man9/drbr.9 user/hrs/ipv6/share/man/man9/eventtimers.9 - copied unchanged from r234412, head/share/man/man9/eventtimers.9 user/hrs/ipv6/share/man/man9/memcchr.9 - copied unchanged from r234412, head/share/man/man9/memcchr.9 user/hrs/ipv6/share/man/man9/shm_map.9 - copied unchanged from r234412, head/share/man/man9/shm_map.9 user/hrs/ipv6/sys/amd64/amd64/ptrace_machdep.c - copied unchanged from r234412, head/sys/amd64/amd64/ptrace_machdep.c user/hrs/ipv6/sys/amd64/include/npx.h - copied unchanged from r234412, head/sys/amd64/include/npx.h user/hrs/ipv6/sys/arm/conf/GUMSTIX-QEMU - copied unchanged from r234412, head/sys/arm/conf/GUMSTIX-QEMU user/hrs/ipv6/sys/boot/fdt/dts/p1020rdb.dts - copied unchanged from r234412, head/sys/boot/fdt/dts/p1020rdb.dts user/hrs/ipv6/sys/boot/fdt/dts/p2020ds.dts - copied unchanged from r234412, head/sys/boot/fdt/dts/p2020ds.dts user/hrs/ipv6/sys/boot/fdt/dts/p3041ds.dts - copied unchanged from r234412, head/sys/boot/fdt/dts/p3041ds.dts user/hrs/ipv6/sys/boot/fdt/dts/xlp-basic.dts - copied unchanged from r234412, head/sys/boot/fdt/dts/xlp-basic.dts user/hrs/ipv6/sys/boot/i386/common/edd.h - copied unchanged from r234412, head/sys/boot/i386/common/edd.h user/hrs/ipv6/sys/cam/ctl/ - copied from r234412, head/sys/cam/ctl/ user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/mips/ - copied from r234412, head/sys/cddl/contrib/opensolaris/uts/mips/ user/hrs/ipv6/sys/cddl/dev/dtrace/mips/ - copied from r234412, head/sys/cddl/dev/dtrace/mips/ user/hrs/ipv6/sys/conf/WITHOUT_SOURCELESS - copied unchanged from r234412, head/sys/conf/WITHOUT_SOURCELESS user/hrs/ipv6/sys/conf/WITHOUT_SOURCELESS_HOST - copied unchanged from r234412, head/sys/conf/WITHOUT_SOURCELESS_HOST user/hrs/ipv6/sys/conf/WITHOUT_SOURCELESS_UCODE - copied unchanged from r234412, head/sys/conf/WITHOUT_SOURCELESS_UCODE user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslrestype2s.c - copied unchanged from r234412, head/sys/contrib/dev/acpica/compiler/aslrestype2s.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/preprocess.h - copied unchanged from r234412, head/sys/contrib/dev/acpica/compiler/preprocess.h user/hrs/ipv6/sys/contrib/dev/acpica/compiler/prexpress.c - copied unchanged from r234412, head/sys/contrib/dev/acpica/compiler/prexpress.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/prmacros.c - copied unchanged from r234412, head/sys/contrib/dev/acpica/compiler/prmacros.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/prparser.l - copied unchanged from r234412, head/sys/contrib/dev/acpica/compiler/prparser.l user/hrs/ipv6/sys/contrib/dev/acpica/compiler/prparser.y - copied unchanged from r234412, head/sys/contrib/dev/acpica/compiler/prparser.y user/hrs/ipv6/sys/contrib/dev/acpica/compiler/prscan.c - copied unchanged from r234412, head/sys/contrib/dev/acpica/compiler/prscan.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/prutils.c - copied unchanged from r234412, head/sys/contrib/dev/acpica/compiler/prutils.c user/hrs/ipv6/sys/contrib/dev/acpica/components/ - copied from r234412, head/sys/contrib/dev/acpica/components/ user/hrs/ipv6/sys/contrib/dev/acpica/include/actbl3.h - copied unchanged from r234412, head/sys/contrib/dev/acpica/include/actbl3.h - copied from r234412, head/sys/contrib/dev/acpica/os_specific/ user/hrs/ipv6/sys/contrib/dev/ral/microcode.h - copied unchanged from r234412, head/sys/contrib/dev/ral/microcode.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ciu2-defs.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-ciu2-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-endor-defs.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-endor-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-eoi-defs.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-eoi-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-cfg.c - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-helper-cfg.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-cfg.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-helper-cfg.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-ilk.c - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-helper-ilk.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-ilk.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-helper-ilk.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-hfa.c - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-hfa.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-hfa.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-hfa.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ilk-defs.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-ilk-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ilk.c - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-ilk.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ilk.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-ilk.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-iob1-defs.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-iob1-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ipd.c - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-ipd.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-malloc/ - copied from r234412, head/sys/contrib/octeon-sdk/cvmx-malloc/ user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-profiler.c - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-profiler.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-profiler.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-profiler.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-qlm-tables.c - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-qlm-tables.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-qlm.c - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-qlm.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-qlm.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-qlm.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-resources.config - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-resources.config user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-shared-linux-n32.ld - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-shared-linux-n32.ld user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-shared-linux-o32.ld - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-shared-linux-o32.ld user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-shared-linux.ld - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-shared-linux.ld user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-sso-defs.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-sso-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-trax-defs.h - copied unchanged from r234412, head/sys/contrib/octeon-sdk/cvmx-trax-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/octeon-feature.c - copied unchanged from r234412, head/sys/contrib/octeon-sdk/octeon-feature.c user/hrs/ipv6/sys/contrib/xz-embedded/ - copied from r234412, head/sys/contrib/xz-embedded/ user/hrs/ipv6/sys/dev/adb/adb_buttons.c - copied unchanged from r234412, head/sys/dev/adb/adb_buttons.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_radar.c - copied unchanged from r234412, head/sys/dev/ath/ath_hal/ar5416/ar5416_radar.c user/hrs/ipv6/sys/dev/ath/if_ath_led.c - copied unchanged from r234412, head/sys/dev/ath/if_ath_led.c user/hrs/ipv6/sys/dev/ath/if_ath_led.h - copied unchanged from r234412, head/sys/dev/ath/if_ath_led.h user/hrs/ipv6/sys/dev/cesa/ - copied from r234412, head/sys/dev/cesa/ user/hrs/ipv6/sys/dev/cxgbe/firmware/ - copied from r234412, head/sys/dev/cxgbe/firmware/ user/hrs/ipv6/sys/dev/esp/am53c974reg.h - copied unchanged from r234412, head/sys/dev/esp/am53c974reg.h user/hrs/ipv6/sys/dev/esp/esp_pci.c - copied unchanged from r234412, head/sys/dev/esp/esp_pci.c user/hrs/ipv6/sys/dev/fb/splash_txt.c - copied unchanged from r234412, head/sys/dev/fb/splash_txt.c user/hrs/ipv6/sys/dev/fdt/fdt_mips.c - copied unchanged from r234412, head/sys/dev/fdt/fdt_mips.c user/hrs/ipv6/sys/dev/fxp/inphy.c - copied unchanged from r234412, head/sys/dev/fxp/inphy.c user/hrs/ipv6/sys/dev/fxp/inphyreg.h - copied unchanged from r234412, head/sys/dev/fxp/inphyreg.h user/hrs/ipv6/sys/dev/hpt27xx/ - copied from r234412, head/sys/dev/hpt27xx/ user/hrs/ipv6/sys/dev/hwpmc/hwpmc_octeon.c - copied unchanged from r234412, head/sys/dev/hwpmc/hwpmc_octeon.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_soft.c - copied unchanged from r234412, head/sys/dev/hwpmc/hwpmc_soft.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_soft.h - copied unchanged from r234412, head/sys/dev/hwpmc/hwpmc_soft.h user/hrs/ipv6/sys/dev/iicbus/ds1374.c - copied unchanged from r234412, head/sys/dev/iicbus/ds1374.c user/hrs/ipv6/sys/dev/iicbus/iicoc.c - copied unchanged from r234412, head/sys/dev/iicbus/iicoc.c user/hrs/ipv6/sys/dev/iicbus/iicoc.h - copied unchanged from r234412, head/sys/dev/iicbus/iicoc.h user/hrs/ipv6/sys/dev/iicbus/pcf8563.c - copied unchanged from r234412, head/sys/dev/iicbus/pcf8563.c user/hrs/ipv6/sys/dev/iicbus/pcf8563reg.h - copied unchanged from r234412, head/sys/dev/iicbus/pcf8563reg.h user/hrs/ipv6/sys/dev/isci/ - copied from r234412, head/sys/dev/isci/ user/hrs/ipv6/sys/dev/ixgbe/ixgbe_82598.h - copied unchanged from r234412, head/sys/dev/ixgbe/ixgbe_82598.h user/hrs/ipv6/sys/dev/ixgbe/ixgbe_82599.h - copied unchanged from r234412, head/sys/dev/ixgbe/ixgbe_82599.h user/hrs/ipv6/sys/dev/ixgbe/ixgbe_x540.c - copied unchanged from r234412, head/sys/dev/ixgbe/ixgbe_x540.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe_x540.h - copied unchanged from r234412, head/sys/dev/ixgbe/ixgbe_x540.h user/hrs/ipv6/sys/dev/mfi/mfi_syspd.c - copied unchanged from r234412, head/sys/dev/mfi/mfi_syspd.c user/hrs/ipv6/sys/dev/mfi/mfi_tbolt.c - copied unchanged from r234412, head/sys/dev/mfi/mfi_tbolt.c user/hrs/ipv6/sys/dev/mii/mii_bitbang.c - copied unchanged from r234412, head/sys/dev/mii/mii_bitbang.c user/hrs/ipv6/sys/dev/mii/mii_bitbang.h - copied unchanged from r234412, head/sys/dev/mii/mii_bitbang.h user/hrs/ipv6/sys/dev/mps/mps_config.c - copied unchanged from r234412, head/sys/dev/mps/mps_config.c user/hrs/ipv6/sys/dev/mps/mps_mapping.c - copied unchanged from r234412, head/sys/dev/mps/mps_mapping.c user/hrs/ipv6/sys/dev/mps/mps_mapping.h - copied unchanged from r234412, head/sys/dev/mps/mps_mapping.h user/hrs/ipv6/sys/dev/mps/mps_sas.h - copied unchanged from r234412, head/sys/dev/mps/mps_sas.h user/hrs/ipv6/sys/dev/mps/mps_sas_lsi.c - copied unchanged from r234412, head/sys/dev/mps/mps_sas_lsi.c user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_log_fc.h - copied unchanged from r234412, head/sys/dev/mpt/mpilib/mpi_log_fc.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_log_sas.h - copied unchanged from r234412, head/sys/dev/mpt/mpilib/mpi_log_sas.h user/hrs/ipv6/sys/dev/netmap/ - copied from r234412, head/sys/dev/netmap/ user/hrs/ipv6/sys/dev/oce/ - copied from r234412, head/sys/dev/oce/ user/hrs/ipv6/sys/dev/qlxgb/ - copied from r234412, head/sys/dev/qlxgb/ user/hrs/ipv6/sys/dev/sfxge/ - copied from r234412, head/sys/dev/sfxge/ user/hrs/ipv6/sys/dev/sound/pci/allegro_code.h - copied unchanged from r234412, head/sys/dev/sound/pci/allegro_code.h user/hrs/ipv6/sys/dev/sound/pci/allegro_reg.h - copied unchanged from r234412, head/sys/dev/sound/pci/allegro_reg.h user/hrs/ipv6/sys/dev/sound/pci/cs461x_dsp.h - copied unchanged from r234412, head/sys/dev/sound/pci/cs461x_dsp.h user/hrs/ipv6/sys/dev/sound/pci/emuxkireg.h - copied unchanged from r234412, head/sys/dev/sound/pci/emuxkireg.h user/hrs/ipv6/sys/dev/sound/pci/hda/hdaa.c - copied unchanged from r234412, head/sys/dev/sound/pci/hda/hdaa.c user/hrs/ipv6/sys/dev/sound/pci/hda/hdaa.h - copied unchanged from r234412, head/sys/dev/sound/pci/hda/hdaa.h user/hrs/ipv6/sys/dev/sound/pci/hda/hdaa_patches.c - copied unchanged from r234412, head/sys/dev/sound/pci/hda/hdaa_patches.c user/hrs/ipv6/sys/dev/sound/pci/hda/hdac_if.m - copied unchanged from r234412, head/sys/dev/sound/pci/hda/hdac_if.m user/hrs/ipv6/sys/dev/sound/pci/hda/hdacc.c - copied unchanged from r234412, head/sys/dev/sound/pci/hda/hdacc.c user/hrs/ipv6/sys/dev/sound/pci/hdspe-pcm.c - copied unchanged from r234412, head/sys/dev/sound/pci/hdspe-pcm.c user/hrs/ipv6/sys/dev/sound/pci/hdspe.c - copied unchanged from r234412, head/sys/dev/sound/pci/hdspe.c user/hrs/ipv6/sys/dev/sound/pci/hdspe.h - copied unchanged from r234412, head/sys/dev/sound/pci/hdspe.h user/hrs/ipv6/sys/dev/tws/ - copied from r234412, head/sys/dev/tws/ user/hrs/ipv6/sys/dev/uart/uart_cpu_x86.c - copied unchanged from r234412, head/sys/dev/uart/uart_cpu_x86.c user/hrs/ipv6/sys/dev/usb/controller/dwc_otg.c - copied unchanged from r234412, head/sys/dev/usb/controller/dwc_otg.c user/hrs/ipv6/sys/dev/usb/controller/dwc_otg.h - copied unchanged from r234412, head/sys/dev/usb/controller/dwc_otg.h user/hrs/ipv6/sys/dev/usb/controller/dwc_otg_atmelarm.c - copied unchanged from r234412, head/sys/dev/usb/controller/dwc_otg_atmelarm.c user/hrs/ipv6/sys/dev/usb/net/ruephy.c - copied unchanged from r234412, head/sys/dev/usb/net/ruephy.c user/hrs/ipv6/sys/dev/usb/net/ruephyreg.h - copied unchanged from r234412, head/sys/dev/usb/net/ruephyreg.h user/hrs/ipv6/sys/dev/viawd/ - copied from r234412, head/sys/dev/viawd/ user/hrs/ipv6/sys/dev/virtio/ - copied from r234412, head/sys/dev/virtio/ user/hrs/ipv6/sys/dev/wbwd/ - copied from r234412, head/sys/dev/wbwd/ user/hrs/ipv6/sys/dev/wtap/ - copied from r234412, head/sys/dev/wtap/ user/hrs/ipv6/sys/dev/xen/netback/netback_unit_tests.c - copied unchanged from r234412, head/sys/dev/xen/netback/netback_unit_tests.c user/hrs/ipv6/sys/dev/xl/xlphy.c - copied unchanged from r234412, head/sys/dev/xl/xlphy.c user/hrs/ipv6/sys/geom/part/g_part_ldm.c - copied unchanged from r234412, head/sys/geom/part/g_part_ldm.c user/hrs/ipv6/sys/geom/uncompress/ - copied from r234412, head/sys/geom/uncompress/ - copied unchanged from r234412, head/sys/i386/conf/XENHVM user/hrs/ipv6/sys/kern/kern_ffclock.c - copied unchanged from r234412, head/sys/kern/kern_ffclock.c user/hrs/ipv6/sys/kern/subr_syscall.c - copied, changed from r225522, head/sys/kern/subr_syscall.c user/hrs/ipv6/sys/libkern/iconv_ucs.c - copied unchanged from r234412, head/sys/libkern/iconv_ucs.c user/hrs/ipv6/sys/libkern/memcchr.c - copied unchanged from r234412, head/sys/libkern/memcchr.c user/hrs/ipv6/sys/libkern/strchr.c - copied unchanged from r234412, head/sys/libkern/strchr.c user/hrs/ipv6/sys/libkern/strnlen.c - copied unchanged from r234412, head/sys/libkern/strnlen.c user/hrs/ipv6/sys/libkern/strrchr.c - copied unchanged from r234412, head/sys/libkern/strrchr.c user/hrs/ipv6/sys/mips/cavium/octeon_cop2.S - copied unchanged from r234412, head/sys/mips/cavium/octeon_cop2.S user/hrs/ipv6/sys/mips/cavium/octeon_cop2.h - copied unchanged from r234412, head/sys/mips/cavium/octeon_cop2.h user/hrs/ipv6/sys/mips/cavium/octeon_gpio.c - copied unchanged from r234412, head/sys/mips/cavium/octeon_gpio.c user/hrs/ipv6/sys/mips/cavium/octeon_gpiovar.h - copied unchanged from r234412, head/sys/mips/cavium/octeon_gpiovar.h user/hrs/ipv6/sys/mips/cavium/octeon_irq.h - copied unchanged from r234412, head/sys/mips/cavium/octeon_irq.h user/hrs/ipv6/sys/mips/cavium/octeon_pmc.c - copied unchanged from r234412, head/sys/mips/cavium/octeon_pmc.c user/hrs/ipv6/sys/mips/conf/AP94 - copied unchanged from r234412, head/sys/mips/conf/AP94 user/hrs/ipv6/sys/mips/conf/AP94.hints - copied unchanged from r234412, head/sys/mips/conf/AP94.hints user/hrs/ipv6/sys/mips/conf/AP96 - copied unchanged from r234412, head/sys/mips/conf/AP96 user/hrs/ipv6/sys/mips/conf/AP96.hints - copied unchanged from r234412, head/sys/mips/conf/AP96.hints user/hrs/ipv6/sys/mips/conf/AR71XX_BASE - copied unchanged from r234412, head/sys/mips/conf/AR71XX_BASE user/hrs/ipv6/sys/mips/conf/AR71XX_BASE.hints - copied unchanged from r234412, head/sys/mips/conf/AR71XX_BASE.hints user/hrs/ipv6/sys/mips/conf/PB47 - copied unchanged from r234412, head/sys/mips/conf/PB47 user/hrs/ipv6/sys/mips/conf/PB47.hints - copied unchanged from r234412, head/sys/mips/conf/PB47.hints user/hrs/ipv6/sys/mips/conf/ROUTERSTATION - copied unchanged from r234412, head/sys/mips/conf/ROUTERSTATION user/hrs/ipv6/sys/mips/conf/ROUTERSTATION.hints - copied unchanged from r234412, head/sys/mips/conf/ROUTERSTATION.hints user/hrs/ipv6/sys/mips/conf/ROUTERSTATION_MFS - copied unchanged from r234412, head/sys/mips/conf/ROUTERSTATION_MFS user/hrs/ipv6/sys/mips/conf/RSPRO - copied unchanged from r234412, head/sys/mips/conf/RSPRO user/hrs/ipv6/sys/mips/conf/RSPRO.hints - copied unchanged from r234412, head/sys/mips/conf/RSPRO.hints user/hrs/ipv6/sys/mips/conf/RSPRO_MFS - copied unchanged from r234412, head/sys/mips/conf/RSPRO_MFS user/hrs/ipv6/sys/mips/conf/RSPRO_STANDALONE - copied unchanged from r234412, head/sys/mips/conf/RSPRO_STANDALONE user/hrs/ipv6/sys/mips/conf/XLP.hints - copied unchanged from r234412, head/sys/mips/conf/XLP.hints user/hrs/ipv6/sys/mips/conf/std.XLP - copied unchanged from r234412, head/sys/mips/conf/std.XLP user/hrs/ipv6/sys/mips/include/fdt.h - copied unchanged from r234412, head/sys/mips/include/fdt.h user/hrs/ipv6/sys/mips/include/octeon_cop2.h - copied unchanged from r234412, head/sys/mips/include/octeon_cop2.h user/hrs/ipv6/sys/mips/include/ofw_machdep.h - copied unchanged from r234412, head/sys/mips/include/ofw_machdep.h user/hrs/ipv6/sys/mips/include/tls.h - copied unchanged from r234412, head/sys/mips/include/tls.h user/hrs/ipv6/sys/mips/mips/freebsd32_machdep.c - copied unchanged from r234412, head/sys/mips/mips/freebsd32_machdep.c user/hrs/ipv6/sys/mips/mips/libkern_machdep.c - copied unchanged from r234412, head/sys/mips/mips/libkern_machdep.c user/hrs/ipv6/sys/mips/mips/octeon_cop2.c - copied unchanged from r234412, head/sys/mips/mips/octeon_cop2.c user/hrs/ipv6/sys/mips/mips/octeon_cop2_swtch.S - copied unchanged from r234412, head/sys/mips/mips/octeon_cop2_swtch.S user/hrs/ipv6/sys/mips/nlm/board_cpld.c - copied unchanged from r234412, head/sys/mips/nlm/board_cpld.c user/hrs/ipv6/sys/mips/nlm/board_eeprom.c - copied unchanged from r234412, head/sys/mips/nlm/board_eeprom.c user/hrs/ipv6/sys/mips/nlm/dev/ - copied from r234412, head/sys/mips/nlm/dev/ user/hrs/ipv6/sys/mips/nlm/hal/gbu.h - copied unchanged from r234412, head/sys/mips/nlm/hal/gbu.h user/hrs/ipv6/sys/mips/nlm/hal/interlaken.h - copied unchanged from r234412, head/sys/mips/nlm/hal/interlaken.h user/hrs/ipv6/sys/mips/nlm/hal/mdio.h - copied unchanged from r234412, head/sys/mips/nlm/hal/mdio.h user/hrs/ipv6/sys/mips/nlm/hal/nae.h - copied unchanged from r234412, head/sys/mips/nlm/hal/nae.h user/hrs/ipv6/sys/mips/nlm/hal/nlm_hal.c - copied unchanged from r234412, head/sys/mips/nlm/hal/nlm_hal.c user/hrs/ipv6/sys/mips/nlm/hal/nlmsaelib.h - copied unchanged from r234412, head/sys/mips/nlm/hal/nlmsaelib.h user/hrs/ipv6/sys/mips/nlm/hal/poe.h - copied unchanged from r234412, head/sys/mips/nlm/hal/poe.h user/hrs/ipv6/sys/mips/nlm/hal/sgmii.h - copied unchanged from r234412, head/sys/mips/nlm/hal/sgmii.h user/hrs/ipv6/sys/mips/nlm/hal/ucore_loader.h - copied unchanged from r234412, head/sys/mips/nlm/hal/ucore_loader.h user/hrs/ipv6/sys/mips/nlm/hal/xaui.h - copied unchanged from r234412, head/sys/mips/nlm/hal/xaui.h user/hrs/ipv6/sys/modules/acl_nfs4/ - copied from r234412, head/sys/modules/acl_nfs4/ user/hrs/ipv6/sys/modules/acl_posix1e/ - copied from r234412, head/sys/modules/acl_posix1e/ user/hrs/ipv6/sys/modules/ar71xx/ - copied from r234412, head/sys/modules/ar71xx/ user/hrs/ipv6/sys/modules/carp/ - copied from r234412, head/sys/modules/carp/ user/hrs/ipv6/sys/modules/cfi/ - copied from r234412, head/sys/modules/cfi/ user/hrs/ipv6/sys/modules/cxgbe/firmware/ - copied from r234412, head/sys/modules/cxgbe/firmware/ user/hrs/ipv6/sys/modules/geom/geom_part/geom_part_ldm/ - copied from r234412, head/sys/modules/geom/geom_part/geom_part_ldm/ user/hrs/ipv6/sys/modules/geom/geom_uncompress/ - copied from r234412, head/sys/modules/geom/geom_uncompress/ user/hrs/ipv6/sys/modules/gpio/ - copied from r234412, head/sys/modules/gpio/ user/hrs/ipv6/sys/modules/hpt27xx/ - copied from r234412, head/sys/modules/hpt27xx/ user/hrs/ipv6/sys/modules/isci/ - copied from r234412, head/sys/modules/isci/ user/hrs/ipv6/sys/modules/oce/ - copied from r234412, head/sys/modules/oce/ user/hrs/ipv6/sys/modules/qlxgb/ - copied from r234412, head/sys/modules/qlxgb/ user/hrs/ipv6/sys/modules/ralfw/rt2860/ - copied from r234412, head/sys/modules/ralfw/rt2860/ user/hrs/ipv6/sys/modules/sfxge/ - copied from r234412, head/sys/modules/sfxge/ user/hrs/ipv6/sys/modules/sound/driver/hdspe/ - copied from r234412, head/sys/modules/sound/driver/hdspe/ user/hrs/ipv6/sys/modules/splash/txt/ - copied from r234412, head/sys/modules/splash/txt/ user/hrs/ipv6/sys/modules/tws/ - copied from r234412, head/sys/modules/tws/ user/hrs/ipv6/sys/modules/usb/avr32dci/ - copied from r234412, head/sys/modules/usb/avr32dci/ user/hrs/ipv6/sys/modules/usb/dwc_otg/ - copied from r234412, head/sys/modules/usb/dwc_otg/ user/hrs/ipv6/sys/modules/viawd/ - copied from r234412, head/sys/modules/viawd/ user/hrs/ipv6/sys/modules/virtio/ - copied from r234412, head/sys/modules/virtio/ user/hrs/ipv6/sys/modules/wbwd/ - copied from r234412, head/sys/modules/wbwd/ user/hrs/ipv6/sys/modules/wtap/ - copied from r234412, head/sys/modules/wtap/ user/hrs/ipv6/sys/net/netmap.h - copied unchanged from r234412, head/sys/net/netmap.h user/hrs/ipv6/sys/net/netmap_user.h - copied unchanged from r234412, head/sys/net/netmap_user.h user/hrs/ipv6/sys/powerpc/ofw/ofw_pci.c - copied unchanged from r234412, head/sys/powerpc/ofw/ofw_pci.c user/hrs/ipv6/sys/powerpc/ofw/ofw_pci.h - copied unchanged from r234412, head/sys/powerpc/ofw/ofw_pci.h user/hrs/ipv6/sys/powerpc/powermac/atibl.c - copied unchanged from r234412, head/sys/powerpc/powermac/atibl.c user/hrs/ipv6/sys/sparc64/sparc64/cam_machdep.c - copied unchanged from r234412, head/sys/sparc64/sparc64/cam_machdep.c user/hrs/ipv6/sys/sys/_ffcounter.h - copied unchanged from r234412, head/sys/sys/_ffcounter.h user/hrs/ipv6/sys/sys/_kstack_cache.h - copied unchanged from r234412, head/sys/sys/_kstack_cache.h user/hrs/ipv6/sys/sys/timeffc.h - copied unchanged from r234412, head/sys/sys/timeffc.h user/hrs/ipv6/sys/x86/include/_limits.h - copied unchanged from r234412, head/sys/x86/include/_limits.h user/hrs/ipv6/sys/x86/include/_stdint.h - copied unchanged from r234412, head/sys/x86/include/_stdint.h user/hrs/ipv6/sys/x86/include/_types.h - copied unchanged from r234412, head/sys/x86/include/_types.h user/hrs/ipv6/sys/x86/include/endian.h - copied unchanged from r234412, head/sys/x86/include/endian.h user/hrs/ipv6/sys/x86/include/float.h - copied unchanged from r234412, head/sys/x86/include/float.h user/hrs/ipv6/sys/x86/include/fpu.h - copied unchanged from r234412, head/sys/x86/include/fpu.h user/hrs/ipv6/sys/x86/include/legacyvar.h - copied unchanged from r234412, head/sys/x86/include/legacyvar.h user/hrs/ipv6/sys/x86/include/psl.h - copied unchanged from r234412, head/sys/x86/include/psl.h user/hrs/ipv6/sys/x86/include/ptrace.h - copied unchanged from r234412, head/sys/x86/include/ptrace.h user/hrs/ipv6/sys/x86/include/reg.h - copied unchanged from r234412, head/sys/x86/include/reg.h user/hrs/ipv6/sys/x86/include/segments.h - copied unchanged from r234412, head/sys/x86/include/segments.h user/hrs/ipv6/sys/x86/include/setjmp.h - copied unchanged from r234412, head/sys/x86/include/setjmp.h user/hrs/ipv6/sys/x86/include/specialreg.h - copied unchanged from r234412, head/sys/x86/include/specialreg.h user/hrs/ipv6/sys/x86/include/stdarg.h - copied unchanged from r234412, head/sys/x86/include/stdarg.h user/hrs/ipv6/sys/x86/include/sysarch.h - copied unchanged from r234412, head/sys/x86/include/sysarch.h user/hrs/ipv6/sys/x86/include/trap.h - copied unchanged from r234412, head/sys/x86/include/trap.h user/hrs/ipv6/sys/x86/x86/intr_machdep.c - copied unchanged from r234412, head/sys/x86/x86/intr_machdep.c user/hrs/ipv6/sys/x86/x86/legacy.c - copied unchanged from r234412, head/sys/x86/x86/legacy.c user/hrs/ipv6/tools/bsdbox/ - copied from r234412, head/tools/bsdbox/ user/hrs/ipv6/tools/build/options/WITHOUT_CAPSICUM - copied unchanged from r234412, head/tools/build/options/WITHOUT_CAPSICUM user/hrs/ipv6/tools/build/options/WITHOUT_SOURCELESS - copied unchanged from r234412, head/tools/build/options/WITHOUT_SOURCELESS user/hrs/ipv6/tools/build/options/WITHOUT_SOURCELESS_HOST - copied unchanged from r234412, head/tools/build/options/WITHOUT_SOURCELESS_HOST user/hrs/ipv6/tools/build/options/WITHOUT_SOURCELESS_UCODE - copied unchanged from r234412, head/tools/build/options/WITHOUT_SOURCELESS_UCODE user/hrs/ipv6/tools/build/options/WITH_CLANG_EXTRAS - copied unchanged from r234412, head/tools/build/options/WITH_CLANG_EXTRAS user/hrs/ipv6/tools/build/options/WITH_CLANG_IS_CC - copied unchanged from r234412, head/tools/build/options/WITH_CLANG_IS_CC user/hrs/ipv6/tools/build/options/WITH_CTF - copied unchanged from r234412, head/tools/build/options/WITH_CTF user/hrs/ipv6/tools/build/options/WITH_LIBCPLUSPLUS - copied unchanged from r234412, head/tools/build/options/WITH_LIBCPLUSPLUS user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_aac - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_aac user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_acpi_support - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_acpi_support user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_acpica - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_acpica user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_adb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_adb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_adlink - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_adlink user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_advansys - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_advansys user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ae - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ae user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_age - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_age user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_agp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_agp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_aha - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_aha user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ahb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ahb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ahci - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ahci user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_aic - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_aic user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_aic7xxx - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_aic7xxx user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_alc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_alc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ale - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ale user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_amdsbwd - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_amdsbwd user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_amdtemp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_amdtemp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_amr - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_amr user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_an - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_an user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_arcmsr - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_arcmsr user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_asmc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_asmc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_asr - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_asr user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ata - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ata user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ath - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ath user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_atkbdc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_atkbdc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_auxio - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_auxio user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_bce - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_bce user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_bfe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_bfe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_bge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_bge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_bktr - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_bktr user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_bm - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_bm user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_buslogic - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_buslogic user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_bwi - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_bwi user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_bwn - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_bwn user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_bxe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_bxe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cardbus - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cardbus user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cas - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cas user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ce - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ce user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cesa - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cesa user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cfe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cfe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cfi - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cfi user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ciss - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ciss user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cm - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cm user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cmx - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cmx user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_coretemp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_coretemp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cpuctl - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cpuctl user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cpufreq - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cpufreq user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cs - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cs user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ct - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ct user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ctau - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ctau user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cx - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cx user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cxgb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cxgb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cxgbe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cxgbe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_cy - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_cy user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_dc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_dc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_dcons - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_dcons user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_de - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_de user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_digi - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_digi user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_dpms - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_dpms user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_dpt - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_dpt user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_drm - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_drm user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_e1000 - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_e1000 user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ed - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ed user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_eisa - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_eisa user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_en - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_en user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ep - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ep user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_esp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_esp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_et - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_et user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ex - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ex user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_exca - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_exca user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_fatm - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_fatm user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_fb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_fb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_fdc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_fdc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_fdt - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_fdt user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_fe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_fe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_firewire - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_firewire user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_flash - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_flash user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_fxp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_fxp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_gem - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_gem user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_glxiic - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_glxiic user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_glxsb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_glxsb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_gpio - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_gpio user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_hatm - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_hatm user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_hifn - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_hifn user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_hme - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_hme user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_hpt27xx - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_hpt27xx user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_hptiop - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_hptiop user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_hptmv - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_hptmv user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_hptrr - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_hptrr user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_hwpmc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_hwpmc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ic - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ic user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ichsmb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ichsmb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ichwd - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ichwd user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ida - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ida user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ie - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ie user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ieee488 - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ieee488 user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_if_ndis - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_if_ndis user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_iicbus - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_iicbus user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_iir - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_iir user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_io - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_io user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ipmi - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ipmi user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ips - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ips user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ipw - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ipw user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_iscsi - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_iscsi user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_isp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_isp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ispfw - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ispfw user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_iwi - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_iwi user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_iwn - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_iwn user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ixgb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ixgb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ixgbe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ixgbe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_jme - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_jme user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_joy - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_joy user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_kbd - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_kbd user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_kbdmux - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_kbdmux user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ksyms - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ksyms user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_le - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_le user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_led - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_led user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_lge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_lge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_lindev - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_lindev user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_lmc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_lmc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_malo - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_malo user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mc146818 - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mc146818 user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mca - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mca user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mcd - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mcd user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_md - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_md user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mem - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mem user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mfi - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mfi user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mii - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mii user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mk48txx - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mk48txx user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mlx - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mlx user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mly - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mly user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mmc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mmc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mn - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mn user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mps - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mps user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mpt - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mpt user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mse - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mse user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_msk - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_msk user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mvs - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mvs user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mwl - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mwl user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_mxge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_mxge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_my - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_my user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ncv - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ncv user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_netmap - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_netmap user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_nfe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_nfe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_nge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_nge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_nmdm - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_nmdm user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_nsp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_nsp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_null - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_null user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_nve - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_nve user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_nvram - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_nvram user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_nvram2env - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_nvram2env user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_nxge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_nxge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ofw - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ofw user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_patm - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_patm user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_pbio - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_pbio user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_pccard - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_pccard user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_pccbb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_pccbb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_pcf - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_pcf user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_pcn - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_pcn user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_pdq - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_pdq user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_powermac_nvram - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_powermac_nvram user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ppbus - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ppbus user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ppc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ppc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_pst - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_pst user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_pty - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_pty user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_puc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_puc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_qlxgb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_qlxgb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_quicc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_quicc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ral - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ral user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_random - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_random user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_rc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_rc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_re - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_re user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_rndtest - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_rndtest user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_rp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_rp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_rt - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_rt user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_safe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_safe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sbni - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sbni user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_scc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_scc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_scd - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_scd user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sdhci - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sdhci user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sec - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sec user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sf - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sf user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sfxge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sfxge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_si - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_si user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_siba - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_siba user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_siis - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_siis user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sio - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sio user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sis - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sis user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sk - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sk user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_smbus - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_smbus user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_smc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_smc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sn - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sn user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_snc - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_snc user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_snp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_snp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_speaker - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_speaker user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_spibus - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_spibus user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ste - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ste user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_stg - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_stg user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_stge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_stge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_streams - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_streams user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sym - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_sym user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_syscons - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_syscons user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_tdfx - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_tdfx user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ti - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ti user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_tl - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_tl user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_tpm - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_tpm user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_trm - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_trm user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_tsec - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_tsec user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_twa - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_twa user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_twe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_twe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_tws - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_tws user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_tx - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_tx user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_txp - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_txp user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_uart - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_uart user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_ubsec - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_ubsec user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_utopia - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_utopia user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_vge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_vge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_viawd - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_viawd user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_virtio - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_virtio user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_vkbd - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_vkbd user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_vr - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_vr user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_vte - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_vte user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_vx - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_vx user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_vxge - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_vxge user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_watchdog - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_watchdog user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_wb - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_wb user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_wds - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_wds user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_wi - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_wi user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_wl - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_wl user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_wpi - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_wpi user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_wtap - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_wtap user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_xe - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_xe user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_xen - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_xen user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_xl - copied unchanged from r234412, head/tools/kerneldoc/subsys/Doxyfile-dev_xl user/hrs/ipv6/tools/regression/bin/sh/builtins/case11.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/case11.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/case12.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/case12.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/case13.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/case13.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/case14.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/case14.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/case15.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/case15.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/case16.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/case16.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/case17.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/case17.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/case18.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/case18.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/case19.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/case19.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/cd8.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/cd8.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/for1.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/for1.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/for2.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/for2.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/for3.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/for3.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/hash4.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/hash4.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/trap10.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/trap10.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/trap11.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/trap11.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/trap9.0 - copied unchanged from r234412, head/tools/regression/bin/sh/builtins/trap9.0 user/hrs/ipv6/tools/regression/bin/sh/expansion/arith12.0 - copied unchanged from r234412, head/tools/regression/bin/sh/expansion/arith12.0 user/hrs/ipv6/tools/regression/bin/sh/expansion/cmdsubst12.0 - copied unchanged from r234412, head/tools/regression/bin/sh/expansion/cmdsubst12.0 user/hrs/ipv6/tools/regression/bin/sh/expansion/cmdsubst13.0 - copied unchanged from r234412, head/tools/regression/bin/sh/expansion/cmdsubst13.0 user/hrs/ipv6/tools/regression/bin/sh/parameters/optind1.0 - copied unchanged from r234412, head/tools/regression/bin/sh/parameters/optind1.0 user/hrs/ipv6/tools/regression/bin/sh/parameters/positional2.0 - copied unchanged from r234412, head/tools/regression/bin/sh/parameters/positional2.0 user/hrs/ipv6/tools/regression/lib/libc/gen/test-arc4random.c - copied unchanged from r234412, head/tools/regression/lib/libc/gen/test-arc4random.c user/hrs/ipv6/tools/regression/lib/libc/gen/test-fmtmsg.c - copied unchanged from r234412, head/tools/regression/lib/libc/gen/test-fmtmsg.c user/hrs/ipv6/tools/regression/lib/libc/stdio/test-getdelim.t - copied unchanged from r234412, head/tools/regression/lib/libc/stdio/test-getdelim.t user/hrs/ipv6/tools/regression/lib/libc/stdio/test-print-positional.t - copied unchanged from r234412, head/tools/regression/lib/libc/stdio/test-print-positional.t user/hrs/ipv6/tools/regression/lib/libc/stdio/test-printbasic.t - copied unchanged from r234412, head/tools/regression/lib/libc/stdio/test-printbasic.t user/hrs/ipv6/tools/regression/lib/msun/test-ctrig.c - copied unchanged from r234412, head/tools/regression/lib/msun/test-ctrig.c user/hrs/ipv6/tools/regression/lib/msun/test-ctrig.t - copied unchanged from r234412, head/tools/regression/lib/msun/test-ctrig.t user/hrs/ipv6/tools/regression/pipe/pipe-ino.c - copied unchanged from r234412, head/tools/regression/pipe/pipe-ino.c user/hrs/ipv6/tools/regression/pipe/pipe-reverse2.c - copied unchanged from r234412, head/tools/regression/pipe/pipe-reverse2.c user/hrs/ipv6/tools/regression/sbin/dhclient/ - copied from r234412, head/tools/regression/sbin/dhclient/ user/hrs/ipv6/tools/regression/sbin/mdconfig/ - copied from r234412, head/tools/regression/sbin/mdconfig/ user/hrs/ipv6/tools/regression/sockets/so_setfib/ - copied from r234412, head/tools/regression/sockets/so_setfib/ user/hrs/ipv6/tools/regression/usb/ - copied from r234412, head/tools/regression/usb/ user/hrs/ipv6/tools/regression/usr.bin/cc/ - copied from r234412, head/tools/regression/usr.bin/cc/ user/hrs/ipv6/tools/regression/usr.bin/make/execution/ - copied from r234412, head/tools/regression/usr.bin/make/execution/ user/hrs/ipv6/tools/test/hwpmc/ - copied from r234412, head/tools/test/hwpmc/ user/hrs/ipv6/tools/test/netfibs/ - copied from r234412, head/tools/test/netfibs/ user/hrs/ipv6/tools/test/ptrace/ - copied from r234412, head/tools/test/ptrace/ user/hrs/ipv6/tools/tinder.sh - copied unchanged from r234412, head/tools/tinder.sh user/hrs/ipv6/tools/tools/fixwhite/ - copied from r234412, head/tools/tools/fixwhite/ user/hrs/ipv6/tools/tools/netmap/ - copied from r234412, head/tools/tools/netmap/ user/hrs/ipv6/tools/tools/wtap/ - copied from r234412, head/tools/tools/wtap/ user/hrs/ipv6/tools/tools/zfsboottest/ user/hrs/ipv6/tools/tools/zfsboottest/Makefile user/hrs/ipv6/tools/tools/zfsboottest/zfsboottest.c user/hrs/ipv6/tools/tools/zfsboottest/zfsboottest.sh (contents, props changed) user/hrs/ipv6/usr.bin/clang/bugpoint/ - copied from r234412, head/usr.bin/clang/bugpoint/ user/hrs/ipv6/usr.bin/clang/clang-tblgen/ - copied from r234412, head/usr.bin/clang/clang-tblgen/ user/hrs/ipv6/usr.bin/clang/llc/ - copied from r234412, head/usr.bin/clang/llc/ user/hrs/ipv6/usr.bin/clang/lli/ - copied from r234412, head/usr.bin/clang/lli/ user/hrs/ipv6/usr.bin/clang/llvm-ar/ - copied from r234412, head/usr.bin/clang/llvm-ar/ user/hrs/ipv6/usr.bin/clang/llvm-as/ - copied from r234412, head/usr.bin/clang/llvm-as/ user/hrs/ipv6/usr.bin/clang/llvm-bcanalyzer/ - copied from r234412, head/usr.bin/clang/llvm-bcanalyzer/ user/hrs/ipv6/usr.bin/clang/llvm-diff/ - copied from r234412, head/usr.bin/clang/llvm-diff/ user/hrs/ipv6/usr.bin/clang/llvm-dis/ - copied from r234412, head/usr.bin/clang/llvm-dis/ user/hrs/ipv6/usr.bin/clang/llvm-extract/ - copied from r234412, head/usr.bin/clang/llvm-extract/ user/hrs/ipv6/usr.bin/clang/llvm-ld/ - copied from r234412, head/usr.bin/clang/llvm-ld/ user/hrs/ipv6/usr.bin/clang/llvm-link/ - copied from r234412, head/usr.bin/clang/llvm-link/ user/hrs/ipv6/usr.bin/clang/llvm-mc/ - copied from r234412, head/usr.bin/clang/llvm-mc/ user/hrs/ipv6/usr.bin/clang/llvm-nm/ - copied from r234412, head/usr.bin/clang/llvm-nm/ user/hrs/ipv6/usr.bin/clang/llvm-objdump/ - copied from r234412, head/usr.bin/clang/llvm-objdump/ user/hrs/ipv6/usr.bin/clang/llvm-prof/ - copied from r234412, head/usr.bin/clang/llvm-prof/ user/hrs/ipv6/usr.bin/clang/llvm-ranlib/ - copied from r234412, head/usr.bin/clang/llvm-ranlib/ user/hrs/ipv6/usr.bin/clang/llvm-rtdyld/ - copied from r234412, head/usr.bin/clang/llvm-rtdyld/ user/hrs/ipv6/usr.bin/clang/llvm-stub/ - copied from r234412, head/usr.bin/clang/llvm-stub/ user/hrs/ipv6/usr.bin/clang/macho-dump/ - copied from r234412, head/usr.bin/clang/macho-dump/ user/hrs/ipv6/usr.bin/clang/opt/ - copied from r234412, head/usr.bin/clang/opt/ user/hrs/ipv6/usr.bin/ctlstat/ - copied from r234412, head/usr.bin/ctlstat/ user/hrs/ipv6/usr.bin/grep/regex/ - copied from r234412, head/usr.bin/grep/regex/ user/hrs/ipv6/usr.bin/gzip/unxz.c - copied unchanged from r234412, head/usr.bin/gzip/unxz.c user/hrs/ipv6/usr.bin/m4/lib/ - copied from r234412, head/usr.bin/m4/lib/ user/hrs/ipv6/usr.bin/m4/parser.y - copied unchanged from r234412, head/usr.bin/m4/parser.y user/hrs/ipv6/usr.bin/m4/tokenizer.l - copied unchanged from r234412, head/usr.bin/m4/tokenizer.l user/hrs/ipv6/usr.bin/mkulzma/ - copied from r234412, head/usr.bin/mkulzma/ user/hrs/ipv6/usr.bin/procstat/procstat_auxv.c - copied unchanged from r234412, head/usr.bin/procstat/procstat_auxv.c user/hrs/ipv6/usr.bin/procstat/procstat_rlimit.c - copied unchanged from r234412, head/usr.bin/procstat/procstat_rlimit.c user/hrs/ipv6/usr.sbin/cpucontrol/via.c - copied unchanged from r234412, head/usr.sbin/cpucontrol/via.c user/hrs/ipv6/usr.sbin/cpucontrol/via.h - copied unchanged from r234412, head/usr.sbin/cpucontrol/via.h user/hrs/ipv6/usr.sbin/ctladm/ - copied from r234412, head/usr.sbin/ctladm/ user/hrs/ipv6/usr.sbin/pkg/ - copied from r234412, head/usr.sbin/pkg/ user/hrs/ipv6/usr.sbin/utx/ - copied from r234412, head/usr.sbin/utx/ Directory Properties: user/hrs/ipv6/contrib/libarchive/ (props changed) user/hrs/ipv6/contrib/libc++/ (props changed) user/hrs/ipv6/contrib/libcxxrt/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/os_specific/ (props changed) user/hrs/ipv6/sys/i386/conf/XENHVM (props changed) Replaced: user/hrs/ipv6/contrib/com_err/ChangeLog - copied unchanged from r234412, head/contrib/com_err/ChangeLog user/hrs/ipv6/contrib/gperf/doc/gperf.texi - copied unchanged from r234412, head/contrib/gperf/doc/gperf.texi user/hrs/ipv6/contrib/gperf/doc/gpl.texinfo - copied unchanged from r234412, head/contrib/gperf/doc/gpl.texinfo user/hrs/ipv6/lib/libc/string/strchr.c - copied unchanged from r234412, head/lib/libc/string/strchr.c user/hrs/ipv6/lib/libc/string/strrchr.c - copied unchanged from r234412, head/lib/libc/string/strrchr.c Deleted: user/hrs/ipv6/Makefile.mips user/hrs/ipv6/bin/csh/host.defs user/hrs/ipv6/bin/sh/funcs/kill user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_graph.c user/hrs/ipv6/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.html user/hrs/ipv6/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.pdf user/hrs/ipv6/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.txt user/hrs/ipv6/contrib/bind9/bin/rndc/unix/ user/hrs/ipv6/contrib/bind9/release-notes.css user/hrs/ipv6/contrib/com_err/Makefile.am user/hrs/ipv6/contrib/com_err/Makefile.in user/hrs/ipv6/contrib/com_err/getarg.c user/hrs/ipv6/contrib/com_err/getarg.h user/hrs/ipv6/contrib/com_err/lex.c user/hrs/ipv6/contrib/com_err/parse.c user/hrs/ipv6/contrib/com_err/parse.h user/hrs/ipv6/contrib/compiler-rt/lib/abi.h user/hrs/ipv6/contrib/compiler-rt/lib/apple_versioning.c user/hrs/ipv6/contrib/compiler-rt/lib/endianness.h user/hrs/ipv6/contrib/gperf/acconfig.h user/hrs/ipv6/contrib/gperf/configure.in user/hrs/ipv6/contrib/gperf/doc/configure.in user/hrs/ipv6/contrib/gperf/doc/texinfo.tex user/hrs/ipv6/contrib/gperf/lib/configure.in user/hrs/ipv6/contrib/gperf/src/configure.in user/hrs/ipv6/contrib/gperf/src/gen-perf.cc user/hrs/ipv6/contrib/gperf/src/gen-perf.h user/hrs/ipv6/contrib/gperf/src/iterator.cc user/hrs/ipv6/contrib/gperf/src/iterator.h user/hrs/ipv6/contrib/gperf/src/key-list.cc user/hrs/ipv6/contrib/gperf/src/key-list.h user/hrs/ipv6/contrib/gperf/src/list-node.cc user/hrs/ipv6/contrib/gperf/src/list-node.h user/hrs/ipv6/contrib/gperf/src/new.cc user/hrs/ipv6/contrib/gperf/src/read-line.cc user/hrs/ipv6/contrib/gperf/src/read-line.h user/hrs/ipv6/contrib/gperf/src/read-line.icc user/hrs/ipv6/contrib/gperf/src/trace.cc user/hrs/ipv6/contrib/gperf/src/trace.h user/hrs/ipv6/contrib/gperf/src/vectors.cc user/hrs/ipv6/contrib/gperf/src/vectors.h user/hrs/ipv6/contrib/gperf/tests/ user/hrs/ipv6/contrib/llvm/include/llvm/ADT/VectorExtras.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/BlockFrequency.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/BinaryObject.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequency.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineLocation.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/ObjectCodeEmitter.h user/hrs/ipv6/contrib/llvm/include/llvm/CompilerDriver/ user/hrs/ipv6/contrib/llvm/include/llvm/DebugInfoProbe.h user/hrs/ipv6/contrib/llvm/include/llvm/IntrinsicsAlpha.td user/hrs/ipv6/contrib/llvm/include/llvm/Support/PassManagerBuilder.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetAsmBackend.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetAsmInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetAsmLexer.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetAsmParser.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetRegistry.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetSelect.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/BasicInliner.h user/hrs/ipv6/contrib/llvm/lib/Analysis/BlockFrequency.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ELF.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/ELFCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ELFCodeEmitter.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/ELFWriter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ELFWriter.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveRangeEdit.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/LowerSubregs.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineBlockFrequency.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ObjectCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegAllocLinearScan.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ScheduleDAGEmit.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/Splitter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/Splitter.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/VirtRegRewriter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/VirtRegRewriter.h user/hrs/ipv6/contrib/llvm/lib/CompilerDriver/ user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/Intercept.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/MCJIT/Intercept.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/MCJIT/Makefile user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Makefile user/hrs/ipv6/contrib/llvm/lib/MC/ELFObjectWriter.h user/hrs/ipv6/contrib/llvm/lib/MC/MCELFStreamer.h user/hrs/ipv6/contrib/llvm/lib/MC/MCLoggingStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCParser/TargetAsmParser.cpp user/hrs/ipv6/contrib/llvm/lib/MC/TargetAsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Object/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Object/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMAddressingModes.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMAsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMBaseInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMFixupKinds.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMGlobalMerge.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMMCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMMCExpr.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMMCExpr.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMMachObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassemblerCore.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassemblerCore.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Disassembler/ThumbDisassemblerCore.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/InstPrinter/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/ARM/InstPrinter/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/ARM/NEONMoveFix.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Alpha/ user/hrs/ipv6/contrib/llvm/lib/Target/Blackfin/ user/hrs/ipv6/contrib/llvm/lib/Target/CBackend/ user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/AsmParser/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/AsmParser/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/Disassembler/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/Disassembler/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/InstPrinter/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/InstPrinter/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeAsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeMCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/InstPrinter/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/InstPrinter/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/Mips/InstPrinter/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/Mips/InstPrinter/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/PTX/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/PTX/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXCallingConv.td user/hrs/ipv6/contrib/llvm/lib/Target/PTX/TargetInfo/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/PTX/TargetInfo/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/PTX/generate-register-td.py user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/InstPrinter/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/InstPrinter/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCAsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCFixupKinds.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCMCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCPredicates.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCPredicates.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/SystemZ/ user/hrs/ipv6/contrib/llvm/lib/Target/TargetAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetAsmLexer.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetFrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/InstPrinter/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/X86/InstPrinter/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/X86/SSEDomainFix.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/Utils/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/X86/Utils/Makefile user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86AsmBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86FixupKinds.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86MCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86MachObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/MCTargetDesc/CMakeLists.txt user/hrs/ipv6/contrib/llvm/lib/Target/XCore/MCTargetDesc/Makefile user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/LowerSetJmp.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/TailDuplication.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/BasicInliner.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/DebugInfoProbe.cpp user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/UsuallyTinyPtrVector.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Support/SaveAndRestore.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Config/ user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/HostInfo.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticClient.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticsClient.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Index/CallGraph.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/ASTSerializationListener.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/ChainedIncludesSource.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerProvider.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticClients.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngineBuilders.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/GRState.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/GRStateTrait.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TransferFuncs.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/CMakeLists.txt user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/Makefile user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/AnalysisContext.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGException.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGTemporaries.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/HostInfo.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticsClient.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Index/CallGraph.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaCXXCast.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ChainedIncludesSource.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/CMakeLists.txt user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckerProvider.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckerProvider.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Makefile user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AggExprVisitor.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicStore.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CFRefCount.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CMakeLists.txt user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CXXExprEngine.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FlatStore.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/GRState.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Makefile user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CMakeLists.txt user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/Makefile user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Makefile user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/README.txt user/hrs/ipv6/contrib/llvm/utils/TableGen/ARMDecoderEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/ARMDecoderEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/ClangASTNodesEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/ClangASTNodesEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/ClangAttrEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/ClangAttrEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/ClangDiagnosticsEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/ClangSACheckersEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/ClangSACheckersEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/Error.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/Error.h user/hrs/ipv6/contrib/llvm/utils/TableGen/InstrEnumEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/InstrEnumEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/LLVMCConfigurationEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/NeonEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/NeonEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/OptParserEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/OptParserEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/Record.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/Record.h user/hrs/ipv6/contrib/llvm/utils/TableGen/TGLexer.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/TGLexer.h user/hrs/ipv6/contrib/llvm/utils/TableGen/TGParser.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/TGParser.h user/hrs/ipv6/contrib/llvm/utils/TableGen/TableGenBackend.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/TableGenBackend.h user/hrs/ipv6/contrib/tcsh/nls/Makefile user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/krb4.c user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/krb4.c user/hrs/ipv6/crypto/heimdal/appl/login/login_protos.h user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/kerberos.c user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/krb4encpwd.c user/hrs/ipv6/crypto/heimdal/cf/ user/hrs/ipv6/crypto/heimdal/configure.in user/hrs/ipv6/crypto/heimdal/include/make_crypto.c user/hrs/ipv6/crypto/heimdal/kcm/cursor.c user/hrs/ipv6/crypto/heimdal/kcm/kcm_protos.h user/hrs/ipv6/crypto/heimdal/kdc/524.c user/hrs/ipv6/crypto/heimdal/kdc/kadb.h user/hrs/ipv6/crypto/heimdal/kdc/kaserver.c user/hrs/ipv6/crypto/heimdal/kdc/kerberos4.c user/hrs/ipv6/crypto/heimdal/kdc/v4_dump.c user/hrs/ipv6/crypto/heimdal/kuser/kimpersonate.1 user/hrs/ipv6/crypto/heimdal/lib/45/ user/hrs/ipv6/crypto/heimdal/lib/asn1/CMS.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/k5.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/parse.c user/hrs/ipv6/crypto/heimdal/lib/asn1/parse.h user/hrs/ipv6/crypto/heimdal/lib/asn1/parse.y user/hrs/ipv6/crypto/heimdal/lib/auth/ user/hrs/ipv6/crypto/heimdal/lib/gssapi/gss.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/v1.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/digest.c user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/inquire_cred.c user/hrs/ipv6/crypto/heimdal/lib/hx509/data/ user/hrs/ipv6/crypto/heimdal/lib/kafs/README.dlfcn user/hrs/ipv6/crypto/heimdal/lib/kafs/afskrb.c user/hrs/ipv6/crypto/heimdal/lib/kafs/dlfcn.c user/hrs/ipv6/crypto/heimdal/lib/kafs/dlfcn.h user/hrs/ipv6/crypto/heimdal/lib/krb5/config_file_netinfo.c user/hrs/ipv6/crypto/heimdal/lib/krb5/get_in_tkt_pw.c user/hrs/ipv6/crypto/heimdal/lib/krb5/get_in_tkt_with_keytab.c user/hrs/ipv6/crypto/heimdal/lib/krb5/get_in_tkt_with_skey.c user/hrs/ipv6/crypto/heimdal/lib/krb5/heim_threads.h user/hrs/ipv6/crypto/heimdal/lib/krb5/keytab_krb4.c user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_address.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_ccache.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_compare_creds.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_config.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_context.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_crypto_init.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_data.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_expand_hostname.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_keyblock.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_keytab.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_kuserok.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_storage.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_ticket.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_unparse_name.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_warn.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/name-45-test.c user/hrs/ipv6/crypto/heimdal/lib/krb5/v4_glue.c user/hrs/ipv6/crypto/heimdal/lib/roken/snprintf-test.h user/hrs/ipv6/crypto/heimdal/lib/roken/vis.h user/hrs/ipv6/crypto/heimdal/lib/sl/lex.c user/hrs/ipv6/crypto/heimdal/lib/sl/lex.l user/hrs/ipv6/crypto/heimdal/lib/sl/make_cmds.c user/hrs/ipv6/crypto/heimdal/lib/sl/make_cmds.h user/hrs/ipv6/crypto/heimdal/lib/sl/parse.c user/hrs/ipv6/crypto/heimdal/lib/sl/parse.h user/hrs/ipv6/crypto/heimdal/lib/sl/parse.y user/hrs/ipv6/crypto/heimdal/lib/sl/ss.c user/hrs/ipv6/crypto/heimdal/lib/sl/ss.h user/hrs/ipv6/crypto/heimdal/lib/vers/make-print-version.c user/hrs/ipv6/crypto/heimdal/packages/ user/hrs/ipv6/crypto/heimdal/tests/ user/hrs/ipv6/crypto/heimdal/tools/heimdal-build.sh user/hrs/ipv6/crypto/openssh/WARNING.RNG user/hrs/ipv6/crypto/openssh/ssh-rand-helper.8 user/hrs/ipv6/crypto/openssh/ssh-rand-helper.c user/hrs/ipv6/gnu/lib/libodialog/ user/hrs/ipv6/kerberos5/lib/libgssapi_spnego/prefix.c user/hrs/ipv6/kerberos5/tools/make-print-version/ user/hrs/ipv6/kerberos5/usr.bin/klist/ user/hrs/ipv6/lib/clang/include/ARMGenDecoderTables.inc user/hrs/ipv6/lib/libarchive/COPYING user/hrs/ipv6/lib/libarchive/README user/hrs/ipv6/lib/libarchive/archive.h user/hrs/ipv6/lib/libarchive/archive_check_magic.c user/hrs/ipv6/lib/libarchive/archive_crc32.h user/hrs/ipv6/lib/libarchive/archive_endian.h user/hrs/ipv6/lib/libarchive/archive_entry.3 user/hrs/ipv6/lib/libarchive/archive_entry.c user/hrs/ipv6/lib/libarchive/archive_entry.h user/hrs/ipv6/lib/libarchive/archive_entry_copy_stat.c user/hrs/ipv6/lib/libarchive/archive_entry_link_resolver.c user/hrs/ipv6/lib/libarchive/archive_entry_private.h user/hrs/ipv6/lib/libarchive/archive_entry_stat.c user/hrs/ipv6/lib/libarchive/archive_entry_strmode.c user/hrs/ipv6/lib/libarchive/archive_entry_xattr.c user/hrs/ipv6/lib/libarchive/archive_hash.h user/hrs/ipv6/lib/libarchive/archive_platform.h user/hrs/ipv6/lib/libarchive/archive_private.h user/hrs/ipv6/lib/libarchive/archive_read.3 user/hrs/ipv6/lib/libarchive/archive_read.c user/hrs/ipv6/lib/libarchive/archive_read_data_into_fd.c user/hrs/ipv6/lib/libarchive/archive_read_disk.3 user/hrs/ipv6/lib/libarchive/archive_read_disk.c user/hrs/ipv6/lib/libarchive/archive_read_disk_entry_from_file.c user/hrs/ipv6/lib/libarchive/archive_read_disk_private.h user/hrs/ipv6/lib/libarchive/archive_read_disk_set_standard_lookup.c user/hrs/ipv6/lib/libarchive/archive_read_extract.c user/hrs/ipv6/lib/libarchive/archive_read_open_fd.c user/hrs/ipv6/lib/libarchive/archive_read_open_file.c user/hrs/ipv6/lib/libarchive/archive_read_open_filename.c user/hrs/ipv6/lib/libarchive/archive_read_open_memory.c user/hrs/ipv6/lib/libarchive/archive_read_private.h user/hrs/ipv6/lib/libarchive/archive_read_support_compression_all.c user/hrs/ipv6/lib/libarchive/archive_read_support_compression_bzip2.c user/hrs/ipv6/lib/libarchive/archive_read_support_compression_compress.c user/hrs/ipv6/lib/libarchive/archive_read_support_compression_gzip.c user/hrs/ipv6/lib/libarchive/archive_read_support_compression_none.c user/hrs/ipv6/lib/libarchive/archive_read_support_compression_program.c user/hrs/ipv6/lib/libarchive/archive_read_support_compression_rpm.c user/hrs/ipv6/lib/libarchive/archive_read_support_compression_uu.c user/hrs/ipv6/lib/libarchive/archive_read_support_compression_xz.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_all.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_ar.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_cpio.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_empty.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_iso9660.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_mtree.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_raw.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_tar.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_xar.c user/hrs/ipv6/lib/libarchive/archive_read_support_format_zip.c user/hrs/ipv6/lib/libarchive/archive_string.c user/hrs/ipv6/lib/libarchive/archive_string.h user/hrs/ipv6/lib/libarchive/archive_string_sprintf.c user/hrs/ipv6/lib/libarchive/archive_util.3 user/hrs/ipv6/lib/libarchive/archive_util.c user/hrs/ipv6/lib/libarchive/archive_virtual.c user/hrs/ipv6/lib/libarchive/archive_write.3 user/hrs/ipv6/lib/libarchive/archive_write.c user/hrs/ipv6/lib/libarchive/archive_write_disk.3 user/hrs/ipv6/lib/libarchive/archive_write_disk.c user/hrs/ipv6/lib/libarchive/archive_write_disk_private.h user/hrs/ipv6/lib/libarchive/archive_write_disk_set_standard_lookup.c user/hrs/ipv6/lib/libarchive/archive_write_open_fd.c user/hrs/ipv6/lib/libarchive/archive_write_open_file.c user/hrs/ipv6/lib/libarchive/archive_write_open_filename.c user/hrs/ipv6/lib/libarchive/archive_write_open_memory.c user/hrs/ipv6/lib/libarchive/archive_write_private.h user/hrs/ipv6/lib/libarchive/archive_write_set_compression_bzip2.c user/hrs/ipv6/lib/libarchive/archive_write_set_compression_compress.c user/hrs/ipv6/lib/libarchive/archive_write_set_compression_gzip.c user/hrs/ipv6/lib/libarchive/archive_write_set_compression_none.c user/hrs/ipv6/lib/libarchive/archive_write_set_compression_program.c user/hrs/ipv6/lib/libarchive/archive_write_set_compression_xz.c user/hrs/ipv6/lib/libarchive/archive_write_set_format.c user/hrs/ipv6/lib/libarchive/archive_write_set_format_ar.c user/hrs/ipv6/lib/libarchive/archive_write_set_format_by_name.c user/hrs/ipv6/lib/libarchive/archive_write_set_format_cpio.c user/hrs/ipv6/lib/libarchive/archive_write_set_format_cpio_newc.c user/hrs/ipv6/lib/libarchive/archive_write_set_format_mtree.c user/hrs/ipv6/lib/libarchive/archive_write_set_format_pax.c user/hrs/ipv6/lib/libarchive/archive_write_set_format_shar.c user/hrs/ipv6/lib/libarchive/archive_write_set_format_ustar.c user/hrs/ipv6/lib/libarchive/archive_write_set_format_zip.c user/hrs/ipv6/lib/libarchive/cpio.5 user/hrs/ipv6/lib/libarchive/filter_fork.c user/hrs/ipv6/lib/libarchive/filter_fork.h user/hrs/ipv6/lib/libarchive/libarchive-formats.5 user/hrs/ipv6/lib/libarchive/libarchive.3 user/hrs/ipv6/lib/libarchive/libarchive_fe/ user/hrs/ipv6/lib/libarchive/libarchive_internals.3 user/hrs/ipv6/lib/libarchive/tar.5 user/hrs/ipv6/lib/libarchive/test/.cvsignore user/hrs/ipv6/lib/libarchive/test/README user/hrs/ipv6/lib/libarchive/test/main.c user/hrs/ipv6/lib/libarchive/test/read_open_memory.c user/hrs/ipv6/lib/libarchive/test/test.h user/hrs/ipv6/lib/libarchive/test/test_acl_basic.c user/hrs/ipv6/lib/libarchive/test/test_acl_freebsd.c user/hrs/ipv6/lib/libarchive/test/test_acl_pax.c user/hrs/ipv6/lib/libarchive/test/test_archive_api_feature.c user/hrs/ipv6/lib/libarchive/test/test_bad_fd.c user/hrs/ipv6/lib/libarchive/test/test_compat_bzip2.c user/hrs/ipv6/lib/libarchive/test/test_compat_bzip2_1.tbz.uu user/hrs/ipv6/lib/libarchive/test/test_compat_bzip2_2.tbz.uu user/hrs/ipv6/lib/libarchive/test/test_compat_cpio.c user/hrs/ipv6/lib/libarchive/test/test_compat_cpio_1.cpio.uu user/hrs/ipv6/lib/libarchive/test/test_compat_gtar.c user/hrs/ipv6/lib/libarchive/test/test_compat_gtar_1.tar.uu user/hrs/ipv6/lib/libarchive/test/test_compat_gzip.c user/hrs/ipv6/lib/libarchive/test/test_compat_gzip_1.tgz.uu user/hrs/ipv6/lib/libarchive/test/test_compat_gzip_2.tgz.uu user/hrs/ipv6/lib/libarchive/test/test_compat_lzma.c user/hrs/ipv6/lib/libarchive/test/test_compat_lzma_1.tlz.uu user/hrs/ipv6/lib/libarchive/test/test_compat_lzma_2.tlz.uu user/hrs/ipv6/lib/libarchive/test/test_compat_lzma_3.tlz.uu user/hrs/ipv6/lib/libarchive/test/test_compat_solaris_tar_acl.c user/hrs/ipv6/lib/libarchive/test/test_compat_solaris_tar_acl.tar.uu user/hrs/ipv6/lib/libarchive/test/test_compat_tar_hardlink.c user/hrs/ipv6/lib/libarchive/test/test_compat_tar_hardlink_1.tar.uu user/hrs/ipv6/lib/libarchive/test/test_compat_xz.c user/hrs/ipv6/lib/libarchive/test/test_compat_xz_1.txz.uu user/hrs/ipv6/lib/libarchive/test/test_compat_zip.c user/hrs/ipv6/lib/libarchive/test/test_compat_zip_1.zip.uu user/hrs/ipv6/lib/libarchive/test/test_compat_zip_2.zip.uu user/hrs/ipv6/lib/libarchive/test/test_empty_write.c user/hrs/ipv6/lib/libarchive/test/test_entry.c user/hrs/ipv6/lib/libarchive/test/test_entry_strmode.c user/hrs/ipv6/lib/libarchive/test/test_extattr_freebsd.c user/hrs/ipv6/lib/libarchive/test/test_fuzz.c user/hrs/ipv6/lib/libarchive/test/test_fuzz_1.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_link_resolver.c user/hrs/ipv6/lib/libarchive/test/test_open_failure.c user/hrs/ipv6/lib/libarchive/test/test_open_fd.c user/hrs/ipv6/lib/libarchive/test/test_open_file.c user/hrs/ipv6/lib/libarchive/test/test_open_filename.c user/hrs/ipv6/lib/libarchive/test/test_pax_filename_encoding.c user/hrs/ipv6/lib/libarchive/test/test_pax_filename_encoding.tar.uu user/hrs/ipv6/lib/libarchive/test/test_read_compress_program.c user/hrs/ipv6/lib/libarchive/test/test_read_data_large.c user/hrs/ipv6/lib/libarchive/test/test_read_disk.c user/hrs/ipv6/lib/libarchive/test/test_read_disk_entry_from_file.c user/hrs/ipv6/lib/libarchive/test/test_read_extract.c user/hrs/ipv6/lib/libarchive/test/test_read_file_nonexistent.c user/hrs/ipv6/lib/libarchive/test/test_read_format_ar.ar.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_ar.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_bin.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_bin_Z.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_bin_be.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_bin_be.cpio.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_bin_bz2.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_bin_gz.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_bin_lzma.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_bin_xz.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_odc.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.rpm.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_svr4_gzip.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.c user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.rpm.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_cpio_svr4c_Z.c user/hrs/ipv6/lib/libarchive/test/test_read_format_empty.c user/hrs/ipv6/lib/libarchive/test/test_read_format_gtar_gz.c user/hrs/ipv6/lib/libarchive/test/test_read_format_gtar_lzma.c user/hrs/ipv6/lib/libarchive/test/test_read_format_gtar_sparse.c user/hrs/ipv6/lib/libarchive/test/test_read_format_gtar_sparse_1_13.tar.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_gtar_sparse_1_17.tar.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix00.tar.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix01.tar.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix10.tar.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix10_modified.tar.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_2.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_gz.c user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_joliet.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_joliet_long.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_joliet_rockridge.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_multi_extent.c user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_multi_extent.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_rockridge.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_rockridge_ce.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_rockridge_new.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_rockridge_rr_moved.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_iso_zisofs.iso.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_isojoliet_bz2.c user/hrs/ipv6/lib/libarchive/test/test_read_format_isojoliet_long.c user/hrs/ipv6/lib/libarchive/test/test_read_format_isojoliet_rr.c user/hrs/ipv6/lib/libarchive/test/test_read_format_isorr_bz2.c user/hrs/ipv6/lib/libarchive/test/test_read_format_isorr_ce.c user/hrs/ipv6/lib/libarchive/test/test_read_format_isorr_new_bz2.c user/hrs/ipv6/lib/libarchive/test/test_read_format_isorr_rr_moved.c user/hrs/ipv6/lib/libarchive/test/test_read_format_isozisofs_bz2.c user/hrs/ipv6/lib/libarchive/test/test_read_format_mtree.c user/hrs/ipv6/lib/libarchive/test/test_read_format_mtree.mtree.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_pax_bz2.c user/hrs/ipv6/lib/libarchive/test/test_read_format_raw.c user/hrs/ipv6/lib/libarchive/test/test_read_format_raw.data.Z.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_raw.data.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_tar.c user/hrs/ipv6/lib/libarchive/test/test_read_format_tar_empty_filename.c user/hrs/ipv6/lib/libarchive/test/test_read_format_tar_empty_filename.tar.uu user/hrs/ipv6/lib/libarchive/test/test_read_format_tbz.c user/hrs/ipv6/lib/libarchive/test/test_read_format_tgz.c user/hrs/ipv6/lib/libarchive/test/test_read_format_tlz.c user/hrs/ipv6/lib/libarchive/test/test_read_format_txz.c user/hrs/ipv6/lib/libarchive/test/test_read_format_tz.c user/hrs/ipv6/lib/libarchive/test/test_read_format_xar.c user/hrs/ipv6/lib/libarchive/test/test_read_format_zip.c user/hrs/ipv6/lib/libarchive/test/test_read_format_zip.zip.uu user/hrs/ipv6/lib/libarchive/test/test_read_large.c user/hrs/ipv6/lib/libarchive/test/test_read_pax_truncated.c user/hrs/ipv6/lib/libarchive/test/test_read_position.c user/hrs/ipv6/lib/libarchive/test/test_read_truncated.c user/hrs/ipv6/lib/libarchive/test/test_read_uu.c user/hrs/ipv6/lib/libarchive/test/test_tar_filenames.c user/hrs/ipv6/lib/libarchive/test/test_tar_large.c user/hrs/ipv6/lib/libarchive/test/test_ustar_filenames.c user/hrs/ipv6/lib/libarchive/test/test_write_compress.c user/hrs/ipv6/lib/libarchive/test/test_write_compress_bzip2.c user/hrs/ipv6/lib/libarchive/test/test_write_compress_gzip.c user/hrs/ipv6/lib/libarchive/test/test_write_compress_lzma.c user/hrs/ipv6/lib/libarchive/test/test_write_compress_program.c user/hrs/ipv6/lib/libarchive/test/test_write_compress_xz.c user/hrs/ipv6/lib/libarchive/test/test_write_disk.c user/hrs/ipv6/lib/libarchive/test/test_write_disk_failures.c user/hrs/ipv6/lib/libarchive/test/test_write_disk_hardlink.c user/hrs/ipv6/lib/libarchive/test/test_write_disk_perms.c user/hrs/ipv6/lib/libarchive/test/test_write_disk_secure.c user/hrs/ipv6/lib/libarchive/test/test_write_disk_sparse.c user/hrs/ipv6/lib/libarchive/test/test_write_disk_symlink.c user/hrs/ipv6/lib/libarchive/test/test_write_disk_times.c user/hrs/ipv6/lib/libarchive/test/test_write_format_ar.c user/hrs/ipv6/lib/libarchive/test/test_write_format_cpio.c user/hrs/ipv6/lib/libarchive/test/test_write_format_cpio_empty.c user/hrs/ipv6/lib/libarchive/test/test_write_format_cpio_newc.c user/hrs/ipv6/lib/libarchive/test/test_write_format_cpio_odc.c user/hrs/ipv6/lib/libarchive/test/test_write_format_mtree.c user/hrs/ipv6/lib/libarchive/test/test_write_format_pax.c user/hrs/ipv6/lib/libarchive/test/test_write_format_shar_empty.c user/hrs/ipv6/lib/libarchive/test/test_write_format_tar.c user/hrs/ipv6/lib/libarchive/test/test_write_format_tar_empty.c user/hrs/ipv6/lib/libarchive/test/test_write_format_tar_ustar.c user/hrs/ipv6/lib/libarchive/test/test_write_format_zip.c user/hrs/ipv6/lib/libarchive/test/test_write_format_zip_empty.c user/hrs/ipv6/lib/libarchive/test/test_write_format_zip_no_compression.c user/hrs/ipv6/lib/libarchive/test/test_write_open_memory.c user/hrs/ipv6/lib/libc/amd64/gen/modf.S user/hrs/ipv6/lib/libc/arm/gen/modf.c user/hrs/ipv6/lib/libc/i386/gen/modf.S user/hrs/ipv6/lib/libc/i386/string/index.S user/hrs/ipv6/lib/libc/i386/string/rindex.S user/hrs/ipv6/lib/libc/ia64/gen/modf.c user/hrs/ipv6/lib/libc/mips/gen/modf.S user/hrs/ipv6/lib/libc/mips/gen/modf.c user/hrs/ipv6/lib/libc/mips/string/index.S user/hrs/ipv6/lib/libc/mips/string/rindex.S user/hrs/ipv6/lib/libc/powerpc/gen/modf.c user/hrs/ipv6/lib/libc/powerpc64/gen/modf.c user/hrs/ipv6/lib/libc/sparc64/gen/modf.S user/hrs/ipv6/lib/libc/stdlib/malloc.3 user/hrs/ipv6/lib/libc/stdlib/malloc.c user/hrs/ipv6/lib/libc/stdlib/posix_memalign.3 user/hrs/ipv6/lib/libc/stdlib/ql.h user/hrs/ipv6/lib/libc/stdlib/qr.h user/hrs/ipv6/lib/libc/stdlib/rb.h user/hrs/ipv6/lib/libc/string/index.c user/hrs/ipv6/lib/libc/string/rindex.c user/hrs/ipv6/lib/libftpio/ user/hrs/ipv6/lib/libpmc/pmc.mips.3 user/hrs/ipv6/release/Makefile.inc.docports user/hrs/ipv6/release/Makefile.sysinstall user/hrs/ipv6/release/amd64/boot_crunch.conf user/hrs/ipv6/release/fixit.profile user/hrs/ipv6/release/fixit.services user/hrs/ipv6/release/i386/boot_crunch.conf user/hrs/ipv6/release/i386/fixit_crunch.conf user/hrs/ipv6/release/ia64/boot_crunch.conf user/hrs/ipv6/release/pc98/boot_crunch.conf user/hrs/ipv6/release/pc98/fixit-small_crunch.conf user/hrs/ipv6/release/pc98/fixit_crunch.conf user/hrs/ipv6/release/powerpc/boot_crunch.conf user/hrs/ipv6/release/scripts/base-install.sh user/hrs/ipv6/release/scripts/catpages-install.sh user/hrs/ipv6/release/scripts/catpages-make.sh user/hrs/ipv6/release/scripts/checkindex.pl user/hrs/ipv6/release/scripts/chkINDEX user/hrs/ipv6/release/scripts/commerce-install.sh user/hrs/ipv6/release/scripts/dict-install.sh user/hrs/ipv6/release/scripts/dict-make.sh user/hrs/ipv6/release/scripts/doFS.sh user/hrs/ipv6/release/scripts/doc-install.sh user/hrs/ipv6/release/scripts/doc-make.sh user/hrs/ipv6/release/scripts/games-install.sh user/hrs/ipv6/release/scripts/info-install.sh user/hrs/ipv6/release/scripts/info-make.sh user/hrs/ipv6/release/scripts/info.sh user/hrs/ipv6/release/scripts/kernels-install.sh user/hrs/ipv6/release/scripts/lib32-install.sh user/hrs/ipv6/release/scripts/manpages-install.sh user/hrs/ipv6/release/scripts/manpages-make.sh user/hrs/ipv6/release/scripts/mkpkghier user/hrs/ipv6/release/scripts/mkpkgindex.sh user/hrs/ipv6/release/scripts/package-split.py user/hrs/ipv6/release/scripts/package-trees.sh user/hrs/ipv6/release/scripts/ports-install.sh user/hrs/ipv6/release/scripts/proflibs-install.sh user/hrs/ipv6/release/scripts/proflibs-make.sh user/hrs/ipv6/release/scripts/split-file.sh user/hrs/ipv6/release/scripts/src-install.sh user/hrs/ipv6/release/scripts/tar.sh user/hrs/ipv6/release/scripts/xperimnt-install.sh user/hrs/ipv6/release/sparc64/boot_crunch.conf user/hrs/ipv6/release/svnbranch.awk user/hrs/ipv6/sbin/ifconfig/ifcarp.c user/hrs/ipv6/share/man/man4/amd.4 user/hrs/ipv6/share/man/man4/cc.4 user/hrs/ipv6/share/man/man7/eventtimers.7 user/hrs/ipv6/share/man/man9/cc.9 user/hrs/ipv6/sys/amd64/amd64/intr_machdep.c user/hrs/ipv6/sys/amd64/amd64/legacy.c user/hrs/ipv6/sys/amd64/include/legacyvar.h user/hrs/ipv6/sys/boot/zfs/zfstest.c user/hrs/ipv6/sys/compat/ia32/ia32_reg.h user/hrs/ipv6/sys/contrib/dev/acpica/debugger/ user/hrs/ipv6/sys/contrib/dev/acpica/disassembler/ user/hrs/ipv6/sys/contrib/dev/acpica/dispatcher/ user/hrs/ipv6/sys/contrib/dev/acpica/events/ user/hrs/ipv6/sys/contrib/dev/acpica/executer/ user/hrs/ipv6/sys/contrib/dev/acpica/hardware/ user/hrs/ipv6/sys/contrib/dev/acpica/namespace/ user/hrs/ipv6/sys/contrib/dev/acpica/osunixxf.c user/hrs/ipv6/sys/contrib/dev/acpica/parser/ user/hrs/ipv6/sys/contrib/dev/acpica/resources/ user/hrs/ipv6/sys/contrib/dev/acpica/tables/ user/hrs/ipv6/sys/contrib/dev/acpica/tools/ user/hrs/ipv6/sys/contrib/dev/acpica/utilities/ user/hrs/ipv6/sys/contrib/dev/ral/rt2661_ucode.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-csr-db-support.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-csr-db.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-csr-db.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-custom.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-custom.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn30xx.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn31xx.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn38xx.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn38xxp2.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn50xx.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn52xx.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn52xxp1.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn56xx.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn56xxp1.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn58xx.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn58xxp1.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn63xx.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error-init-cn63xxp1.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-error.h user/hrs/ipv6/sys/dev/amd/ user/hrs/ipv6/sys/dev/cxgbe/common/t4fw_interface.h user/hrs/ipv6/sys/dev/hwpmc/hwpmc_mips24k.h user/hrs/ipv6/sys/dev/mii/exphy.c user/hrs/ipv6/sys/dev/mii/inphy.c user/hrs/ipv6/sys/dev/mii/inphyreg.h user/hrs/ipv6/sys/dev/mii/ruephy.c user/hrs/ipv6/sys/dev/mii/ruephyreg.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_inb.h user/hrs/ipv6/sys/dev/uart/uart_cpu_amd64.c user/hrs/ipv6/sys/dev/uart/uart_cpu_i386.c user/hrs/ipv6/sys/fs/ext2fs/ext2_readwrite.c user/hrs/ipv6/sys/fs/fifofs/fifo.h user/hrs/ipv6/sys/gnu/dev/ user/hrs/ipv6/sys/i386/i386/intr_machdep.c user/hrs/ipv6/sys/i386/i386/legacy.c user/hrs/ipv6/sys/i386/include/legacyvar.h user/hrs/ipv6/sys/libkern/gets.c user/hrs/ipv6/sys/libkern/index.c user/hrs/ipv6/sys/libkern/rindex.c user/hrs/ipv6/sys/libkern/skpc.c user/hrs/ipv6/sys/mips/conf/AR71XX user/hrs/ipv6/sys/mips/conf/AR71XX.hints user/hrs/ipv6/sys/mips/include/bswap.h user/hrs/ipv6/sys/mips/include/clockvar.h user/hrs/ipv6/sys/mips/include/cputypes.h user/hrs/ipv6/sys/mips/include/iodev.h user/hrs/ipv6/sys/mips/include/mp_watchdog.h user/hrs/ipv6/sys/mips/include/pci_cfgreg.h user/hrs/ipv6/sys/mips/include/ppireg.h user/hrs/ipv6/sys/mips/include/timerreg.h user/hrs/ipv6/sys/mips/mips/elf64_machdep.c user/hrs/ipv6/sys/mips/mips/mainbus.c user/hrs/ipv6/sys/mips/nlm/intern_dev.c user/hrs/ipv6/sys/mips/nlm/uart_bus_xlp_iodi.c user/hrs/ipv6/sys/mips/nlm/uart_pci_xlp.c user/hrs/ipv6/sys/modules/amd/ user/hrs/ipv6/sys/modules/if_carp/ user/hrs/ipv6/sys/pc98/include/legacyvar.h user/hrs/ipv6/usr.bin/cpio/bsdcpio.1 user/hrs/ipv6/usr.bin/cpio/cmdline.c user/hrs/ipv6/usr.bin/cpio/config_freebsd.h user/hrs/ipv6/usr.bin/cpio/cpio.c user/hrs/ipv6/usr.bin/cpio/cpio.h user/hrs/ipv6/usr.bin/cpio/cpio_platform.h user/hrs/ipv6/usr.bin/cpio/test/main.c user/hrs/ipv6/usr.bin/cpio/test/test.h user/hrs/ipv6/usr.bin/cpio/test/test_0.c user/hrs/ipv6/usr.bin/cpio/test/test_basic.c user/hrs/ipv6/usr.bin/cpio/test/test_cmdline.c user/hrs/ipv6/usr.bin/cpio/test/test_format_newc.c user/hrs/ipv6/usr.bin/cpio/test/test_gcpio_compat.c user/hrs/ipv6/usr.bin/cpio/test/test_gcpio_compat_ref.bin.uu user/hrs/ipv6/usr.bin/cpio/test/test_gcpio_compat_ref.crc.uu user/hrs/ipv6/usr.bin/cpio/test/test_gcpio_compat_ref.newc.uu user/hrs/ipv6/usr.bin/cpio/test/test_gcpio_compat_ref.ustar.uu user/hrs/ipv6/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.bin.uu user/hrs/ipv6/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.crc.uu user/hrs/ipv6/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.newc.uu user/hrs/ipv6/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.ustar.uu user/hrs/ipv6/usr.bin/cpio/test/test_option_B_upper.c user/hrs/ipv6/usr.bin/cpio/test/test_option_C_upper.c user/hrs/ipv6/usr.bin/cpio/test/test_option_J_upper.c user/hrs/ipv6/usr.bin/cpio/test/test_option_L_upper.c user/hrs/ipv6/usr.bin/cpio/test/test_option_Z_upper.c user/hrs/ipv6/usr.bin/cpio/test/test_option_a.c user/hrs/ipv6/usr.bin/cpio/test/test_option_c.c user/hrs/ipv6/usr.bin/cpio/test/test_option_d.c user/hrs/ipv6/usr.bin/cpio/test/test_option_f.c user/hrs/ipv6/usr.bin/cpio/test/test_option_f.cpio.uu user/hrs/ipv6/usr.bin/cpio/test/test_option_help.c user/hrs/ipv6/usr.bin/cpio/test/test_option_l.c user/hrs/ipv6/usr.bin/cpio/test/test_option_lzma.c user/hrs/ipv6/usr.bin/cpio/test/test_option_m.c user/hrs/ipv6/usr.bin/cpio/test/test_option_m.cpio.uu user/hrs/ipv6/usr.bin/cpio/test/test_option_t.c user/hrs/ipv6/usr.bin/cpio/test/test_option_t.cpio.uu user/hrs/ipv6/usr.bin/cpio/test/test_option_t.stdout.uu user/hrs/ipv6/usr.bin/cpio/test/test_option_tv.stdout.uu user/hrs/ipv6/usr.bin/cpio/test/test_option_u.c user/hrs/ipv6/usr.bin/cpio/test/test_option_version.c user/hrs/ipv6/usr.bin/cpio/test/test_option_y.c user/hrs/ipv6/usr.bin/cpio/test/test_option_z.c user/hrs/ipv6/usr.bin/cpio/test/test_owner_parse.c user/hrs/ipv6/usr.bin/cpio/test/test_passthrough_dotdot.c user/hrs/ipv6/usr.bin/cpio/test/test_passthrough_reverse.c user/hrs/ipv6/usr.bin/cpio/test/test_pathmatch.c user/hrs/ipv6/usr.bin/grep/fastgrep.c user/hrs/ipv6/usr.bin/kdump/kdump_subr.h user/hrs/ipv6/usr.bin/tar/COPYING user/hrs/ipv6/usr.bin/tar/bsdtar.1 user/hrs/ipv6/usr.bin/tar/bsdtar.c user/hrs/ipv6/usr.bin/tar/bsdtar.h user/hrs/ipv6/usr.bin/tar/bsdtar_platform.h user/hrs/ipv6/usr.bin/tar/cmdline.c user/hrs/ipv6/usr.bin/tar/config_freebsd.h user/hrs/ipv6/usr.bin/tar/getdate.c user/hrs/ipv6/usr.bin/tar/read.c user/hrs/ipv6/usr.bin/tar/subst.c user/hrs/ipv6/usr.bin/tar/test/main.c user/hrs/ipv6/usr.bin/tar/test/test.h user/hrs/ipv6/usr.bin/tar/test/test_0.c user/hrs/ipv6/usr.bin/tar/test/test_basic.c user/hrs/ipv6/usr.bin/tar/test/test_copy.c user/hrs/ipv6/usr.bin/tar/test/test_empty_mtree.c user/hrs/ipv6/usr.bin/tar/test/test_getdate.c user/hrs/ipv6/usr.bin/tar/test/test_help.c user/hrs/ipv6/usr.bin/tar/test/test_option_T_upper.c user/hrs/ipv6/usr.bin/tar/test/test_option_q.c user/hrs/ipv6/usr.bin/tar/test/test_option_r.c user/hrs/ipv6/usr.bin/tar/test/test_option_s.c user/hrs/ipv6/usr.bin/tar/test/test_patterns.c user/hrs/ipv6/usr.bin/tar/test/test_patterns_2.tar.uu user/hrs/ipv6/usr.bin/tar/test/test_patterns_3.tar.uu user/hrs/ipv6/usr.bin/tar/test/test_patterns_4.tar.uu user/hrs/ipv6/usr.bin/tar/test/test_stdio.c user/hrs/ipv6/usr.bin/tar/test/test_strip_components.c user/hrs/ipv6/usr.bin/tar/test/test_symlink_dir.c user/hrs/ipv6/usr.bin/tar/test/test_version.c user/hrs/ipv6/usr.bin/tar/tree.c user/hrs/ipv6/usr.bin/tar/tree.h user/hrs/ipv6/usr.bin/tar/util.c user/hrs/ipv6/usr.bin/tar/write.c user/hrs/ipv6/usr.bin/wtmpcvt/ user/hrs/ipv6/usr.sbin/sade/config.c user/hrs/ipv6/usr.sbin/sade/dispatch.c user/hrs/ipv6/usr.sbin/sysinstall/ user/hrs/ipv6/usr.sbin/utxrm/ Modified: user/hrs/ipv6/COPYRIGHT user/hrs/ipv6/MAINTAINERS (contents, props changed) user/hrs/ipv6/Makefile user/hrs/ipv6/Makefile.inc1 user/hrs/ipv6/ObsoleteFiles.inc user/hrs/ipv6/UPDATING user/hrs/ipv6/bin/cat/cat.c user/hrs/ipv6/bin/chio/chio.c user/hrs/ipv6/bin/csh/Makefile user/hrs/ipv6/bin/csh/config.h user/hrs/ipv6/bin/csh/config_p.h user/hrs/ipv6/bin/df/df.1 user/hrs/ipv6/bin/df/df.c user/hrs/ipv6/bin/ed/io.c user/hrs/ipv6/bin/ed/main.c user/hrs/ipv6/bin/expr/expr.1 user/hrs/ipv6/bin/expr/expr.y user/hrs/ipv6/bin/kenv/kenv.1 user/hrs/ipv6/bin/ln/ln.c user/hrs/ipv6/bin/ls/ls.1 user/hrs/ipv6/bin/ls/ls.c user/hrs/ipv6/bin/ls/ls.h user/hrs/ipv6/bin/ls/print.c user/hrs/ipv6/bin/mkdir/mkdir.c user/hrs/ipv6/bin/mv/mv.c user/hrs/ipv6/bin/ps/extern.h user/hrs/ipv6/bin/ps/keyword.c user/hrs/ipv6/bin/ps/print.c user/hrs/ipv6/bin/ps/ps.1 user/hrs/ipv6/bin/ps/ps.c user/hrs/ipv6/bin/ps/ps.h user/hrs/ipv6/bin/pwait/pwait.1 user/hrs/ipv6/bin/rm/rm.c user/hrs/ipv6/bin/setfacl/setfacl.1 user/hrs/ipv6/bin/sh/arith_yacc.c user/hrs/ipv6/bin/sh/arith_yylex.c user/hrs/ipv6/bin/sh/cd.c user/hrs/ipv6/bin/sh/eval.c user/hrs/ipv6/bin/sh/eval.h user/hrs/ipv6/bin/sh/exec.c user/hrs/ipv6/bin/sh/exec.h user/hrs/ipv6/bin/sh/expand.c user/hrs/ipv6/bin/sh/expand.h user/hrs/ipv6/bin/sh/histedit.c user/hrs/ipv6/bin/sh/input.c user/hrs/ipv6/bin/sh/input.h user/hrs/ipv6/bin/sh/jobs.c user/hrs/ipv6/bin/sh/jobs.h user/hrs/ipv6/bin/sh/main.c user/hrs/ipv6/bin/sh/main.h user/hrs/ipv6/bin/sh/mksyntax.c user/hrs/ipv6/bin/sh/myhistedit.h user/hrs/ipv6/bin/sh/mystring.c user/hrs/ipv6/bin/sh/mystring.h user/hrs/ipv6/bin/sh/options.c user/hrs/ipv6/bin/sh/sh.1 user/hrs/ipv6/bin/sh/trap.c user/hrs/ipv6/bin/sh/var.c user/hrs/ipv6/bin/sh/var.h user/hrs/ipv6/bin/stty/modes.c user/hrs/ipv6/bin/stty/stty.1 user/hrs/ipv6/bin/test/test.c user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/dtrace.c user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/io/tst.fds.c user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_CREATEFAIL.many.exe (contents, props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/zdb/zdb.8 user/hrs/ipv6/cddl/contrib/opensolaris/cmd/zdb/zdb.c user/hrs/ipv6/cddl/contrib/opensolaris/cmd/zfs/zfs.8 user/hrs/ipv6/cddl/contrib/opensolaris/cmd/zfs/zfs_iter.c user/hrs/ipv6/cddl/contrib/opensolaris/cmd/zfs/zfs_iter.h user/hrs/ipv6/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c user/hrs/ipv6/cddl/contrib/opensolaris/cmd/zpool/zpool.8 user/hrs/ipv6/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c user/hrs/ipv6/cddl/contrib/opensolaris/cmd/zstreamdump/zstreamdump.1 user/hrs/ipv6/cddl/contrib/opensolaris/cmd/ztest/ztest.c user/hrs/ipv6/cddl/contrib/opensolaris/head/thread.h user/hrs/ipv6/cddl/contrib/opensolaris/lib/libdtrace/common/drti.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libdtrace/common/dt_handle.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libdtrace/i386/dt_isadep.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_changelist.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_impl.h user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h user/hrs/ipv6/cddl/contrib/opensolaris/lib/libzpool/common/taskq.c user/hrs/ipv6/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c user/hrs/ipv6/cddl/contrib/opensolaris/tools/ctf/cvt/ctfmerge.c user/hrs/ipv6/cddl/contrib/opensolaris/tools/ctf/cvt/ctftools.h user/hrs/ipv6/cddl/contrib/opensolaris/tools/ctf/cvt/output.c user/hrs/ipv6/cddl/lib/Makefile user/hrs/ipv6/cddl/lib/drti/Makefile user/hrs/ipv6/cddl/lib/libdtrace/Makefile user/hrs/ipv6/cddl/lib/libzfs/Makefile user/hrs/ipv6/cddl/sbin/zfs/Makefile user/hrs/ipv6/cddl/sbin/zpool/Makefile user/hrs/ipv6/cddl/usr.bin/zinject/Makefile user/hrs/ipv6/cddl/usr.bin/ztest/Makefile user/hrs/ipv6/cddl/usr.sbin/Makefile user/hrs/ipv6/cddl/usr.sbin/zdb/Makefile user/hrs/ipv6/contrib/bind9/CHANGES user/hrs/ipv6/contrib/bind9/COPYRIGHT user/hrs/ipv6/contrib/bind9/FAQ.xml user/hrs/ipv6/contrib/bind9/Makefile.in user/hrs/ipv6/contrib/bind9/README user/hrs/ipv6/contrib/bind9/acconfig.h user/hrs/ipv6/contrib/bind9/bin/Makefile.in user/hrs/ipv6/contrib/bind9/bin/check/Makefile.in user/hrs/ipv6/contrib/bind9/bin/check/check-tool.c user/hrs/ipv6/contrib/bind9/bin/check/check-tool.h user/hrs/ipv6/contrib/bind9/bin/check/named-checkconf.8 user/hrs/ipv6/contrib/bind9/bin/check/named-checkconf.c user/hrs/ipv6/contrib/bind9/bin/check/named-checkconf.docbook user/hrs/ipv6/contrib/bind9/bin/check/named-checkconf.html user/hrs/ipv6/contrib/bind9/bin/check/named-checkzone.8 user/hrs/ipv6/contrib/bind9/bin/check/named-checkzone.c user/hrs/ipv6/contrib/bind9/bin/check/named-checkzone.docbook user/hrs/ipv6/contrib/bind9/bin/check/named-checkzone.html user/hrs/ipv6/contrib/bind9/bin/confgen/Makefile.in user/hrs/ipv6/contrib/bind9/bin/confgen/ddns-confgen.8 user/hrs/ipv6/contrib/bind9/bin/confgen/ddns-confgen.c user/hrs/ipv6/contrib/bind9/bin/confgen/ddns-confgen.docbook user/hrs/ipv6/contrib/bind9/bin/confgen/ddns-confgen.html user/hrs/ipv6/contrib/bind9/bin/confgen/include/confgen/os.h user/hrs/ipv6/contrib/bind9/bin/confgen/keygen.c user/hrs/ipv6/contrib/bind9/bin/confgen/keygen.h user/hrs/ipv6/contrib/bind9/bin/confgen/rndc-confgen.8 user/hrs/ipv6/contrib/bind9/bin/confgen/rndc-confgen.c user/hrs/ipv6/contrib/bind9/bin/confgen/rndc-confgen.docbook user/hrs/ipv6/contrib/bind9/bin/confgen/rndc-confgen.html user/hrs/ipv6/contrib/bind9/bin/confgen/unix/Makefile.in user/hrs/ipv6/contrib/bind9/bin/confgen/unix/os.c user/hrs/ipv6/contrib/bind9/bin/confgen/util.c user/hrs/ipv6/contrib/bind9/bin/confgen/util.h user/hrs/ipv6/contrib/bind9/bin/dig/Makefile.in user/hrs/ipv6/contrib/bind9/bin/dig/dig.1 user/hrs/ipv6/contrib/bind9/bin/dig/dig.c user/hrs/ipv6/contrib/bind9/bin/dig/dig.docbook user/hrs/ipv6/contrib/bind9/bin/dig/dig.html user/hrs/ipv6/contrib/bind9/bin/dig/dighost.c user/hrs/ipv6/contrib/bind9/bin/dig/host.1 user/hrs/ipv6/contrib/bind9/bin/dig/host.c user/hrs/ipv6/contrib/bind9/bin/dig/host.docbook user/hrs/ipv6/contrib/bind9/bin/dig/host.html user/hrs/ipv6/contrib/bind9/bin/dig/include/dig/dig.h user/hrs/ipv6/contrib/bind9/bin/dig/nslookup.1 user/hrs/ipv6/contrib/bind9/bin/dig/nslookup.c user/hrs/ipv6/contrib/bind9/bin/dig/nslookup.docbook user/hrs/ipv6/contrib/bind9/bin/dig/nslookup.html user/hrs/ipv6/contrib/bind9/bin/dnssec/Makefile.in user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-keygen.8 user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-keygen.c user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-keygen.docbook user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-keygen.html user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-revoke.8 user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-revoke.c user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-revoke.docbook user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-revoke.html user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-settime.8 user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-settime.c user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-settime.docbook user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-settime.html user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-signzone.8 user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-signzone.c user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-signzone.docbook user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssec-signzone.html user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssectool.c user/hrs/ipv6/contrib/bind9/bin/dnssec/dnssectool.h user/hrs/ipv6/contrib/bind9/bin/named/Makefile.in user/hrs/ipv6/contrib/bind9/bin/named/bind.keys.h user/hrs/ipv6/contrib/bind9/bin/named/bind9.xsl user/hrs/ipv6/contrib/bind9/bin/named/bind9.xsl.h user/hrs/ipv6/contrib/bind9/bin/named/builtin.c user/hrs/ipv6/contrib/bind9/bin/named/client.c user/hrs/ipv6/contrib/bind9/bin/named/config.c user/hrs/ipv6/contrib/bind9/bin/named/control.c user/hrs/ipv6/contrib/bind9/bin/named/controlconf.c user/hrs/ipv6/contrib/bind9/bin/named/convertxsl.pl user/hrs/ipv6/contrib/bind9/bin/named/include/dlz/dlz_dlopen_driver.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/builtin.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/client.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/config.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/control.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/globals.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/interfacemgr.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/listenlist.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/log.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/logconf.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/lwaddr.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/lwdclient.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/lwresd.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/lwsearch.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/main.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/notify.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/ns_smf_globals.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/query.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/server.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/sortlist.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/statschannel.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/tkeyconf.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/tsigconf.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/types.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/update.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/xfrout.h user/hrs/ipv6/contrib/bind9/bin/named/include/named/zoneconf.h user/hrs/ipv6/contrib/bind9/bin/named/interfacemgr.c user/hrs/ipv6/contrib/bind9/bin/named/listenlist.c user/hrs/ipv6/contrib/bind9/bin/named/log.c user/hrs/ipv6/contrib/bind9/bin/named/logconf.c user/hrs/ipv6/contrib/bind9/bin/named/lwaddr.c user/hrs/ipv6/contrib/bind9/bin/named/lwdclient.c user/hrs/ipv6/contrib/bind9/bin/named/lwderror.c user/hrs/ipv6/contrib/bind9/bin/named/lwdgabn.c user/hrs/ipv6/contrib/bind9/bin/named/lwdgnba.c user/hrs/ipv6/contrib/bind9/bin/named/lwdgrbn.c user/hrs/ipv6/contrib/bind9/bin/named/lwdnoop.c user/hrs/ipv6/contrib/bind9/bin/named/lwresd.8 user/hrs/ipv6/contrib/bind9/bin/named/lwresd.c user/hrs/ipv6/contrib/bind9/bin/named/lwresd.docbook user/hrs/ipv6/contrib/bind9/bin/named/lwresd.html user/hrs/ipv6/contrib/bind9/bin/named/lwsearch.c user/hrs/ipv6/contrib/bind9/bin/named/main.c user/hrs/ipv6/contrib/bind9/bin/named/named.8 user/hrs/ipv6/contrib/bind9/bin/named/named.conf.5 user/hrs/ipv6/contrib/bind9/bin/named/named.conf.docbook user/hrs/ipv6/contrib/bind9/bin/named/named.conf.html user/hrs/ipv6/contrib/bind9/bin/named/named.docbook user/hrs/ipv6/contrib/bind9/bin/named/named.html user/hrs/ipv6/contrib/bind9/bin/named/notify.c user/hrs/ipv6/contrib/bind9/bin/named/query.c user/hrs/ipv6/contrib/bind9/bin/named/server.c user/hrs/ipv6/contrib/bind9/bin/named/sortlist.c user/hrs/ipv6/contrib/bind9/bin/named/statschannel.c user/hrs/ipv6/contrib/bind9/bin/named/tkeyconf.c user/hrs/ipv6/contrib/bind9/bin/named/tsigconf.c user/hrs/ipv6/contrib/bind9/bin/named/unix/Makefile.in user/hrs/ipv6/contrib/bind9/bin/named/unix/dlz_dlopen_driver.c user/hrs/ipv6/contrib/bind9/bin/named/unix/include/named/os.h user/hrs/ipv6/contrib/bind9/bin/named/unix/os.c user/hrs/ipv6/contrib/bind9/bin/named/update.c user/hrs/ipv6/contrib/bind9/bin/named/xfrout.c user/hrs/ipv6/contrib/bind9/bin/named/zoneconf.c user/hrs/ipv6/contrib/bind9/bin/nsupdate/Makefile.in user/hrs/ipv6/contrib/bind9/bin/nsupdate/nsupdate.1 user/hrs/ipv6/contrib/bind9/bin/nsupdate/nsupdate.c user/hrs/ipv6/contrib/bind9/bin/nsupdate/nsupdate.docbook user/hrs/ipv6/contrib/bind9/bin/nsupdate/nsupdate.html user/hrs/ipv6/contrib/bind9/bin/rndc/Makefile.in user/hrs/ipv6/contrib/bind9/bin/rndc/include/rndc/os.h user/hrs/ipv6/contrib/bind9/bin/rndc/rndc.8 user/hrs/ipv6/contrib/bind9/bin/rndc/rndc.c user/hrs/ipv6/contrib/bind9/bin/rndc/rndc.conf user/hrs/ipv6/contrib/bind9/bin/rndc/rndc.conf.5 user/hrs/ipv6/contrib/bind9/bin/rndc/rndc.conf.docbook user/hrs/ipv6/contrib/bind9/bin/rndc/rndc.conf.html user/hrs/ipv6/contrib/bind9/bin/rndc/rndc.docbook user/hrs/ipv6/contrib/bind9/bin/rndc/rndc.html user/hrs/ipv6/contrib/bind9/bin/rndc/util.c user/hrs/ipv6/contrib/bind9/bin/rndc/util.h user/hrs/ipv6/contrib/bind9/bin/tools/Makefile.in user/hrs/ipv6/contrib/bind9/bin/tools/arpaname.1 user/hrs/ipv6/contrib/bind9/bin/tools/arpaname.c user/hrs/ipv6/contrib/bind9/bin/tools/arpaname.docbook user/hrs/ipv6/contrib/bind9/bin/tools/arpaname.html user/hrs/ipv6/contrib/bind9/bin/tools/genrandom.8 user/hrs/ipv6/contrib/bind9/bin/tools/genrandom.c user/hrs/ipv6/contrib/bind9/bin/tools/genrandom.docbook user/hrs/ipv6/contrib/bind9/bin/tools/genrandom.html user/hrs/ipv6/contrib/bind9/bin/tools/isc-hmac-fixup.8 user/hrs/ipv6/contrib/bind9/bin/tools/isc-hmac-fixup.c user/hrs/ipv6/contrib/bind9/bin/tools/isc-hmac-fixup.docbook user/hrs/ipv6/contrib/bind9/bin/tools/isc-hmac-fixup.html user/hrs/ipv6/contrib/bind9/bin/tools/named-journalprint.8 user/hrs/ipv6/contrib/bind9/bin/tools/named-journalprint.c user/hrs/ipv6/contrib/bind9/bin/tools/named-journalprint.docbook user/hrs/ipv6/contrib/bind9/bin/tools/named-journalprint.html user/hrs/ipv6/contrib/bind9/bin/tools/nsec3hash.8 user/hrs/ipv6/contrib/bind9/bin/tools/nsec3hash.c user/hrs/ipv6/contrib/bind9/bin/tools/nsec3hash.docbook user/hrs/ipv6/contrib/bind9/bin/tools/nsec3hash.html user/hrs/ipv6/contrib/bind9/config.h.in user/hrs/ipv6/contrib/bind9/config.threads.in user/hrs/ipv6/contrib/bind9/configure.in user/hrs/ipv6/contrib/bind9/doc/Makefile.in user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM-book.xml user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch01.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch02.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch03.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch04.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch05.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch06.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch07.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch08.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch09.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.ch10.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.html user/hrs/ipv6/contrib/bind9/doc/arm/Bv9ARM.pdf user/hrs/ipv6/contrib/bind9/doc/arm/Makefile.in user/hrs/ipv6/contrib/bind9/doc/arm/README-SGML user/hrs/ipv6/contrib/bind9/doc/arm/dnssec.xml user/hrs/ipv6/contrib/bind9/doc/arm/libdns.xml user/hrs/ipv6/contrib/bind9/doc/arm/man.arpaname.html user/hrs/ipv6/contrib/bind9/doc/arm/man.ddns-confgen.html user/hrs/ipv6/contrib/bind9/doc/arm/man.dig.html user/hrs/ipv6/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html user/hrs/ipv6/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html user/hrs/ipv6/contrib/bind9/doc/arm/man.dnssec-keygen.html user/hrs/ipv6/contrib/bind9/doc/arm/man.dnssec-revoke.html user/hrs/ipv6/contrib/bind9/doc/arm/man.dnssec-settime.html user/hrs/ipv6/contrib/bind9/doc/arm/man.dnssec-signzone.html user/hrs/ipv6/contrib/bind9/doc/arm/man.genrandom.html user/hrs/ipv6/contrib/bind9/doc/arm/man.host.html user/hrs/ipv6/contrib/bind9/doc/arm/man.isc-hmac-fixup.html user/hrs/ipv6/contrib/bind9/doc/arm/man.named-checkconf.html user/hrs/ipv6/contrib/bind9/doc/arm/man.named-checkzone.html user/hrs/ipv6/contrib/bind9/doc/arm/man.named-journalprint.html user/hrs/ipv6/contrib/bind9/doc/arm/man.named.html user/hrs/ipv6/contrib/bind9/doc/arm/man.nsec3hash.html user/hrs/ipv6/contrib/bind9/doc/arm/man.nsupdate.html user/hrs/ipv6/contrib/bind9/doc/arm/man.rndc-confgen.html user/hrs/ipv6/contrib/bind9/doc/arm/man.rndc.conf.html user/hrs/ipv6/contrib/bind9/doc/arm/man.rndc.html user/hrs/ipv6/contrib/bind9/doc/arm/managed-keys.xml user/hrs/ipv6/contrib/bind9/doc/arm/pkcs11.xml user/hrs/ipv6/contrib/bind9/doc/misc/Makefile.in user/hrs/ipv6/contrib/bind9/doc/misc/dnssec user/hrs/ipv6/contrib/bind9/doc/misc/format-options.pl user/hrs/ipv6/contrib/bind9/doc/misc/ipv6 user/hrs/ipv6/contrib/bind9/doc/misc/migration user/hrs/ipv6/contrib/bind9/doc/misc/migration-4to9 user/hrs/ipv6/contrib/bind9/doc/misc/options user/hrs/ipv6/contrib/bind9/doc/misc/rfc-compliance user/hrs/ipv6/contrib/bind9/doc/misc/roadmap user/hrs/ipv6/contrib/bind9/doc/misc/sdb user/hrs/ipv6/contrib/bind9/doc/misc/sort-options.pl user/hrs/ipv6/contrib/bind9/isc-config.sh.in user/hrs/ipv6/contrib/bind9/lib/Makefile.in user/hrs/ipv6/contrib/bind9/lib/bind9/Makefile.in user/hrs/ipv6/contrib/bind9/lib/bind9/api user/hrs/ipv6/contrib/bind9/lib/bind9/check.c user/hrs/ipv6/contrib/bind9/lib/bind9/getaddresses.c user/hrs/ipv6/contrib/bind9/lib/bind9/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/bind9/include/bind9/Makefile.in user/hrs/ipv6/contrib/bind9/lib/bind9/include/bind9/check.h user/hrs/ipv6/contrib/bind9/lib/bind9/include/bind9/getaddresses.h user/hrs/ipv6/contrib/bind9/lib/bind9/include/bind9/version.h user/hrs/ipv6/contrib/bind9/lib/bind9/version.c user/hrs/ipv6/contrib/bind9/lib/dns/Makefile.in user/hrs/ipv6/contrib/bind9/lib/dns/acache.c user/hrs/ipv6/contrib/bind9/lib/dns/acl.c user/hrs/ipv6/contrib/bind9/lib/dns/adb.c user/hrs/ipv6/contrib/bind9/lib/dns/api user/hrs/ipv6/contrib/bind9/lib/dns/byaddr.c user/hrs/ipv6/contrib/bind9/lib/dns/cache.c user/hrs/ipv6/contrib/bind9/lib/dns/callbacks.c user/hrs/ipv6/contrib/bind9/lib/dns/client.c user/hrs/ipv6/contrib/bind9/lib/dns/compress.c user/hrs/ipv6/contrib/bind9/lib/dns/db.c user/hrs/ipv6/contrib/bind9/lib/dns/dbiterator.c user/hrs/ipv6/contrib/bind9/lib/dns/dbtable.c user/hrs/ipv6/contrib/bind9/lib/dns/diff.c user/hrs/ipv6/contrib/bind9/lib/dns/dispatch.c user/hrs/ipv6/contrib/bind9/lib/dns/dlz.c user/hrs/ipv6/contrib/bind9/lib/dns/dns64.c user/hrs/ipv6/contrib/bind9/lib/dns/dnssec.c user/hrs/ipv6/contrib/bind9/lib/dns/ds.c user/hrs/ipv6/contrib/bind9/lib/dns/dst_api.c user/hrs/ipv6/contrib/bind9/lib/dns/dst_internal.h user/hrs/ipv6/contrib/bind9/lib/dns/dst_lib.c user/hrs/ipv6/contrib/bind9/lib/dns/dst_openssl.h user/hrs/ipv6/contrib/bind9/lib/dns/dst_parse.c user/hrs/ipv6/contrib/bind9/lib/dns/dst_parse.h user/hrs/ipv6/contrib/bind9/lib/dns/dst_result.c user/hrs/ipv6/contrib/bind9/lib/dns/ecdb.c user/hrs/ipv6/contrib/bind9/lib/dns/forward.c user/hrs/ipv6/contrib/bind9/lib/dns/gen-unix.h user/hrs/ipv6/contrib/bind9/lib/dns/gen.c user/hrs/ipv6/contrib/bind9/lib/dns/gssapi_link.c user/hrs/ipv6/contrib/bind9/lib/dns/gssapictx.c user/hrs/ipv6/contrib/bind9/lib/dns/hmac_link.c user/hrs/ipv6/contrib/bind9/lib/dns/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/Makefile.in user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/acache.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/acl.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/adb.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/bit.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/byaddr.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/cache.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/callbacks.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/cert.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/client.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/compress.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/db.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/dbiterator.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/dbtable.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/diff.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/dispatch.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/dlz.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/dlz_dlopen.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/dns64.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/dnssec.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/ds.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/ecdb.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/events.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/fixedname.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/forward.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/iptable.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/journal.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/keydata.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/keyflags.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/keytable.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/keyvalues.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/lib.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/log.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/lookup.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/master.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/masterdump.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/message.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/name.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/ncache.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/nsec.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/nsec3.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/opcode.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/order.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/peer.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/portlist.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/private.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rbt.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rcode.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rdata.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rdataclass.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rdatalist.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rdataset.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rdatasetiter.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rdataslab.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rdatatype.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/request.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/resolver.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/result.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rootns.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rpz.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/rriterator.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/sdb.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/sdlz.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/secalg.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/secproto.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/soa.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/ssu.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/stats.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/tcpmsg.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/time.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/timer.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/tkey.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/tsec.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/tsig.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/ttl.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/types.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/validator.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/version.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/view.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/xfrin.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/zone.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/zonekey.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dns/zt.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dst/Makefile.in user/hrs/ipv6/contrib/bind9/lib/dns/include/dst/dst.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dst/gssapi.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dst/lib.h user/hrs/ipv6/contrib/bind9/lib/dns/include/dst/result.h user/hrs/ipv6/contrib/bind9/lib/dns/iptable.c user/hrs/ipv6/contrib/bind9/lib/dns/journal.c user/hrs/ipv6/contrib/bind9/lib/dns/key.c user/hrs/ipv6/contrib/bind9/lib/dns/keydata.c user/hrs/ipv6/contrib/bind9/lib/dns/keytable.c user/hrs/ipv6/contrib/bind9/lib/dns/lib.c user/hrs/ipv6/contrib/bind9/lib/dns/log.c user/hrs/ipv6/contrib/bind9/lib/dns/lookup.c user/hrs/ipv6/contrib/bind9/lib/dns/master.c user/hrs/ipv6/contrib/bind9/lib/dns/masterdump.c user/hrs/ipv6/contrib/bind9/lib/dns/message.c user/hrs/ipv6/contrib/bind9/lib/dns/name.c user/hrs/ipv6/contrib/bind9/lib/dns/ncache.c user/hrs/ipv6/contrib/bind9/lib/dns/nsec.c user/hrs/ipv6/contrib/bind9/lib/dns/nsec3.c user/hrs/ipv6/contrib/bind9/lib/dns/openssl_link.c user/hrs/ipv6/contrib/bind9/lib/dns/openssldh_link.c user/hrs/ipv6/contrib/bind9/lib/dns/openssldsa_link.c user/hrs/ipv6/contrib/bind9/lib/dns/opensslgost_link.c user/hrs/ipv6/contrib/bind9/lib/dns/opensslrsa_link.c user/hrs/ipv6/contrib/bind9/lib/dns/order.c user/hrs/ipv6/contrib/bind9/lib/dns/peer.c user/hrs/ipv6/contrib/bind9/lib/dns/portlist.c user/hrs/ipv6/contrib/bind9/lib/dns/private.c user/hrs/ipv6/contrib/bind9/lib/dns/rbt.c user/hrs/ipv6/contrib/bind9/lib/dns/rbtdb.c user/hrs/ipv6/contrib/bind9/lib/dns/rbtdb.h user/hrs/ipv6/contrib/bind9/lib/dns/rbtdb64.c user/hrs/ipv6/contrib/bind9/lib/dns/rbtdb64.h user/hrs/ipv6/contrib/bind9/lib/dns/rcode.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/any_255/tsig_250.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/any_255/tsig_250.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/ch_3/a_1.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/ch_3/a_1.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/afsdb_18.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/afsdb_18.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/cert_37.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/cert_37.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/cname_5.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/cname_5.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/dlv_32769.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/dname_39.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/dname_39.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/dnskey_48.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/dnskey_48.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/ds_43.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/ds_43.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/gpos_27.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/gpos_27.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/hinfo_13.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/hinfo_13.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/hip_55.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/hip_55.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/isdn_20.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/isdn_20.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/key_25.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/key_25.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/keydata_65533.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/keydata_65533.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/loc_29.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/loc_29.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mb_7.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mb_7.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/md_3.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/md_3.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mf_4.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mf_4.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mg_8.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mg_8.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/minfo_14.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/minfo_14.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mr_9.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mr_9.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mx_15.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/mx_15.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/ns_2.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/ns_2.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/nsec3_50.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/nsec3_50.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/nsec_47.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/nsec_47.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/null_10.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/null_10.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/nxt_30.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/nxt_30.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/opt_41.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/opt_41.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/proforma.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/proforma.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/ptr_12.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/ptr_12.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/rp_17.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/rp_17.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/rrsig_46.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/rrsig_46.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/rt_21.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/rt_21.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/sig_24.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/sig_24.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/soa_6.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/soa_6.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/spf_99.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/spf_99.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/sshfp_44.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/sshfp_44.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/tkey_249.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/tkey_249.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/txt_16.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/txt_16.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/unspec_103.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/unspec_103.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/x25_19.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/generic/x25_19.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/hs_4/a_1.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/hs_4/a_1.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/a6_38.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/a6_38.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/a_1.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/a_1.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/apl_42.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/apl_42.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/kx_36.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/kx_36.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/naptr_35.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/naptr_35.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/nsap_22.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/nsap_22.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/px_26.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/px_26.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/srv_33.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/srv_33.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/wks_11.c user/hrs/ipv6/contrib/bind9/lib/dns/rdata/in_1/wks_11.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/rdatastructpre.h user/hrs/ipv6/contrib/bind9/lib/dns/rdata/rdatastructsuf.h user/hrs/ipv6/contrib/bind9/lib/dns/rdatalist.c user/hrs/ipv6/contrib/bind9/lib/dns/rdatalist_p.h user/hrs/ipv6/contrib/bind9/lib/dns/rdataset.c user/hrs/ipv6/contrib/bind9/lib/dns/rdatasetiter.c user/hrs/ipv6/contrib/bind9/lib/dns/rdataslab.c user/hrs/ipv6/contrib/bind9/lib/dns/request.c user/hrs/ipv6/contrib/bind9/lib/dns/resolver.c user/hrs/ipv6/contrib/bind9/lib/dns/result.c user/hrs/ipv6/contrib/bind9/lib/dns/rootns.c user/hrs/ipv6/contrib/bind9/lib/dns/rpz.c user/hrs/ipv6/contrib/bind9/lib/dns/rriterator.c user/hrs/ipv6/contrib/bind9/lib/dns/sdb.c user/hrs/ipv6/contrib/bind9/lib/dns/sdlz.c user/hrs/ipv6/contrib/bind9/lib/dns/soa.c user/hrs/ipv6/contrib/bind9/lib/dns/spnego.asn1 user/hrs/ipv6/contrib/bind9/lib/dns/spnego.c user/hrs/ipv6/contrib/bind9/lib/dns/spnego.h user/hrs/ipv6/contrib/bind9/lib/dns/spnego_asn1.c user/hrs/ipv6/contrib/bind9/lib/dns/spnego_asn1.pl user/hrs/ipv6/contrib/bind9/lib/dns/ssu.c user/hrs/ipv6/contrib/bind9/lib/dns/ssu_external.c user/hrs/ipv6/contrib/bind9/lib/dns/stats.c user/hrs/ipv6/contrib/bind9/lib/dns/tcpmsg.c user/hrs/ipv6/contrib/bind9/lib/dns/time.c user/hrs/ipv6/contrib/bind9/lib/dns/timer.c user/hrs/ipv6/contrib/bind9/lib/dns/tkey.c user/hrs/ipv6/contrib/bind9/lib/dns/tsec.c user/hrs/ipv6/contrib/bind9/lib/dns/tsig.c user/hrs/ipv6/contrib/bind9/lib/dns/ttl.c user/hrs/ipv6/contrib/bind9/lib/dns/validator.c user/hrs/ipv6/contrib/bind9/lib/dns/version.c user/hrs/ipv6/contrib/bind9/lib/dns/view.c user/hrs/ipv6/contrib/bind9/lib/dns/xfrin.c user/hrs/ipv6/contrib/bind9/lib/dns/zone.c user/hrs/ipv6/contrib/bind9/lib/dns/zonekey.c user/hrs/ipv6/contrib/bind9/lib/dns/zt.c user/hrs/ipv6/contrib/bind9/lib/export/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/dns/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/dns/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/dns/include/dns/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/dns/include/dst/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/irs/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/irs/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/irs/include/irs/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/include/isc/bind9.h user/hrs/ipv6/contrib/bind9/lib/export/isc/nls/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/nothreads/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/nothreads/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/nothreads/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/pthreads/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/pthreads/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/pthreads/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/unix/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/unix/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isc/unix/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isccfg/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isccfg/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/isccfg/include/isccfg/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/samples/Makefile-postinstall.in user/hrs/ipv6/contrib/bind9/lib/export/samples/Makefile.in user/hrs/ipv6/contrib/bind9/lib/export/samples/nsprobe.c user/hrs/ipv6/contrib/bind9/lib/export/samples/sample-async.c user/hrs/ipv6/contrib/bind9/lib/export/samples/sample-gai.c user/hrs/ipv6/contrib/bind9/lib/export/samples/sample-request.c user/hrs/ipv6/contrib/bind9/lib/export/samples/sample-update.c user/hrs/ipv6/contrib/bind9/lib/export/samples/sample.c user/hrs/ipv6/contrib/bind9/lib/irs/Makefile.in user/hrs/ipv6/contrib/bind9/lib/irs/api user/hrs/ipv6/contrib/bind9/lib/irs/context.c user/hrs/ipv6/contrib/bind9/lib/irs/dnsconf.c user/hrs/ipv6/contrib/bind9/lib/irs/gai_strerror.c user/hrs/ipv6/contrib/bind9/lib/irs/getaddrinfo.c user/hrs/ipv6/contrib/bind9/lib/irs/getnameinfo.c user/hrs/ipv6/contrib/bind9/lib/irs/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/irs/include/irs/Makefile.in user/hrs/ipv6/contrib/bind9/lib/irs/include/irs/context.h user/hrs/ipv6/contrib/bind9/lib/irs/include/irs/dnsconf.h user/hrs/ipv6/contrib/bind9/lib/irs/include/irs/netdb.h.in user/hrs/ipv6/contrib/bind9/lib/irs/include/irs/platform.h.in user/hrs/ipv6/contrib/bind9/lib/irs/include/irs/resconf.h user/hrs/ipv6/contrib/bind9/lib/irs/include/irs/types.h user/hrs/ipv6/contrib/bind9/lib/irs/include/irs/version.h user/hrs/ipv6/contrib/bind9/lib/irs/resconf.c user/hrs/ipv6/contrib/bind9/lib/irs/version.c user/hrs/ipv6/contrib/bind9/lib/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/alpha/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/alpha/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/alpha/include/isc/atomic.h user/hrs/ipv6/contrib/bind9/lib/isc/api user/hrs/ipv6/contrib/bind9/lib/isc/app_api.c user/hrs/ipv6/contrib/bind9/lib/isc/assertions.c user/hrs/ipv6/contrib/bind9/lib/isc/backtrace-emptytbl.c user/hrs/ipv6/contrib/bind9/lib/isc/backtrace.c user/hrs/ipv6/contrib/bind9/lib/isc/base32.c user/hrs/ipv6/contrib/bind9/lib/isc/base64.c user/hrs/ipv6/contrib/bind9/lib/isc/bitstring.c user/hrs/ipv6/contrib/bind9/lib/isc/buffer.c user/hrs/ipv6/contrib/bind9/lib/isc/bufferlist.c user/hrs/ipv6/contrib/bind9/lib/isc/commandline.c user/hrs/ipv6/contrib/bind9/lib/isc/entropy.c user/hrs/ipv6/contrib/bind9/lib/isc/error.c user/hrs/ipv6/contrib/bind9/lib/isc/event.c user/hrs/ipv6/contrib/bind9/lib/isc/fsaccess.c user/hrs/ipv6/contrib/bind9/lib/isc/hash.c user/hrs/ipv6/contrib/bind9/lib/isc/heap.c user/hrs/ipv6/contrib/bind9/lib/isc/hex.c user/hrs/ipv6/contrib/bind9/lib/isc/hmacmd5.c user/hrs/ipv6/contrib/bind9/lib/isc/hmacsha.c user/hrs/ipv6/contrib/bind9/lib/isc/httpd.c user/hrs/ipv6/contrib/bind9/lib/isc/ia64/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/ia64/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/ia64/include/isc/atomic.h user/hrs/ipv6/contrib/bind9/lib/isc/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/app.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/assertions.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/backtrace.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/base32.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/base64.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/bind9.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/bitstring.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/boolean.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/buffer.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/bufferlist.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/commandline.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/entropy.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/error.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/event.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/eventclass.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/file.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/formatcheck.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/fsaccess.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/hash.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/heap.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/hex.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/hmacmd5.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/hmacsha.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/httpd.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/interfaceiter.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/ipv6.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/iterated_hash.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/lang.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/lex.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/lfsr.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/lib.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/list.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/log.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/magic.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/md5.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/mem.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/msgcat.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/msgs.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/mutexblock.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/namespace.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/netaddr.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/netscope.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/ondestroy.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/os.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/parseint.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/platform.h.in user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/portset.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/print.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/quota.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/radix.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/random.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/ratelimiter.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/refcount.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/region.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/resource.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/result.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/resultclass.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/rwlock.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/serial.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/sha1.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/sha2.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/sockaddr.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/socket.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/stats.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/stdio.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/stdlib.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/string.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/symtab.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/task.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/taskpool.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/timer.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/types.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/util.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/version.h user/hrs/ipv6/contrib/bind9/lib/isc/include/isc/xml.h user/hrs/ipv6/contrib/bind9/lib/isc/inet_aton.c user/hrs/ipv6/contrib/bind9/lib/isc/inet_ntop.c user/hrs/ipv6/contrib/bind9/lib/isc/inet_pton.c user/hrs/ipv6/contrib/bind9/lib/isc/iterated_hash.c user/hrs/ipv6/contrib/bind9/lib/isc/lex.c user/hrs/ipv6/contrib/bind9/lib/isc/lfsr.c user/hrs/ipv6/contrib/bind9/lib/isc/lib.c user/hrs/ipv6/contrib/bind9/lib/isc/log.c user/hrs/ipv6/contrib/bind9/lib/isc/md5.c user/hrs/ipv6/contrib/bind9/lib/isc/mem.c user/hrs/ipv6/contrib/bind9/lib/isc/mem_api.c user/hrs/ipv6/contrib/bind9/lib/isc/mips/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/mips/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/mips/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/mips/include/isc/atomic.h user/hrs/ipv6/contrib/bind9/lib/isc/mutexblock.c user/hrs/ipv6/contrib/bind9/lib/isc/netaddr.c user/hrs/ipv6/contrib/bind9/lib/isc/netscope.c user/hrs/ipv6/contrib/bind9/lib/isc/nls/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/nls/msgcat.c user/hrs/ipv6/contrib/bind9/lib/isc/noatomic/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/noatomic/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/noatomic/include/isc/atomic.h user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/condition.c user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/include/isc/condition.h user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/include/isc/mutex.h user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/include/isc/once.h user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/include/isc/thread.h user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/mutex.c user/hrs/ipv6/contrib/bind9/lib/isc/nothreads/thread.c user/hrs/ipv6/contrib/bind9/lib/isc/ondestroy.c user/hrs/ipv6/contrib/bind9/lib/isc/parseint.c user/hrs/ipv6/contrib/bind9/lib/isc/portset.c user/hrs/ipv6/contrib/bind9/lib/isc/powerpc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/powerpc/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/powerpc/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/powerpc/include/isc/atomic.h user/hrs/ipv6/contrib/bind9/lib/isc/print.c user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/condition.c user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/include/isc/condition.h user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/include/isc/mutex.h user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/include/isc/once.h user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/include/isc/thread.h user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/mutex.c user/hrs/ipv6/contrib/bind9/lib/isc/pthreads/thread.c user/hrs/ipv6/contrib/bind9/lib/isc/quota.c user/hrs/ipv6/contrib/bind9/lib/isc/radix.c user/hrs/ipv6/contrib/bind9/lib/isc/random.c user/hrs/ipv6/contrib/bind9/lib/isc/ratelimiter.c user/hrs/ipv6/contrib/bind9/lib/isc/refcount.c user/hrs/ipv6/contrib/bind9/lib/isc/region.c user/hrs/ipv6/contrib/bind9/lib/isc/result.c user/hrs/ipv6/contrib/bind9/lib/isc/rwlock.c user/hrs/ipv6/contrib/bind9/lib/isc/serial.c user/hrs/ipv6/contrib/bind9/lib/isc/sha1.c user/hrs/ipv6/contrib/bind9/lib/isc/sha2.c user/hrs/ipv6/contrib/bind9/lib/isc/sockaddr.c user/hrs/ipv6/contrib/bind9/lib/isc/socket_api.c user/hrs/ipv6/contrib/bind9/lib/isc/sparc64/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/sparc64/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/sparc64/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/sparc64/include/isc/atomic.h user/hrs/ipv6/contrib/bind9/lib/isc/stats.c user/hrs/ipv6/contrib/bind9/lib/isc/string.c user/hrs/ipv6/contrib/bind9/lib/isc/strtoul.c user/hrs/ipv6/contrib/bind9/lib/isc/symtab.c user/hrs/ipv6/contrib/bind9/lib/isc/task.c user/hrs/ipv6/contrib/bind9/lib/isc/task_api.c user/hrs/ipv6/contrib/bind9/lib/isc/task_p.h user/hrs/ipv6/contrib/bind9/lib/isc/taskpool.c user/hrs/ipv6/contrib/bind9/lib/isc/timer.c user/hrs/ipv6/contrib/bind9/lib/isc/timer_api.c user/hrs/ipv6/contrib/bind9/lib/isc/timer_p.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/unix/app.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/dir.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/entropy.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/errno2result.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/errno2result.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/file.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/fsaccess.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/ifiter_getifaddrs.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/ifiter_ioctl.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/ifiter_sysctl.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/dir.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/int.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/keyboard.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/net.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/netdb.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/offset.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/stat.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/stdtime.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/strerror.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/syslog.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/include/isc/time.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/interfaceiter.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/ipv6.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/keyboard.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/net.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/os.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/resource.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/socket.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/socket_p.h user/hrs/ipv6/contrib/bind9/lib/isc/unix/stdio.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/stdtime.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/strerror.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/syslog.c user/hrs/ipv6/contrib/bind9/lib/isc/unix/time.c user/hrs/ipv6/contrib/bind9/lib/isc/version.c user/hrs/ipv6/contrib/bind9/lib/isc/x86_32/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/x86_32/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/x86_32/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/x86_32/include/isc/atomic.h user/hrs/ipv6/contrib/bind9/lib/isc/x86_64/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/x86_64/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/x86_64/include/isc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isc/x86_64/include/isc/atomic.h user/hrs/ipv6/contrib/bind9/lib/isccc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isccc/alist.c user/hrs/ipv6/contrib/bind9/lib/isccc/api user/hrs/ipv6/contrib/bind9/lib/isccc/base64.c user/hrs/ipv6/contrib/bind9/lib/isccc/cc.c user/hrs/ipv6/contrib/bind9/lib/isccc/ccmsg.c user/hrs/ipv6/contrib/bind9/lib/isccc/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/alist.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/base64.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/cc.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/ccmsg.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/events.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/lib.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/result.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/sexpr.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/symtab.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/symtype.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/types.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/util.h user/hrs/ipv6/contrib/bind9/lib/isccc/include/isccc/version.h user/hrs/ipv6/contrib/bind9/lib/isccc/lib.c user/hrs/ipv6/contrib/bind9/lib/isccc/result.c user/hrs/ipv6/contrib/bind9/lib/isccc/sexpr.c user/hrs/ipv6/contrib/bind9/lib/isccc/symtab.c user/hrs/ipv6/contrib/bind9/lib/isccc/version.c user/hrs/ipv6/contrib/bind9/lib/isccfg/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isccfg/aclconf.c user/hrs/ipv6/contrib/bind9/lib/isccfg/api user/hrs/ipv6/contrib/bind9/lib/isccfg/dnsconf.c user/hrs/ipv6/contrib/bind9/lib/isccfg/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isccfg/include/isccfg/Makefile.in user/hrs/ipv6/contrib/bind9/lib/isccfg/include/isccfg/aclconf.h user/hrs/ipv6/contrib/bind9/lib/isccfg/include/isccfg/cfg.h user/hrs/ipv6/contrib/bind9/lib/isccfg/include/isccfg/dnsconf.h user/hrs/ipv6/contrib/bind9/lib/isccfg/include/isccfg/grammar.h user/hrs/ipv6/contrib/bind9/lib/isccfg/include/isccfg/log.h user/hrs/ipv6/contrib/bind9/lib/isccfg/include/isccfg/namedconf.h user/hrs/ipv6/contrib/bind9/lib/isccfg/include/isccfg/version.h user/hrs/ipv6/contrib/bind9/lib/isccfg/log.c user/hrs/ipv6/contrib/bind9/lib/isccfg/namedconf.c user/hrs/ipv6/contrib/bind9/lib/isccfg/parser.c user/hrs/ipv6/contrib/bind9/lib/isccfg/version.c user/hrs/ipv6/contrib/bind9/lib/lwres/Makefile.in user/hrs/ipv6/contrib/bind9/lib/lwres/api user/hrs/ipv6/contrib/bind9/lib/lwres/assert_p.h user/hrs/ipv6/contrib/bind9/lib/lwres/context.c user/hrs/ipv6/contrib/bind9/lib/lwres/context_p.h user/hrs/ipv6/contrib/bind9/lib/lwres/gai_strerror.c user/hrs/ipv6/contrib/bind9/lib/lwres/getaddrinfo.c user/hrs/ipv6/contrib/bind9/lib/lwres/gethost.c user/hrs/ipv6/contrib/bind9/lib/lwres/getipnode.c user/hrs/ipv6/contrib/bind9/lib/lwres/getnameinfo.c user/hrs/ipv6/contrib/bind9/lib/lwres/getrrset.c user/hrs/ipv6/contrib/bind9/lib/lwres/herror.c user/hrs/ipv6/contrib/bind9/lib/lwres/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/Makefile.in user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/context.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/int.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/ipv6.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/lang.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/list.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/lwbuffer.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/lwpacket.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/lwres.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/netdb.h.in user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/platform.h.in user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/result.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/stdlib.h user/hrs/ipv6/contrib/bind9/lib/lwres/include/lwres/version.h user/hrs/ipv6/contrib/bind9/lib/lwres/lwbuffer.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwconfig.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwinetaton.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwinetntop.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwinetpton.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwpacket.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwres_gabn.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwres_gnba.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwres_grbn.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwres_noop.c user/hrs/ipv6/contrib/bind9/lib/lwres/lwresutil.c user/hrs/ipv6/contrib/bind9/lib/lwres/man/Makefile.in user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_buffer.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_buffer.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_buffer.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_config.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_config.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_config.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_context.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_context.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_context.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gabn.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gabn.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gabn.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gai_strerror.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gai_strerror.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gai_strerror.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gethostent.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gethostent.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gethostent.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getipnode.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getipnode.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getipnode.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getnameinfo.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getnameinfo.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getnameinfo.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gnba.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gnba.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_gnba.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_hstrerror.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_hstrerror.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_hstrerror.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_inetntop.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_inetntop.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_inetntop.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_noop.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_noop.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_noop.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_packet.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_packet.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_packet.html user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_resutil.3 user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_resutil.docbook user/hrs/ipv6/contrib/bind9/lib/lwres/man/lwres_resutil.html user/hrs/ipv6/contrib/bind9/lib/lwres/print.c user/hrs/ipv6/contrib/bind9/lib/lwres/print_p.h user/hrs/ipv6/contrib/bind9/lib/lwres/strtoul.c user/hrs/ipv6/contrib/bind9/lib/lwres/unix/Makefile.in user/hrs/ipv6/contrib/bind9/lib/lwres/unix/include/Makefile.in user/hrs/ipv6/contrib/bind9/lib/lwres/unix/include/lwres/Makefile.in user/hrs/ipv6/contrib/bind9/lib/lwres/unix/include/lwres/net.h user/hrs/ipv6/contrib/bind9/lib/lwres/version.c user/hrs/ipv6/contrib/bind9/make/Makefile.in user/hrs/ipv6/contrib/bind9/make/includes.in user/hrs/ipv6/contrib/bind9/make/mkdep.in user/hrs/ipv6/contrib/bind9/make/rules.in user/hrs/ipv6/contrib/bind9/mkinstalldirs user/hrs/ipv6/contrib/bind9/version user/hrs/ipv6/contrib/bsnmp/snmp_mibII/mibII.c user/hrs/ipv6/contrib/bsnmp/snmpd/main.c user/hrs/ipv6/contrib/bsnmp/snmpd/snmpmod.h user/hrs/ipv6/contrib/bzip2/bzip2recover.c user/hrs/ipv6/contrib/com_err/com_err.3 user/hrs/ipv6/contrib/com_err/com_err.c (contents, props changed) user/hrs/ipv6/contrib/com_err/com_err.h (contents, props changed) user/hrs/ipv6/contrib/com_err/com_right.h (contents, props changed) user/hrs/ipv6/contrib/com_err/compile_et.c (contents, props changed) user/hrs/ipv6/contrib/com_err/compile_et.h (contents, props changed) user/hrs/ipv6/contrib/com_err/error.c (contents, props changed) user/hrs/ipv6/contrib/com_err/lex.h (contents, props changed) user/hrs/ipv6/contrib/com_err/lex.l user/hrs/ipv6/contrib/com_err/parse.y user/hrs/ipv6/contrib/com_err/roken_rename.h (contents, props changed) user/hrs/ipv6/contrib/com_err/version-script.map user/hrs/ipv6/contrib/compiler-rt/LICENSE.TXT user/hrs/ipv6/contrib/compiler-rt/README.txt user/hrs/ipv6/contrib/compiler-rt/lib/absvdi2.c user/hrs/ipv6/contrib/compiler-rt/lib/absvsi2.c user/hrs/ipv6/contrib/compiler-rt/lib/absvti2.c user/hrs/ipv6/contrib/compiler-rt/lib/adddf3.c user/hrs/ipv6/contrib/compiler-rt/lib/addsf3.c user/hrs/ipv6/contrib/compiler-rt/lib/addvdi3.c user/hrs/ipv6/contrib/compiler-rt/lib/addvsi3.c user/hrs/ipv6/contrib/compiler-rt/lib/addvti3.c user/hrs/ipv6/contrib/compiler-rt/lib/arm/adddf3vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/addsf3vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/divdf3vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/divsf3vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/eqdf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/eqsf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/extendsfdf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/fixdfsivfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/fixsfsivfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/fixunsdfsivfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/fixunssfsivfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/floatsidfvfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/floatsisfvfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/floatunssidfvfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/floatunssisfvfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/gedf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/gesf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/gtdf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/gtsf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/ledf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/lesf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/ltdf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/ltsf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/muldf3vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/mulsf3vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/nedf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/negdf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/negsf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/nesf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/subdf3vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/subsf3vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/truncdfsf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/unorddf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/arm/unordsf2vfp.S user/hrs/ipv6/contrib/compiler-rt/lib/ashldi3.c user/hrs/ipv6/contrib/compiler-rt/lib/ashrdi3.c user/hrs/ipv6/contrib/compiler-rt/lib/assembly.h user/hrs/ipv6/contrib/compiler-rt/lib/clear_cache.c user/hrs/ipv6/contrib/compiler-rt/lib/clzdi2.c user/hrs/ipv6/contrib/compiler-rt/lib/clzsi2.c user/hrs/ipv6/contrib/compiler-rt/lib/cmpdi2.c user/hrs/ipv6/contrib/compiler-rt/lib/ctzdi2.c user/hrs/ipv6/contrib/compiler-rt/lib/ctzsi2.c user/hrs/ipv6/contrib/compiler-rt/lib/divdc3.c user/hrs/ipv6/contrib/compiler-rt/lib/divdf3.c user/hrs/ipv6/contrib/compiler-rt/lib/divdi3.c user/hrs/ipv6/contrib/compiler-rt/lib/divmoddi4.c user/hrs/ipv6/contrib/compiler-rt/lib/divmodsi4.c user/hrs/ipv6/contrib/compiler-rt/lib/divsc3.c user/hrs/ipv6/contrib/compiler-rt/lib/divsf3.c user/hrs/ipv6/contrib/compiler-rt/lib/divsi3.c user/hrs/ipv6/contrib/compiler-rt/lib/divxc3.c user/hrs/ipv6/contrib/compiler-rt/lib/enable_execute_stack.c user/hrs/ipv6/contrib/compiler-rt/lib/eprintf.c user/hrs/ipv6/contrib/compiler-rt/lib/extendsfdf2.c user/hrs/ipv6/contrib/compiler-rt/lib/ffsdi2.c user/hrs/ipv6/contrib/compiler-rt/lib/fixdfdi.c user/hrs/ipv6/contrib/compiler-rt/lib/fixdfsi.c user/hrs/ipv6/contrib/compiler-rt/lib/fixsfdi.c user/hrs/ipv6/contrib/compiler-rt/lib/fixsfsi.c user/hrs/ipv6/contrib/compiler-rt/lib/fixunsdfdi.c user/hrs/ipv6/contrib/compiler-rt/lib/fixunsdfsi.c user/hrs/ipv6/contrib/compiler-rt/lib/fixunssfdi.c user/hrs/ipv6/contrib/compiler-rt/lib/fixunssfsi.c user/hrs/ipv6/contrib/compiler-rt/lib/floatdidf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatdisf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatsidf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatsisf.c user/hrs/ipv6/contrib/compiler-rt/lib/floattidf.c user/hrs/ipv6/contrib/compiler-rt/lib/floattisf.c user/hrs/ipv6/contrib/compiler-rt/lib/floattixf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatundidf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatundisf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatunsidf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatunsisf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatuntidf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatuntisf.c user/hrs/ipv6/contrib/compiler-rt/lib/floatuntixf.c user/hrs/ipv6/contrib/compiler-rt/lib/fp_lib.h user/hrs/ipv6/contrib/compiler-rt/lib/gcc_personality_v0.c user/hrs/ipv6/contrib/compiler-rt/lib/int_lib.h user/hrs/ipv6/contrib/compiler-rt/lib/lshrdi3.c user/hrs/ipv6/contrib/compiler-rt/lib/moddi3.c user/hrs/ipv6/contrib/compiler-rt/lib/modsi3.c user/hrs/ipv6/contrib/compiler-rt/lib/muldc3.c user/hrs/ipv6/contrib/compiler-rt/lib/muldf3.c user/hrs/ipv6/contrib/compiler-rt/lib/muldi3.c user/hrs/ipv6/contrib/compiler-rt/lib/mulsc3.c user/hrs/ipv6/contrib/compiler-rt/lib/mulsf3.c user/hrs/ipv6/contrib/compiler-rt/lib/mulvdi3.c user/hrs/ipv6/contrib/compiler-rt/lib/mulvsi3.c user/hrs/ipv6/contrib/compiler-rt/lib/mulvti3.c user/hrs/ipv6/contrib/compiler-rt/lib/mulxc3.c user/hrs/ipv6/contrib/compiler-rt/lib/negdf2.c user/hrs/ipv6/contrib/compiler-rt/lib/negsf2.c user/hrs/ipv6/contrib/compiler-rt/lib/negvdi2.c user/hrs/ipv6/contrib/compiler-rt/lib/negvsi2.c user/hrs/ipv6/contrib/compiler-rt/lib/negvti2.c user/hrs/ipv6/contrib/compiler-rt/lib/paritydi2.c user/hrs/ipv6/contrib/compiler-rt/lib/paritysi2.c user/hrs/ipv6/contrib/compiler-rt/lib/popcountdi2.c user/hrs/ipv6/contrib/compiler-rt/lib/popcountsi2.c user/hrs/ipv6/contrib/compiler-rt/lib/powidf2.c user/hrs/ipv6/contrib/compiler-rt/lib/powisf2.c user/hrs/ipv6/contrib/compiler-rt/lib/ppc/DD.h user/hrs/ipv6/contrib/compiler-rt/lib/ppc/divtc3.c user/hrs/ipv6/contrib/compiler-rt/lib/ppc/fixtfdi.c user/hrs/ipv6/contrib/compiler-rt/lib/ppc/fixunstfdi.c user/hrs/ipv6/contrib/compiler-rt/lib/ppc/floatditf.c user/hrs/ipv6/contrib/compiler-rt/lib/ppc/floatunditf.c user/hrs/ipv6/contrib/compiler-rt/lib/ppc/multc3.c user/hrs/ipv6/contrib/compiler-rt/lib/subdf3.c user/hrs/ipv6/contrib/compiler-rt/lib/subsf3.c user/hrs/ipv6/contrib/compiler-rt/lib/subvdi3.c user/hrs/ipv6/contrib/compiler-rt/lib/subvsi3.c user/hrs/ipv6/contrib/compiler-rt/lib/subvti3.c user/hrs/ipv6/contrib/compiler-rt/lib/trampoline_setup.c user/hrs/ipv6/contrib/compiler-rt/lib/truncdfsf2.c user/hrs/ipv6/contrib/compiler-rt/lib/ucmpdi2.c user/hrs/ipv6/contrib/compiler-rt/lib/udivdi3.c user/hrs/ipv6/contrib/compiler-rt/lib/udivmoddi4.c user/hrs/ipv6/contrib/compiler-rt/lib/udivmodsi4.c user/hrs/ipv6/contrib/compiler-rt/lib/udivmodti4.c user/hrs/ipv6/contrib/compiler-rt/lib/udivsi3.c user/hrs/ipv6/contrib/compiler-rt/lib/umoddi3.c user/hrs/ipv6/contrib/compiler-rt/lib/umodsi3.c user/hrs/ipv6/contrib/compiler-rt/lib/x86_64/floatdidf.c user/hrs/ipv6/contrib/compiler-rt/lib/x86_64/floatdisf.c user/hrs/ipv6/contrib/compiler-rt/lib/x86_64/floatdixf.c user/hrs/ipv6/contrib/ee/ee.c user/hrs/ipv6/contrib/file/softmagic.c user/hrs/ipv6/contrib/gcc/BASE-VER user/hrs/ipv6/contrib/gcc/ChangeLog.gcc43 user/hrs/ipv6/contrib/gcc/DEV-PHASE user/hrs/ipv6/contrib/gcc/builtins.c user/hrs/ipv6/contrib/gcc/config/arm/arm.c user/hrs/ipv6/contrib/gcc/config/freebsd.h user/hrs/ipv6/contrib/gcc/config/i386/pmm_malloc.h user/hrs/ipv6/contrib/gcc/config/mips/freebsd.h user/hrs/ipv6/contrib/gcc/config/rs6000/freebsd.h user/hrs/ipv6/contrib/gcc/gcc.c user/hrs/ipv6/contrib/gcclibs/libcpp/include/cpplib.h user/hrs/ipv6/contrib/gcclibs/libcpp/init.c user/hrs/ipv6/contrib/gcclibs/libcpp/internal.h user/hrs/ipv6/contrib/gcclibs/libcpp/macro.c user/hrs/ipv6/contrib/gdb/gdb/mips-tdep.c user/hrs/ipv6/contrib/gdb/gdb/mipsfbsd-tdep.c user/hrs/ipv6/contrib/gdb/gdb/target.c user/hrs/ipv6/contrib/gdtoa/gdtoaimp.h user/hrs/ipv6/contrib/gdtoa/strtod.c user/hrs/ipv6/contrib/gdtoa/strtodg.c user/hrs/ipv6/contrib/gdtoa/strtof.c user/hrs/ipv6/contrib/gdtoa/strtorQ.c user/hrs/ipv6/contrib/gdtoa/strtord.c user/hrs/ipv6/contrib/gdtoa/strtorx.c user/hrs/ipv6/contrib/gperf/AUTHORS user/hrs/ipv6/contrib/gperf/COPYING user/hrs/ipv6/contrib/gperf/ChangeLog user/hrs/ipv6/contrib/gperf/FREEBSD-Xlist user/hrs/ipv6/contrib/gperf/INSTALL user/hrs/ipv6/contrib/gperf/Makefile.devel user/hrs/ipv6/contrib/gperf/Makefile.in user/hrs/ipv6/contrib/gperf/NEWS user/hrs/ipv6/contrib/gperf/README user/hrs/ipv6/contrib/gperf/aclocal.m4 user/hrs/ipv6/contrib/gperf/configure user/hrs/ipv6/contrib/gperf/doc/Makefile.in user/hrs/ipv6/contrib/gperf/doc/configure user/hrs/ipv6/contrib/gperf/doc/gperf.1 user/hrs/ipv6/contrib/gperf/doc/help2man user/hrs/ipv6/contrib/gperf/lib/Makefile.in user/hrs/ipv6/contrib/gperf/lib/configure user/hrs/ipv6/contrib/gperf/lib/hash.cc user/hrs/ipv6/contrib/gperf/lib/hash.h user/hrs/ipv6/contrib/gperf/src/Makefile.in user/hrs/ipv6/contrib/gperf/src/bool-array.cc user/hrs/ipv6/contrib/gperf/src/bool-array.h user/hrs/ipv6/contrib/gperf/src/bool-array.icc user/hrs/ipv6/contrib/gperf/src/config.h.in user/hrs/ipv6/contrib/gperf/src/configure user/hrs/ipv6/contrib/gperf/src/hash-table.cc user/hrs/ipv6/contrib/gperf/src/hash-table.h user/hrs/ipv6/contrib/gperf/src/main.cc user/hrs/ipv6/contrib/gperf/src/options.cc user/hrs/ipv6/contrib/gperf/src/options.h user/hrs/ipv6/contrib/gperf/src/options.icc user/hrs/ipv6/contrib/gperf/src/version.cc user/hrs/ipv6/contrib/gperf/src/version.h user/hrs/ipv6/contrib/groff/tmac/doc-common user/hrs/ipv6/contrib/groff/tmac/doc-syms user/hrs/ipv6/contrib/groff/tmac/doc.tmac user/hrs/ipv6/contrib/groff/tmac/groff_mdoc.man user/hrs/ipv6/contrib/less/command.c user/hrs/ipv6/contrib/less/prompt.c user/hrs/ipv6/contrib/libstdc++/ChangeLog user/hrs/ipv6/contrib/libstdc++/config/os/aix/os_defines.h user/hrs/ipv6/contrib/libstdc++/include/bits/allocator.h user/hrs/ipv6/contrib/libstdc++/include/bits/basic_string.h user/hrs/ipv6/contrib/libstdc++/include/bits/fstream.tcc user/hrs/ipv6/contrib/libstdc++/include/bits/locale_facets.tcc user/hrs/ipv6/contrib/libstdc++/include/bits/stl_tree.h user/hrs/ipv6/contrib/libstdc++/include/debug/map.h user/hrs/ipv6/contrib/libstdc++/include/debug/multimap.h user/hrs/ipv6/contrib/libstdc++/include/ext/atomicity.h user/hrs/ipv6/contrib/libstdc++/include/ext/codecvt_specializations.h user/hrs/ipv6/contrib/libstdc++/include/ext/concurrence.h user/hrs/ipv6/contrib/libstdc++/include/ext/vstring.h user/hrs/ipv6/contrib/libstdc++/include/tr1/boost_shared_ptr.h user/hrs/ipv6/contrib/libstdc++/include/tr1/random user/hrs/ipv6/contrib/libstdc++/libsupc++/eh_personality.cc user/hrs/ipv6/contrib/libstdc++/libsupc++/typeinfo user/hrs/ipv6/contrib/libstdc++/src/valarray-inst.cc user/hrs/ipv6/contrib/llvm/include/llvm-c/Analysis.h user/hrs/ipv6/contrib/llvm/include/llvm-c/BitReader.h user/hrs/ipv6/contrib/llvm/include/llvm-c/BitWriter.h user/hrs/ipv6/contrib/llvm/include/llvm-c/Core.h user/hrs/ipv6/contrib/llvm/include/llvm-c/Disassembler.h user/hrs/ipv6/contrib/llvm/include/llvm-c/EnhancedDisassembly.h user/hrs/ipv6/contrib/llvm/include/llvm-c/ExecutionEngine.h user/hrs/ipv6/contrib/llvm/include/llvm-c/Initialization.h user/hrs/ipv6/contrib/llvm/include/llvm-c/LinkTimeOptimizer.h user/hrs/ipv6/contrib/llvm/include/llvm-c/Object.h user/hrs/ipv6/contrib/llvm/include/llvm-c/Target.h user/hrs/ipv6/contrib/llvm/include/llvm-c/Transforms/IPO.h user/hrs/ipv6/contrib/llvm/include/llvm-c/Transforms/Scalar.h user/hrs/ipv6/contrib/llvm/include/llvm-c/lto.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/APFloat.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/APInt.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/ArrayRef.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/BitVector.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/DenseMap.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/DenseMapInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/DenseSet.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/FoldingSet.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/GraphTraits.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/ImmutableMap.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/ImmutableSet.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/IntervalMap.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/PointerIntPair.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/PointerUnion.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/PostOrderIterator.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/SCCIterator.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/STLExtras.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/SetVector.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/SmallBitVector.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/SmallPtrSet.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/SmallSet.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/SmallString.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/SmallVector.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/SparseBitVector.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/Statistic.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/StringExtras.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/StringMap.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/StringRef.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/Trie.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/Triple.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/Twine.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/ValueMap.h user/hrs/ipv6/contrib/llvm/include/llvm/ADT/ilist.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/CFGPrinter.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/CaptureTracking.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/CodeMetrics.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/ConstantFolding.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/DIBuilder.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/DebugInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/DominatorInternals.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/Dominators.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/FindUsedTypes.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/IVUsers.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/InlineCost.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/IntervalIterator.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/Loads.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/LoopInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/LoopPass.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/PHITransAddr.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/ProfileInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/RegionInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/RegionPass.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h user/hrs/ipv6/contrib/llvm/include/llvm/Analysis/ValueTracking.h user/hrs/ipv6/contrib/llvm/include/llvm/Argument.h user/hrs/ipv6/contrib/llvm/include/llvm/Assembly/AssemblyAnnotationWriter.h user/hrs/ipv6/contrib/llvm/include/llvm/Assembly/Parser.h user/hrs/ipv6/contrib/llvm/include/llvm/Assembly/Writer.h user/hrs/ipv6/contrib/llvm/include/llvm/Attributes.h user/hrs/ipv6/contrib/llvm/include/llvm/AutoUpgrade.h user/hrs/ipv6/contrib/llvm/include/llvm/BasicBlock.h user/hrs/ipv6/contrib/llvm/include/llvm/Bitcode/Archive.h user/hrs/ipv6/contrib/llvm/include/llvm/Bitcode/BitCodes.h user/hrs/ipv6/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h user/hrs/ipv6/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h user/hrs/ipv6/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h user/hrs/ipv6/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/Analysis.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/EdgeBundles.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/FastISel.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/GCStrategy.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/JITCodeEmitter.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/LiveInterval.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/LiveStackAnalysis.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/LiveVariables.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineCodeEmitter.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineDominators.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineFunction.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineInstr.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineOperand.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/PBQP/HeuristicBase.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/PBQP/Heuristics/Briggs.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/Passes.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/ValueTypes.h user/hrs/ipv6/contrib/llvm/include/llvm/CodeGen/ValueTypes.td user/hrs/ipv6/contrib/llvm/include/llvm/Constant.h user/hrs/ipv6/contrib/llvm/include/llvm/Constants.h user/hrs/ipv6/contrib/llvm/include/llvm/DefaultPasses.h user/hrs/ipv6/contrib/llvm/include/llvm/DerivedTypes.h user/hrs/ipv6/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h user/hrs/ipv6/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h user/hrs/ipv6/contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h user/hrs/ipv6/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h user/hrs/ipv6/contrib/llvm/include/llvm/Function.h user/hrs/ipv6/contrib/llvm/include/llvm/GlobalAlias.h user/hrs/ipv6/contrib/llvm/include/llvm/GlobalValue.h user/hrs/ipv6/contrib/llvm/include/llvm/GlobalVariable.h user/hrs/ipv6/contrib/llvm/include/llvm/InitializePasses.h user/hrs/ipv6/contrib/llvm/include/llvm/InlineAsm.h user/hrs/ipv6/contrib/llvm/include/llvm/InstrTypes.h user/hrs/ipv6/contrib/llvm/include/llvm/Instruction.def user/hrs/ipv6/contrib/llvm/include/llvm/Instruction.h user/hrs/ipv6/contrib/llvm/include/llvm/Instructions.h user/hrs/ipv6/contrib/llvm/include/llvm/IntrinsicInst.h user/hrs/ipv6/contrib/llvm/include/llvm/Intrinsics.h user/hrs/ipv6/contrib/llvm/include/llvm/Intrinsics.td user/hrs/ipv6/contrib/llvm/include/llvm/IntrinsicsX86.td user/hrs/ipv6/contrib/llvm/include/llvm/IntrinsicsXCore.td user/hrs/ipv6/contrib/llvm/include/llvm/LLVMContext.h user/hrs/ipv6/contrib/llvm/include/llvm/LinkAllPasses.h user/hrs/ipv6/contrib/llvm/include/llvm/Linker.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/EDInstInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCAsmInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCAsmInfoCOFF.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCAsmLayout.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCAssembler.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCCodeEmitter.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCContext.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCDirectives.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCDisassembler.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCDwarf.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCExpr.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCFixup.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCInst.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCInstPrinter.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCInstrDesc.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCInstrInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCObjectStreamer.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCObjectWriter.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCRegisterInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCSection.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCSectionCOFF.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCSectionELF.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCSectionMachO.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCStreamer.h user/hrs/ipv6/contrib/llvm/include/llvm/MC/MCValue.h user/hrs/ipv6/contrib/llvm/include/llvm/Metadata.h user/hrs/ipv6/contrib/llvm/include/llvm/Module.h user/hrs/ipv6/contrib/llvm/include/llvm/Object/Binary.h user/hrs/ipv6/contrib/llvm/include/llvm/Object/COFF.h user/hrs/ipv6/contrib/llvm/include/llvm/Object/MachOFormat.h user/hrs/ipv6/contrib/llvm/include/llvm/Object/MachOObject.h user/hrs/ipv6/contrib/llvm/include/llvm/Object/ObjectFile.h user/hrs/ipv6/contrib/llvm/include/llvm/OperandTraits.h user/hrs/ipv6/contrib/llvm/include/llvm/Operator.h user/hrs/ipv6/contrib/llvm/include/llvm/Pass.h user/hrs/ipv6/contrib/llvm/include/llvm/PassAnalysisSupport.h user/hrs/ipv6/contrib/llvm/include/llvm/PassManager.h user/hrs/ipv6/contrib/llvm/include/llvm/PassManagers.h user/hrs/ipv6/contrib/llvm/include/llvm/PassSupport.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/BranchProbability.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/CFG.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/COFF.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/CallSite.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/CommandLine.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/Compiler.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/ConstantFolder.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/DOTGraphTraits.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/DataTypes.h.in user/hrs/ipv6/contrib/llvm/include/llvm/Support/Debug.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/Dwarf.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/DynamicLibrary.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/ELF.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/Endian.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/FileSystem.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/Format.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/GetElementPtrTypeIterator.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/GraphWriter.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/Host.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/IRBuilder.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/IRReader.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/InstVisitor.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/MachO.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/ManagedStatic.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/MathExtras.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/MemoryBuffer.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/MemoryObject.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/NoFolder.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/PathV1.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/PathV2.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/PatternMatch.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/Program.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/Recycler.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/SMLoc.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/SourceMgr.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/TargetFolder.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/TypeBuilder.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/Valgrind.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/ValueHandle.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/system_error.h user/hrs/ipv6/contrib/llvm/include/llvm/Support/type_traits.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/Mangler.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/Target.td user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetCallingConv.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetCallingConv.td user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetData.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetELFWriterInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetFrameLowering.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetInstrInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetJITInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetLowering.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetMachine.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetOpcodes.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetOptions.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td user/hrs/ipv6/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/IPO.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Instrumentation.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Scalar.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/AddrModeMatcher.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/FunctionUtils.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h user/hrs/ipv6/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h user/hrs/ipv6/contrib/llvm/include/llvm/Type.h user/hrs/ipv6/contrib/llvm/include/llvm/User.h user/hrs/ipv6/contrib/llvm/include/llvm/Value.h user/hrs/ipv6/contrib/llvm/lib/Analysis/AliasAnalysis.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/AliasAnalysisCounter.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/AliasSetTracker.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/Analysis.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/CFGPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/CaptureTracking.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/ConstantFolding.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/DIBuilder.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/DbgInfoPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/DebugInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/DominanceFrontier.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/IPA/FindUsedTypes.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/IVUsers.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/InlineCost.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/InstructionSimplify.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/LazyValueInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/Lint.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/Loads.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/LoopDependenceAnalysis.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/LoopInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/LoopPass.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/MemDepPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/PHITransAddr.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/PathNumbering.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/PathProfileVerifier.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/ProfileEstimatorPass.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/ProfileVerifierPass.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/RegionInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/RegionPass.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/ScalarEvolution.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/SparsePropagation.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/Trace.cpp user/hrs/ipv6/contrib/llvm/lib/Analysis/ValueTracking.cpp user/hrs/ipv6/contrib/llvm/lib/Archive/ArchiveReader.cpp user/hrs/ipv6/contrib/llvm/lib/Archive/ArchiveWriter.cpp user/hrs/ipv6/contrib/llvm/lib/AsmParser/LLLexer.cpp user/hrs/ipv6/contrib/llvm/lib/AsmParser/LLLexer.h user/hrs/ipv6/contrib/llvm/lib/AsmParser/LLParser.cpp user/hrs/ipv6/contrib/llvm/lib/AsmParser/LLParser.h user/hrs/ipv6/contrib/llvm/lib/AsmParser/LLToken.h user/hrs/ipv6/contrib/llvm/lib/AsmParser/Parser.cpp user/hrs/ipv6/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp user/hrs/ipv6/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h user/hrs/ipv6/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp user/hrs/ipv6/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AllocationOrder.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AllocationOrder.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/Analysis.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/BranchFolding.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/CallingConvLower.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/CodeGen.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/EdgeBundles.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/GCMetadata.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/GCStrategy.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/IfConversion.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/InlineSpiller.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/InterferenceCache.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/InterferenceCache.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveInterval.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LiveVariables.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineCSE.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineFunction.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineInstr.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineLICM.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachinePassRegistry.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineSink.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/MachineVerifier.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/PHIElimination.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/Passes.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/PrologEpilogInserter.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegAllocBase.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegAllocFast.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegisterClassInfo.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegisterCoalescer.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/RenderMachineFunction.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SlotIndexes.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SpillPlacement.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SpillPlacement.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/Spiller.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/Spiller.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/SplitKit.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/SplitKit.h user/hrs/ipv6/contrib/llvm/lib/CodeGen/StackProtector.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/TailDuplication.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/VirtRegMap.cpp user/hrs/ipv6/contrib/llvm/lib/CodeGen/VirtRegMap.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/JIT.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp user/hrs/ipv6/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp user/hrs/ipv6/contrib/llvm/lib/Linker/LinkArchives.cpp user/hrs/ipv6/contrib/llvm/lib/Linker/LinkModules.cpp user/hrs/ipv6/contrib/llvm/lib/Linker/Linker.cpp user/hrs/ipv6/contrib/llvm/lib/MC/ELFObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCAsmStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCAssembler.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCContext.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h user/hrs/ipv6/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.h user/hrs/ipv6/contrib/llvm/lib/MC/MCDisassembler/EDInst.h user/hrs/ipv6/contrib/llvm/lib/MC/MCDisassembler/EDOperand.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCDisassembler/EDToken.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCDisassembler/EDToken.h user/hrs/ipv6/contrib/llvm/lib/MC/MCDwarf.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCELF.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCELFStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCExpr.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCInst.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCInstPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCMachOStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCNullStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCObjectStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCParser/AsmParser.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCPureStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCSymbol.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MCWin64EH.cpp user/hrs/ipv6/contrib/llvm/lib/MC/MachObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/MC/SubtargetFeature.cpp user/hrs/ipv6/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp user/hrs/ipv6/contrib/llvm/lib/MC/WinCOFFStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/Object/Binary.cpp user/hrs/ipv6/contrib/llvm/lib/Object/COFFObjectFile.cpp user/hrs/ipv6/contrib/llvm/lib/Object/ELFObjectFile.cpp user/hrs/ipv6/contrib/llvm/lib/Object/MachOObject.cpp user/hrs/ipv6/contrib/llvm/lib/Object/MachOObjectFile.cpp user/hrs/ipv6/contrib/llvm/lib/Object/Object.cpp user/hrs/ipv6/contrib/llvm/lib/Object/ObjectFile.cpp user/hrs/ipv6/contrib/llvm/lib/Support/APFloat.cpp user/hrs/ipv6/contrib/llvm/lib/Support/APInt.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Allocator.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Atomic.cpp user/hrs/ipv6/contrib/llvm/lib/Support/BranchProbability.cpp user/hrs/ipv6/contrib/llvm/lib/Support/CommandLine.cpp user/hrs/ipv6/contrib/llvm/lib/Support/ConstantRange.cpp user/hrs/ipv6/contrib/llvm/lib/Support/CrashRecoveryContext.cpp user/hrs/ipv6/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Disassembler.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Dwarf.cpp user/hrs/ipv6/contrib/llvm/lib/Support/DynamicLibrary.cpp user/hrs/ipv6/contrib/llvm/lib/Support/FileUtilities.cpp user/hrs/ipv6/contrib/llvm/lib/Support/FoldingSet.cpp user/hrs/ipv6/contrib/llvm/lib/Support/GraphWriter.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Host.cpp user/hrs/ipv6/contrib/llvm/lib/Support/IncludeFile.cpp user/hrs/ipv6/contrib/llvm/lib/Support/ManagedStatic.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Memory.cpp user/hrs/ipv6/contrib/llvm/lib/Support/MemoryBuffer.cpp user/hrs/ipv6/contrib/llvm/lib/Support/MemoryObject.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Mutex.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Path.cpp user/hrs/ipv6/contrib/llvm/lib/Support/PathV2.cpp user/hrs/ipv6/contrib/llvm/lib/Support/PrettyStackTrace.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Program.cpp user/hrs/ipv6/contrib/llvm/lib/Support/RWMutex.cpp user/hrs/ipv6/contrib/llvm/lib/Support/SearchForAddressOfSpecialSymbol.cpp user/hrs/ipv6/contrib/llvm/lib/Support/SmallPtrSet.cpp user/hrs/ipv6/contrib/llvm/lib/Support/SourceMgr.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Statistic.cpp user/hrs/ipv6/contrib/llvm/lib/Support/StringExtras.cpp user/hrs/ipv6/contrib/llvm/lib/Support/StringMap.cpp user/hrs/ipv6/contrib/llvm/lib/Support/StringRef.cpp user/hrs/ipv6/contrib/llvm/lib/Support/TargetRegistry.cpp user/hrs/ipv6/contrib/llvm/lib/Support/ThreadLocal.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Threading.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Timer.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Triple.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Twine.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Unix/Host.inc user/hrs/ipv6/contrib/llvm/lib/Support/Unix/Path.inc user/hrs/ipv6/contrib/llvm/lib/Support/Unix/PathV2.inc user/hrs/ipv6/contrib/llvm/lib/Support/Unix/Process.inc user/hrs/ipv6/contrib/llvm/lib/Support/Unix/Program.inc user/hrs/ipv6/contrib/llvm/lib/Support/Unix/Signals.inc user/hrs/ipv6/contrib/llvm/lib/Support/Valgrind.cpp user/hrs/ipv6/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc user/hrs/ipv6/contrib/llvm/lib/Support/Windows/Host.inc user/hrs/ipv6/contrib/llvm/lib/Support/Windows/Memory.inc user/hrs/ipv6/contrib/llvm/lib/Support/Windows/Path.inc user/hrs/ipv6/contrib/llvm/lib/Support/Windows/PathV2.inc user/hrs/ipv6/contrib/llvm/lib/Support/Windows/Process.inc user/hrs/ipv6/contrib/llvm/lib/Support/Windows/Program.inc user/hrs/ipv6/contrib/llvm/lib/Support/Windows/RWMutex.inc user/hrs/ipv6/contrib/llvm/lib/Support/Windows/Signals.inc user/hrs/ipv6/contrib/llvm/lib/Support/Windows/Windows.h user/hrs/ipv6/contrib/llvm/lib/Support/raw_ostream.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARM.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARM.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMBuildAttrs.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMCallingConv.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMCallingConv.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMJITInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMPerfectShuffle.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMRelocations.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMSchedule.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMScheduleA8.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMScheduleV6.td user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMSubtarget.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmLexer.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/CellSDKIntrinsics.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPU.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPU.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPU128InstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPU64InstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUCallingConv.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUInstrBuilder.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUInstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUMathInstr.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUNodes.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUNopFiller.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUOperands.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUSchedule.td user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUSubtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/CellSPU/TargetInfo/CellSPUTargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp user/hrs/ipv6/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/CppBackend/TargetInfo/CppBackendTargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmLexer.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/InstPrinter/MBlazeInstPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/InstPrinter/MBlazeInstPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlaze.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlaze.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeDelaySlotFiller.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFPU.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFSL.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsics.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeRelocations.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule3.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule5.td user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MBlazeTargetObjectFile.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/MBlaze/TargetInfo/MBlazeTargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430.td user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430InstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mangler.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/Mips.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/Mips.td user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsCallingConv.td user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsSchedule.td user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsSubtarget.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTX.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTX.td user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXFrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXFrameLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXISelDAGToDAG.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXInstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXInstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXInstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXIntrinsicInstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXMCAsmStreamer.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXMFInfoExtract.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXSubtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXSubtarget.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXTargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PTX/PTXTargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/PTX/TargetInfo/PTXTargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPC.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPC.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCRelocations.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/FPMover.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/Sparc.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/Sparc.td user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcCallingConv.td user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/Target.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetData.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetLibraryInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/TargetRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/AsmParser/X86AsmLexer.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c user/hrs/ipv6/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86AsmPrinter.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86CallingConv.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86ELFWriterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86FastISel.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86FrameLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86ISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86Instr3DNow.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrBuilder.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrCMovSetCC.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrCompiler.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrControl.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrExtension.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrFMA.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrFPStack.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrMMX.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrSSE.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrSystem.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86InstrVMX.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86JITInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86JITInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86MCInstLower.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86RegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86RegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86Relocations.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86Subtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86Subtarget.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86TargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp user/hrs/ipv6/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCore.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCore.td user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreInstrFormats.td user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.td user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreSubtarget.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h user/hrs/ipv6/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/IPO.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/Inliner.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/Internalize.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h user/hrs/ipv6/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/OptimalEdgeProfiling.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/GVN.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/LICM.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Scalar/Sink.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/Local.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp user/hrs/ipv6/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/AsmWriter.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Attributes.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/AutoUpgrade.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/BasicBlock.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/ConstantFold.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/ConstantFold.h user/hrs/ipv6/contrib/llvm/lib/VMCore/Constants.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/ConstantsContext.h user/hrs/ipv6/contrib/llvm/lib/VMCore/Core.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/DebugLoc.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Dominators.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Function.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Globals.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/IRBuilder.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/InlineAsm.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Instruction.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Instructions.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/LLVMContext.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/LLVMContextImpl.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/LLVMContextImpl.h user/hrs/ipv6/contrib/llvm/lib/VMCore/Metadata.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Module.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Pass.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/PassManager.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/PassRegistry.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Type.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Use.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/User.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Value.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/ValueTypes.cpp user/hrs/ipv6/contrib/llvm/lib/VMCore/Verifier.cpp user/hrs/ipv6/contrib/llvm/tools/clang/include/clang-c/Index.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/APValue.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/Attr.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/Decl.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/Expr.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/Mangle.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/ParentMap.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/Stmt.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/TemplateName.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/Type.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/TypeVisitor.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowSolver.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowValues.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Support/BlkExprDeclBitVector.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtVisitor.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGStmtVisitor.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Attr.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DelayedCleanupPool.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/Version.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Action.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Arg.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Driver.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Job.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/ObjCRuntime.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/OptTable.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Option.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Options.td user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Tool.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Types.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Driver/Util.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/Analyses.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/HeaderSearchOptions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOptions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Index/ASTLocation.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Index/Entity.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Index/Handlers.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Index/TranslationUnit.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/Token.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Parse/ParseAST.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Parse/Parser.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Rewrite/ASTConsumers.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Rewrite/FixItRewriter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Rewrite/FrontendActions.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriters.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Rewrite/TokenRewriter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/Designator.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/LocInfoType.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/Overload.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/Scope.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/Sema.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/SemaConsumer.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/Template.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h user/hrs/ipv6/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/APValue.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/Decl.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/Expr.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/InheritViz.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/Mangle.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/Stmt.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/Type.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/ConvertUTF.c user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/Targets.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/Version.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Action.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Arg.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/CC1AsOptions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/CC1Options.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Driver.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/DriverOptions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Job.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/OptTable.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Option.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Phases.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/ToolChains.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Tools.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Tools.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Driver/Types.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/LangStandards.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/avxintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/emmintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/float.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/immintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/mm_malloc.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/smmintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/tgmath.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/x86intrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Index/ASTLocation.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Index/Analyzer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Index/Entity.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Index/EntityImpl.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Index/GlobalSelector.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/MacroArgs.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/PPCaching.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/Parser.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/DeltaTree.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/FixItRewriter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/FrontendActions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/HTMLPrint.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/RewriteMacros.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/RewriteTest.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/Scope.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/Sema.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AdjustedReturnValueChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorsChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicConstraintManager.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ObjCMessage.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.h user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp user/hrs/ipv6/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp user/hrs/ipv6/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp user/hrs/ipv6/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp user/hrs/ipv6/contrib/llvm/tools/clang/tools/driver/driver.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/AsmMatcherEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/AsmWriterEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/AsmWriterInst.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/CallingConvEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeEmitterGen.h user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeGenInstruction.h user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeGenRegisters.h user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeGenTarget.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/CodeGenTarget.h user/hrs/ipv6/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/DAGISelEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/DAGISelMatcher.h user/hrs/ipv6/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/DisassemblerEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/EDEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/EDEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/FastISelEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/FastISelEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/InstrInfoEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/IntrinsicEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/RegisterInfoEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/SetTheory.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/SetTheory.h user/hrs/ipv6/contrib/llvm/utils/TableGen/StringToOffsetTable.h user/hrs/ipv6/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/SubtargetEmitter.h user/hrs/ipv6/contrib/llvm/utils/TableGen/TableGen.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/X86DisassemblerTables.h user/hrs/ipv6/contrib/llvm/utils/TableGen/X86ModRMFilters.h user/hrs/ipv6/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp user/hrs/ipv6/contrib/llvm/utils/TableGen/X86RecognizableInstr.h user/hrs/ipv6/contrib/netcat/netcat.c user/hrs/ipv6/contrib/ntp/ntpd/ntp_loopfilter.c user/hrs/ipv6/contrib/openbsm/libauditd/auditd_lib.c user/hrs/ipv6/contrib/openpam/CREDITS user/hrs/ipv6/contrib/openpam/HISTORY user/hrs/ipv6/contrib/openpam/LICENSE user/hrs/ipv6/contrib/openpam/Makefile.am user/hrs/ipv6/contrib/openpam/Makefile.in user/hrs/ipv6/contrib/openpam/README user/hrs/ipv6/contrib/openpam/RELNOTES user/hrs/ipv6/contrib/openpam/aclocal.m4 user/hrs/ipv6/contrib/openpam/bin/Makefile.am user/hrs/ipv6/contrib/openpam/bin/Makefile.in user/hrs/ipv6/contrib/openpam/bin/su/Makefile.am user/hrs/ipv6/contrib/openpam/bin/su/Makefile.in user/hrs/ipv6/contrib/openpam/bin/su/su.c user/hrs/ipv6/contrib/openpam/config.h.in user/hrs/ipv6/contrib/openpam/configure user/hrs/ipv6/contrib/openpam/configure.ac user/hrs/ipv6/contrib/openpam/depcomp user/hrs/ipv6/contrib/openpam/doc/Makefile.in user/hrs/ipv6/contrib/openpam/doc/man/Makefile.am user/hrs/ipv6/contrib/openpam/doc/man/Makefile.in user/hrs/ipv6/contrib/openpam/doc/man/openpam.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_borrow_cred.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_free_data.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_free_envlist.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_get_option.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_log.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_nullconv.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_readline.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_restore_cred.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_set_option.3 user/hrs/ipv6/contrib/openpam/doc/man/openpam_ttyconv.3 user/hrs/ipv6/contrib/openpam/doc/man/pam.3 user/hrs/ipv6/contrib/openpam/doc/man/pam.conf.5 user/hrs/ipv6/contrib/openpam/doc/man/pam_acct_mgmt.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_authenticate.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_chauthtok.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_close_session.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_conv.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_end.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_error.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_get_authtok.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_get_data.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_get_item.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_get_user.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_getenv.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_getenvlist.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_info.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_open_session.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_prompt.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_putenv.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_set_data.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_set_item.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_setcred.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_setenv.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_sm_authenticate.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_sm_chauthtok.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_sm_close_session.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_sm_open_session.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_sm_setcred.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_start.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_strerror.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_verror.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_vinfo.3 user/hrs/ipv6/contrib/openpam/doc/man/pam_vprompt.3 user/hrs/ipv6/contrib/openpam/include/Makefile.in user/hrs/ipv6/contrib/openpam/include/security/Makefile.in user/hrs/ipv6/contrib/openpam/include/security/openpam.h user/hrs/ipv6/contrib/openpam/include/security/openpam_version.h user/hrs/ipv6/contrib/openpam/include/security/pam_appl.h user/hrs/ipv6/contrib/openpam/include/security/pam_constants.h user/hrs/ipv6/contrib/openpam/include/security/pam_modules.h user/hrs/ipv6/contrib/openpam/include/security/pam_types.h user/hrs/ipv6/contrib/openpam/install-sh user/hrs/ipv6/contrib/openpam/lib/Makefile.am user/hrs/ipv6/contrib/openpam/lib/Makefile.in user/hrs/ipv6/contrib/openpam/lib/openpam_borrow_cred.c user/hrs/ipv6/contrib/openpam/lib/openpam_configure.c user/hrs/ipv6/contrib/openpam/lib/openpam_dispatch.c user/hrs/ipv6/contrib/openpam/lib/openpam_dynamic.c user/hrs/ipv6/contrib/openpam/lib/openpam_findenv.c user/hrs/ipv6/contrib/openpam/lib/openpam_free_data.c user/hrs/ipv6/contrib/openpam/lib/openpam_free_envlist.c user/hrs/ipv6/contrib/openpam/lib/openpam_get_option.c user/hrs/ipv6/contrib/openpam/lib/openpam_impl.h user/hrs/ipv6/contrib/openpam/lib/openpam_load.c user/hrs/ipv6/contrib/openpam/lib/openpam_log.c user/hrs/ipv6/contrib/openpam/lib/openpam_nullconv.c user/hrs/ipv6/contrib/openpam/lib/openpam_readline.c user/hrs/ipv6/contrib/openpam/lib/openpam_restore_cred.c user/hrs/ipv6/contrib/openpam/lib/openpam_set_option.c user/hrs/ipv6/contrib/openpam/lib/openpam_static.c user/hrs/ipv6/contrib/openpam/lib/openpam_ttyconv.c user/hrs/ipv6/contrib/openpam/lib/pam_acct_mgmt.c user/hrs/ipv6/contrib/openpam/lib/pam_authenticate.c user/hrs/ipv6/contrib/openpam/lib/pam_authenticate_secondary.c user/hrs/ipv6/contrib/openpam/lib/pam_chauthtok.c user/hrs/ipv6/contrib/openpam/lib/pam_close_session.c user/hrs/ipv6/contrib/openpam/lib/pam_end.c user/hrs/ipv6/contrib/openpam/lib/pam_error.c user/hrs/ipv6/contrib/openpam/lib/pam_get_authtok.c user/hrs/ipv6/contrib/openpam/lib/pam_get_data.c user/hrs/ipv6/contrib/openpam/lib/pam_get_item.c user/hrs/ipv6/contrib/openpam/lib/pam_get_mapped_authtok.c user/hrs/ipv6/contrib/openpam/lib/pam_get_mapped_username.c user/hrs/ipv6/contrib/openpam/lib/pam_get_user.c user/hrs/ipv6/contrib/openpam/lib/pam_getenv.c user/hrs/ipv6/contrib/openpam/lib/pam_getenvlist.c user/hrs/ipv6/contrib/openpam/lib/pam_info.c user/hrs/ipv6/contrib/openpam/lib/pam_open_session.c user/hrs/ipv6/contrib/openpam/lib/pam_prompt.c user/hrs/ipv6/contrib/openpam/lib/pam_putenv.c user/hrs/ipv6/contrib/openpam/lib/pam_set_data.c user/hrs/ipv6/contrib/openpam/lib/pam_set_item.c user/hrs/ipv6/contrib/openpam/lib/pam_set_mapped_authtok.c user/hrs/ipv6/contrib/openpam/lib/pam_set_mapped_username.c user/hrs/ipv6/contrib/openpam/lib/pam_setcred.c user/hrs/ipv6/contrib/openpam/lib/pam_setenv.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_acct_mgmt.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_authenticate.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_authenticate_secondary.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_chauthtok.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_close_session.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_get_mapped_authtok.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_get_mapped_username.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_open_session.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_set_mapped_authtok.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_set_mapped_username.c user/hrs/ipv6/contrib/openpam/lib/pam_sm_setcred.c user/hrs/ipv6/contrib/openpam/lib/pam_start.c user/hrs/ipv6/contrib/openpam/lib/pam_strerror.c user/hrs/ipv6/contrib/openpam/lib/pam_verror.c user/hrs/ipv6/contrib/openpam/lib/pam_vinfo.c user/hrs/ipv6/contrib/openpam/lib/pam_vprompt.c user/hrs/ipv6/contrib/openpam/ltmain.sh user/hrs/ipv6/contrib/openpam/misc/gendoc.pl user/hrs/ipv6/contrib/openpam/missing user/hrs/ipv6/contrib/openpam/modules/Makefile.in user/hrs/ipv6/contrib/openpam/modules/pam_deny/Makefile.in user/hrs/ipv6/contrib/openpam/modules/pam_deny/pam_deny.c user/hrs/ipv6/contrib/openpam/modules/pam_permit/Makefile.in user/hrs/ipv6/contrib/openpam/modules/pam_permit/pam_permit.c user/hrs/ipv6/contrib/openpam/modules/pam_unix/Makefile.am user/hrs/ipv6/contrib/openpam/modules/pam_unix/Makefile.in user/hrs/ipv6/contrib/openpam/modules/pam_unix/pam_unix.c user/hrs/ipv6/contrib/openresolv/dnsmasq.in user/hrs/ipv6/contrib/openresolv/libc.in user/hrs/ipv6/contrib/openresolv/named.in user/hrs/ipv6/contrib/openresolv/pdnsd.in user/hrs/ipv6/contrib/openresolv/resolvconf.in user/hrs/ipv6/contrib/openresolv/unbound.in user/hrs/ipv6/contrib/pf/man/pfsync.4 user/hrs/ipv6/contrib/pf/pfctl/parse.y user/hrs/ipv6/contrib/pf/pfctl/pfctl.8 user/hrs/ipv6/contrib/pnpinfo/pnpinfo.c user/hrs/ipv6/contrib/sendmail/src/main.c user/hrs/ipv6/contrib/sendmail/src/sendmail.h user/hrs/ipv6/contrib/sendmail/src/usersmtp.c user/hrs/ipv6/contrib/smbfs/mount_smbfs/mount_smbfs.8 user/hrs/ipv6/contrib/tcpdump/print-eigrp.c user/hrs/ipv6/contrib/tcpdump/print-icmp6.c user/hrs/ipv6/contrib/tcpdump/print-ldp.c user/hrs/ipv6/contrib/tcpdump/print-lmp.c user/hrs/ipv6/contrib/tcpdump/print-lspping.c user/hrs/ipv6/contrib/tcpdump/print-rsvp.c user/hrs/ipv6/contrib/tcpdump/print-slow.c user/hrs/ipv6/contrib/tcsh/Fixes user/hrs/ipv6/contrib/tcsh/Imakefile user/hrs/ipv6/contrib/tcsh/Makefile.in user/hrs/ipv6/contrib/tcsh/Ported user/hrs/ipv6/contrib/tcsh/README user/hrs/ipv6/contrib/tcsh/WishList user/hrs/ipv6/contrib/tcsh/complete.tcsh user/hrs/ipv6/contrib/tcsh/config.guess user/hrs/ipv6/contrib/tcsh/config.h.in user/hrs/ipv6/contrib/tcsh/config.sub user/hrs/ipv6/contrib/tcsh/config/bsd4.4 user/hrs/ipv6/contrib/tcsh/config_f.h user/hrs/ipv6/contrib/tcsh/configure user/hrs/ipv6/contrib/tcsh/configure.in user/hrs/ipv6/contrib/tcsh/ed.chared.c user/hrs/ipv6/contrib/tcsh/ed.inputl.c user/hrs/ipv6/contrib/tcsh/ed.refresh.c user/hrs/ipv6/contrib/tcsh/ed.screen.c user/hrs/ipv6/contrib/tcsh/ed.term.c user/hrs/ipv6/contrib/tcsh/gethost.c user/hrs/ipv6/contrib/tcsh/glob.c user/hrs/ipv6/contrib/tcsh/glob.h user/hrs/ipv6/contrib/tcsh/host.defs user/hrs/ipv6/contrib/tcsh/install-sh user/hrs/ipv6/contrib/tcsh/nls/C/charset user/hrs/ipv6/contrib/tcsh/nls/C/set19 user/hrs/ipv6/contrib/tcsh/nls/et/charset user/hrs/ipv6/contrib/tcsh/nls/et/set1 user/hrs/ipv6/contrib/tcsh/nls/et/set10 user/hrs/ipv6/contrib/tcsh/nls/et/set11 user/hrs/ipv6/contrib/tcsh/nls/et/set13 user/hrs/ipv6/contrib/tcsh/nls/et/set14 user/hrs/ipv6/contrib/tcsh/nls/et/set15 user/hrs/ipv6/contrib/tcsh/nls/et/set16 user/hrs/ipv6/contrib/tcsh/nls/et/set17 user/hrs/ipv6/contrib/tcsh/nls/et/set18 user/hrs/ipv6/contrib/tcsh/nls/et/set19 user/hrs/ipv6/contrib/tcsh/nls/et/set2 user/hrs/ipv6/contrib/tcsh/nls/et/set20 user/hrs/ipv6/contrib/tcsh/nls/et/set21 user/hrs/ipv6/contrib/tcsh/nls/et/set22 user/hrs/ipv6/contrib/tcsh/nls/et/set23 user/hrs/ipv6/contrib/tcsh/nls/et/set24 user/hrs/ipv6/contrib/tcsh/nls/et/set25 user/hrs/ipv6/contrib/tcsh/nls/et/set26 user/hrs/ipv6/contrib/tcsh/nls/et/set27 user/hrs/ipv6/contrib/tcsh/nls/et/set3 user/hrs/ipv6/contrib/tcsh/nls/et/set30 user/hrs/ipv6/contrib/tcsh/nls/et/set4 user/hrs/ipv6/contrib/tcsh/nls/et/set5 user/hrs/ipv6/contrib/tcsh/nls/et/set6 user/hrs/ipv6/contrib/tcsh/nls/et/set7 user/hrs/ipv6/contrib/tcsh/nls/et/set8 user/hrs/ipv6/contrib/tcsh/nls/et/set9 user/hrs/ipv6/contrib/tcsh/nls/finnish/charset user/hrs/ipv6/contrib/tcsh/nls/finnish/set1 user/hrs/ipv6/contrib/tcsh/nls/finnish/set10 user/hrs/ipv6/contrib/tcsh/nls/finnish/set11 user/hrs/ipv6/contrib/tcsh/nls/finnish/set12 user/hrs/ipv6/contrib/tcsh/nls/finnish/set13 user/hrs/ipv6/contrib/tcsh/nls/finnish/set14 user/hrs/ipv6/contrib/tcsh/nls/finnish/set16 user/hrs/ipv6/contrib/tcsh/nls/finnish/set17 user/hrs/ipv6/contrib/tcsh/nls/finnish/set18 user/hrs/ipv6/contrib/tcsh/nls/finnish/set19 user/hrs/ipv6/contrib/tcsh/nls/finnish/set2 user/hrs/ipv6/contrib/tcsh/nls/finnish/set20 user/hrs/ipv6/contrib/tcsh/nls/finnish/set22 user/hrs/ipv6/contrib/tcsh/nls/finnish/set23 user/hrs/ipv6/contrib/tcsh/nls/finnish/set25 user/hrs/ipv6/contrib/tcsh/nls/finnish/set26 user/hrs/ipv6/contrib/tcsh/nls/finnish/set27 user/hrs/ipv6/contrib/tcsh/nls/finnish/set29 user/hrs/ipv6/contrib/tcsh/nls/finnish/set3 user/hrs/ipv6/contrib/tcsh/nls/finnish/set6 user/hrs/ipv6/contrib/tcsh/nls/finnish/set7 user/hrs/ipv6/contrib/tcsh/nls/finnish/set9 user/hrs/ipv6/contrib/tcsh/nls/french/charset user/hrs/ipv6/contrib/tcsh/nls/french/set1 user/hrs/ipv6/contrib/tcsh/nls/french/set10 user/hrs/ipv6/contrib/tcsh/nls/french/set11 user/hrs/ipv6/contrib/tcsh/nls/french/set12 user/hrs/ipv6/contrib/tcsh/nls/french/set13 user/hrs/ipv6/contrib/tcsh/nls/french/set15 user/hrs/ipv6/contrib/tcsh/nls/french/set16 user/hrs/ipv6/contrib/tcsh/nls/french/set17 user/hrs/ipv6/contrib/tcsh/nls/french/set18 user/hrs/ipv6/contrib/tcsh/nls/french/set19 user/hrs/ipv6/contrib/tcsh/nls/french/set2 user/hrs/ipv6/contrib/tcsh/nls/french/set20 user/hrs/ipv6/contrib/tcsh/nls/french/set21 user/hrs/ipv6/contrib/tcsh/nls/french/set22 user/hrs/ipv6/contrib/tcsh/nls/french/set23 user/hrs/ipv6/contrib/tcsh/nls/french/set25 user/hrs/ipv6/contrib/tcsh/nls/french/set26 user/hrs/ipv6/contrib/tcsh/nls/french/set27 user/hrs/ipv6/contrib/tcsh/nls/french/set3 user/hrs/ipv6/contrib/tcsh/nls/french/set30 user/hrs/ipv6/contrib/tcsh/nls/french/set31 user/hrs/ipv6/contrib/tcsh/nls/french/set4 user/hrs/ipv6/contrib/tcsh/nls/french/set6 user/hrs/ipv6/contrib/tcsh/nls/french/set7 user/hrs/ipv6/contrib/tcsh/nls/french/set8 user/hrs/ipv6/contrib/tcsh/nls/french/set9 user/hrs/ipv6/contrib/tcsh/nls/german/charset user/hrs/ipv6/contrib/tcsh/nls/german/set1 user/hrs/ipv6/contrib/tcsh/nls/german/set10 user/hrs/ipv6/contrib/tcsh/nls/german/set13 user/hrs/ipv6/contrib/tcsh/nls/german/set15 user/hrs/ipv6/contrib/tcsh/nls/german/set16 user/hrs/ipv6/contrib/tcsh/nls/german/set17 user/hrs/ipv6/contrib/tcsh/nls/german/set18 user/hrs/ipv6/contrib/tcsh/nls/german/set19 user/hrs/ipv6/contrib/tcsh/nls/german/set2 user/hrs/ipv6/contrib/tcsh/nls/german/set20 user/hrs/ipv6/contrib/tcsh/nls/german/set22 user/hrs/ipv6/contrib/tcsh/nls/german/set23 user/hrs/ipv6/contrib/tcsh/nls/german/set25 user/hrs/ipv6/contrib/tcsh/nls/german/set26 user/hrs/ipv6/contrib/tcsh/nls/german/set27 user/hrs/ipv6/contrib/tcsh/nls/german/set29 user/hrs/ipv6/contrib/tcsh/nls/german/set3 user/hrs/ipv6/contrib/tcsh/nls/german/set30 user/hrs/ipv6/contrib/tcsh/nls/german/set31 user/hrs/ipv6/contrib/tcsh/nls/german/set4 user/hrs/ipv6/contrib/tcsh/nls/german/set5 user/hrs/ipv6/contrib/tcsh/nls/german/set6 user/hrs/ipv6/contrib/tcsh/nls/german/set7 user/hrs/ipv6/contrib/tcsh/nls/german/set8 user/hrs/ipv6/contrib/tcsh/nls/german/set9 user/hrs/ipv6/contrib/tcsh/nls/greek/charset user/hrs/ipv6/contrib/tcsh/nls/greek/set1 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set10 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set11 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set12 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set13 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set14 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set15 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set16 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set17 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set18 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set19 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set2 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set20 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set21 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set22 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set23 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set25 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set26 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set27 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set29 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set3 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set30 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set31 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set4 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set5 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set6 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set7 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set8 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set9 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/italian/charset user/hrs/ipv6/contrib/tcsh/nls/italian/set1 user/hrs/ipv6/contrib/tcsh/nls/italian/set11 user/hrs/ipv6/contrib/tcsh/nls/italian/set13 user/hrs/ipv6/contrib/tcsh/nls/italian/set15 user/hrs/ipv6/contrib/tcsh/nls/italian/set17 user/hrs/ipv6/contrib/tcsh/nls/italian/set19 user/hrs/ipv6/contrib/tcsh/nls/italian/set2 user/hrs/ipv6/contrib/tcsh/nls/italian/set20 user/hrs/ipv6/contrib/tcsh/nls/italian/set22 user/hrs/ipv6/contrib/tcsh/nls/italian/set23 user/hrs/ipv6/contrib/tcsh/nls/italian/set26 user/hrs/ipv6/contrib/tcsh/nls/italian/set3 user/hrs/ipv6/contrib/tcsh/nls/italian/set30 user/hrs/ipv6/contrib/tcsh/nls/italian/set4 user/hrs/ipv6/contrib/tcsh/nls/italian/set6 user/hrs/ipv6/contrib/tcsh/nls/italian/set7 user/hrs/ipv6/contrib/tcsh/nls/ja/charset user/hrs/ipv6/contrib/tcsh/nls/ja/set1 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set10 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set11 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set12 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set13 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set15 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set16 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set17 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set18 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set2 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set21 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set29 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set3 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set30 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set4 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set5 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set6 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set7 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set8 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/charset user/hrs/ipv6/contrib/tcsh/nls/russian/set1 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set10 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set11 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set12 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set13 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set14 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set15 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set16 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set17 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set18 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set19 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set2 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set20 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set22 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set23 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set25 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set26 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set27 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set29 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set30 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set31 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set4 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set5 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set6 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set7 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set8 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set9 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/spanish/charset user/hrs/ipv6/contrib/tcsh/nls/spanish/set1 user/hrs/ipv6/contrib/tcsh/nls/spanish/set10 user/hrs/ipv6/contrib/tcsh/nls/spanish/set13 user/hrs/ipv6/contrib/tcsh/nls/spanish/set14 user/hrs/ipv6/contrib/tcsh/nls/spanish/set15 user/hrs/ipv6/contrib/tcsh/nls/spanish/set16 user/hrs/ipv6/contrib/tcsh/nls/spanish/set17 user/hrs/ipv6/contrib/tcsh/nls/spanish/set18 user/hrs/ipv6/contrib/tcsh/nls/spanish/set19 user/hrs/ipv6/contrib/tcsh/nls/spanish/set2 user/hrs/ipv6/contrib/tcsh/nls/spanish/set20 user/hrs/ipv6/contrib/tcsh/nls/spanish/set22 user/hrs/ipv6/contrib/tcsh/nls/spanish/set23 user/hrs/ipv6/contrib/tcsh/nls/spanish/set25 user/hrs/ipv6/contrib/tcsh/nls/spanish/set26 user/hrs/ipv6/contrib/tcsh/nls/spanish/set27 user/hrs/ipv6/contrib/tcsh/nls/spanish/set3 user/hrs/ipv6/contrib/tcsh/nls/spanish/set30 user/hrs/ipv6/contrib/tcsh/nls/spanish/set4 user/hrs/ipv6/contrib/tcsh/nls/spanish/set5 user/hrs/ipv6/contrib/tcsh/nls/spanish/set6 user/hrs/ipv6/contrib/tcsh/nls/spanish/set7 user/hrs/ipv6/contrib/tcsh/nls/spanish/set8 user/hrs/ipv6/contrib/tcsh/nls/spanish/set9 user/hrs/ipv6/contrib/tcsh/nls/ukrainian/charset user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set1 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set10 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set11 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set12 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set13 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set14 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set15 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set16 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set17 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set18 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set19 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set2 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set20 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set22 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set23 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set25 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set26 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set27 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set29 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set30 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set31 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set5 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set6 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set7 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set8 (contents, props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set9 (contents, props changed) user/hrs/ipv6/contrib/tcsh/patchlevel.h user/hrs/ipv6/contrib/tcsh/pathnames.h user/hrs/ipv6/contrib/tcsh/sh.c user/hrs/ipv6/contrib/tcsh/sh.char.c user/hrs/ipv6/contrib/tcsh/sh.char.h user/hrs/ipv6/contrib/tcsh/sh.decls.h user/hrs/ipv6/contrib/tcsh/sh.dir.c user/hrs/ipv6/contrib/tcsh/sh.dol.c user/hrs/ipv6/contrib/tcsh/sh.err.c user/hrs/ipv6/contrib/tcsh/sh.exec.c user/hrs/ipv6/contrib/tcsh/sh.exp.c user/hrs/ipv6/contrib/tcsh/sh.file.c user/hrs/ipv6/contrib/tcsh/sh.func.c user/hrs/ipv6/contrib/tcsh/sh.glob.c user/hrs/ipv6/contrib/tcsh/sh.h user/hrs/ipv6/contrib/tcsh/sh.hist.c user/hrs/ipv6/contrib/tcsh/sh.lex.c user/hrs/ipv6/contrib/tcsh/sh.misc.c user/hrs/ipv6/contrib/tcsh/sh.parse.c user/hrs/ipv6/contrib/tcsh/sh.print.c user/hrs/ipv6/contrib/tcsh/sh.proc.c user/hrs/ipv6/contrib/tcsh/sh.proc.h user/hrs/ipv6/contrib/tcsh/sh.sem.c user/hrs/ipv6/contrib/tcsh/sh.set.c user/hrs/ipv6/contrib/tcsh/sh.time.c user/hrs/ipv6/contrib/tcsh/tc.alloc.c user/hrs/ipv6/contrib/tcsh/tc.const.c user/hrs/ipv6/contrib/tcsh/tc.decls.h user/hrs/ipv6/contrib/tcsh/tc.disc.c user/hrs/ipv6/contrib/tcsh/tc.func.c user/hrs/ipv6/contrib/tcsh/tc.nls.c user/hrs/ipv6/contrib/tcsh/tc.nls.h user/hrs/ipv6/contrib/tcsh/tc.os.c user/hrs/ipv6/contrib/tcsh/tc.os.h user/hrs/ipv6/contrib/tcsh/tc.prompt.c user/hrs/ipv6/contrib/tcsh/tc.sig.c user/hrs/ipv6/contrib/tcsh/tc.sig.h user/hrs/ipv6/contrib/tcsh/tc.str.c user/hrs/ipv6/contrib/tcsh/tc.wait.h user/hrs/ipv6/contrib/tcsh/tc.who.c user/hrs/ipv6/contrib/tcsh/tcsh.man user/hrs/ipv6/contrib/tcsh/tcsh.man2html user/hrs/ipv6/contrib/tcsh/tw.color.c user/hrs/ipv6/contrib/tcsh/tw.init.c user/hrs/ipv6/contrib/tcsh/tw.parse.c user/hrs/ipv6/contrib/tcsh/vms.termcap.c user/hrs/ipv6/contrib/telnet/libtelnet/encrypt.c user/hrs/ipv6/contrib/telnet/libtelnet/kerberos5.c user/hrs/ipv6/contrib/telnet/libtelnet/sra.c user/hrs/ipv6/contrib/telnet/telnet/utilities.c user/hrs/ipv6/contrib/telnet/telnetd/utility.c user/hrs/ipv6/contrib/tnftp/src/main.c user/hrs/ipv6/contrib/tnftp/src/util.c user/hrs/ipv6/contrib/top/top.c user/hrs/ipv6/contrib/tzcode/stdtime/localtime.c user/hrs/ipv6/contrib/tzcode/zic/zdump.c user/hrs/ipv6/contrib/tzdata/africa user/hrs/ipv6/contrib/tzdata/antarctica user/hrs/ipv6/contrib/tzdata/asia user/hrs/ipv6/contrib/tzdata/australasia user/hrs/ipv6/contrib/tzdata/backward user/hrs/ipv6/contrib/tzdata/europe user/hrs/ipv6/contrib/tzdata/leapseconds user/hrs/ipv6/contrib/tzdata/northamerica user/hrs/ipv6/contrib/tzdata/southamerica user/hrs/ipv6/contrib/tzdata/zone.tab user/hrs/ipv6/crypto/heimdal/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/ChangeLog.2002 (contents, props changed) user/hrs/ipv6/crypto/heimdal/ChangeLog.2003 (contents, props changed) user/hrs/ipv6/crypto/heimdal/ChangeLog.2004 (contents, props changed) user/hrs/ipv6/crypto/heimdal/ChangeLog.2005 (contents, props changed) user/hrs/ipv6/crypto/heimdal/ChangeLog.2006 (contents, props changed) user/hrs/ipv6/crypto/heimdal/LICENSE (contents, props changed) user/hrs/ipv6/crypto/heimdal/Makefile.am user/hrs/ipv6/crypto/heimdal/Makefile.am.common user/hrs/ipv6/crypto/heimdal/Makefile.in user/hrs/ipv6/crypto/heimdal/NEWS (contents, props changed) user/hrs/ipv6/crypto/heimdal/README (contents, props changed) user/hrs/ipv6/crypto/heimdal/acinclude.m4 user/hrs/ipv6/crypto/heimdal/aclocal.m4 user/hrs/ipv6/crypto/heimdal/admin/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/Makefile.am user/hrs/ipv6/crypto/heimdal/admin/Makefile.in user/hrs/ipv6/crypto/heimdal/admin/add.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/change.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/copy.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/get.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/ktutil-commands.in user/hrs/ipv6/crypto/heimdal/admin/ktutil.8 user/hrs/ipv6/crypto/heimdal/admin/ktutil.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/ktutil_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/list.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/purge.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/remove.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/admin/rename.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/afsutil/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/afsutil/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/afsutil/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/afsutil/afslog.1 user/hrs/ipv6/crypto/heimdal/appl/afsutil/afslog.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/afsutil/pagsh.1 user/hrs/ipv6/crypto/heimdal/appl/afsutil/pagsh.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/ftp/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/ftp/common/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/ftp/common/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/ftp/common/buffer.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/common/common.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/common/sockbuf.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/cmds.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/cmdtab.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/domacro.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/extern.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/ftp.1 user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/ftp.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/ftp_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/globals.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/gssapi.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/kauth.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/main.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/ruserpass.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/security.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/security.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/extern.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/ftpcmd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/ftpcmd.y (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/ftpd.8 user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/ftpd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/ftpd_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/ftpusers.5 user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/gss_userok.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/gssapi.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/kauth.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/klist.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/logwtmp.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/ls.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/popen.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/security.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/gssmask/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/gssmask/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/gssmask/common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/gssmask/common.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/gssmask/gssmaestro.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/gssmask/gssmask.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/gssmask/protocol.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/kf/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/kf/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/kf/kf.1 user/hrs/ipv6/crypto/heimdal/appl/kf/kf.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/kf/kf_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/kf/kfd.8 user/hrs/ipv6/crypto/heimdal/appl/kf/kfd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/login/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/login/conf.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/env.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/limits_conf.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/login.1 user/hrs/ipv6/crypto/heimdal/appl/login/login.access.5 user/hrs/ipv6/crypto/heimdal/appl/login/login.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/login_access.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/login_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/loginpaths.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/osfc2.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/read_string.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/shadow.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/stty_default.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/tty.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/utmp_login.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/login/utmpx_login.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/push/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/push/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/push/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/push/pfrom.1 user/hrs/ipv6/crypto/heimdal/appl/push/pfrom.in user/hrs/ipv6/crypto/heimdal/appl/push/push.8 user/hrs/ipv6/crypto/heimdal/appl/push/push.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/push/push_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rcp/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rcp/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/rcp/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/rcp/extern.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rcp/rcp.1 user/hrs/ipv6/crypto/heimdal/appl/rcp/rcp.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rcp/rcp_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rcp/util.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rsh/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rsh/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/rsh/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/rsh/common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rsh/limits_conf.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rsh/login_access.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rsh/rsh.1 user/hrs/ipv6/crypto/heimdal/appl/rsh/rsh.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rsh/rsh_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/rsh/rshd.8 user/hrs/ipv6/crypto/heimdal/appl/rsh/rshd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/su/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/su/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/su/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/su/su.1 user/hrs/ipv6/crypto/heimdal/appl/su/su.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/su/supaths.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/telnet/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/auth-proto.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/auth.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/auth.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/enc-proto.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/enc_des.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/encrypt.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/encrypt.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/genget.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/kerberos5.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/misc-proto.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/misc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/rsaencpwd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/spx.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/authenc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/commands.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/externs.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/main.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/network.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/ring.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/ring.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/sys_bsd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/telnet.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/telnet_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/terminal.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/utilities.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/authenc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/defs.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/ext.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/global.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/slc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/state.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/sys_term.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/telnetd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/telnetd.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/termstat.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnetd/utility.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/Makefile.am user/hrs/ipv6/crypto/heimdal/appl/test/Makefile.in user/hrs/ipv6/crypto/heimdal/appl/test/common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/gss_common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/gss_common.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/gssapi_client.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/gssapi_server.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/http_client.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/nt_gss_client.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/nt_gss_common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/nt_gss_common.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/nt_gss_server.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/tcp_client.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/tcp_server.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/test_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/uu_client.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/appl/test/uu_server.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/autogen.sh user/hrs/ipv6/crypto/heimdal/compile user/hrs/ipv6/crypto/heimdal/config.guess user/hrs/ipv6/crypto/heimdal/config.sub user/hrs/ipv6/crypto/heimdal/configure user/hrs/ipv6/crypto/heimdal/doc/Makefile.am user/hrs/ipv6/crypto/heimdal/doc/Makefile.in user/hrs/ipv6/crypto/heimdal/doc/ack.texi user/hrs/ipv6/crypto/heimdal/doc/apps.texi user/hrs/ipv6/crypto/heimdal/doc/doxytmpl.dxy user/hrs/ipv6/crypto/heimdal/doc/hcrypto.din user/hrs/ipv6/crypto/heimdal/doc/heimdal.texi user/hrs/ipv6/crypto/heimdal/doc/hx509.din user/hrs/ipv6/crypto/heimdal/doc/hx509.texi user/hrs/ipv6/crypto/heimdal/doc/install.texi user/hrs/ipv6/crypto/heimdal/doc/intro.texi user/hrs/ipv6/crypto/heimdal/doc/kerberos4.texi user/hrs/ipv6/crypto/heimdal/doc/krb5.din user/hrs/ipv6/crypto/heimdal/doc/migration.texi user/hrs/ipv6/crypto/heimdal/doc/misc.texi user/hrs/ipv6/crypto/heimdal/doc/ntlm.din user/hrs/ipv6/crypto/heimdal/doc/programming.texi user/hrs/ipv6/crypto/heimdal/doc/setup.texi user/hrs/ipv6/crypto/heimdal/doc/vars.texi user/hrs/ipv6/crypto/heimdal/doc/whatis.texi user/hrs/ipv6/crypto/heimdal/doc/win2k.texi user/hrs/ipv6/crypto/heimdal/etc/Makefile.am user/hrs/ipv6/crypto/heimdal/etc/Makefile.in user/hrs/ipv6/crypto/heimdal/etc/services.append user/hrs/ipv6/crypto/heimdal/include/Makefile.am user/hrs/ipv6/crypto/heimdal/include/Makefile.in user/hrs/ipv6/crypto/heimdal/include/bits.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/include/config.h.in user/hrs/ipv6/crypto/heimdal/include/gssapi/Makefile.am user/hrs/ipv6/crypto/heimdal/include/gssapi/Makefile.in user/hrs/ipv6/crypto/heimdal/include/hcrypto/Makefile.am user/hrs/ipv6/crypto/heimdal/include/hcrypto/Makefile.in user/hrs/ipv6/crypto/heimdal/include/kadm5/Makefile.am user/hrs/ipv6/crypto/heimdal/include/kadm5/Makefile.in user/hrs/ipv6/crypto/heimdal/install-sh user/hrs/ipv6/crypto/heimdal/kadmin/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/Makefile.am user/hrs/ipv6/crypto/heimdal/kadmin/Makefile.in user/hrs/ipv6/crypto/heimdal/kadmin/add-random-users.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/add_enctype.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/ank.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/check.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/cpw.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/del.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/del_enctype.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/dump.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/ext.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/get.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/init.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/kadm_conn.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/kadmin-commands.in user/hrs/ipv6/crypto/heimdal/kadmin/kadmin.8 user/hrs/ipv6/crypto/heimdal/kadmin/kadmin.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/kadmin_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/kadmind.8 user/hrs/ipv6/crypto/heimdal/kadmin/kadmind.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/load.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/mod.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/pw_quality.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/random_password.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/rename.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/server.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/stash.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/test_util.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kadmin/util.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/Makefile.am user/hrs/ipv6/crypto/heimdal/kcm/Makefile.in user/hrs/ipv6/crypto/heimdal/kcm/acl.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/acquire.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/cache.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/client.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/config.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/connect.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/events.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/glue.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/headers.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/kcm.8 user/hrs/ipv6/crypto/heimdal/kcm/kcm_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/log.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/main.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/protocol.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kcm/renew.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/Makefile.am user/hrs/ipv6/crypto/heimdal/kdc/Makefile.in user/hrs/ipv6/crypto/heimdal/kdc/config.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/connect.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/default_config.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/digest.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/headers.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/hprop.8 user/hrs/ipv6/crypto/heimdal/kdc/hprop.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/hprop.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/hpropd.8 user/hrs/ipv6/crypto/heimdal/kdc/hpropd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/kdc-private.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/kdc-protos.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/kdc-replay.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/kdc.8 user/hrs/ipv6/crypto/heimdal/kdc/kdc.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/kdc_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/kerberos5.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/krb5tgs.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/kstash.8 user/hrs/ipv6/crypto/heimdal/kdc/kstash.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/kx509.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/log.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/main.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/misc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/mit_dump.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/pkinit.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/process.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/rx.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/set_dbinfo.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/string2key.8 user/hrs/ipv6/crypto/heimdal/kdc/string2key.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/version-script.map user/hrs/ipv6/crypto/heimdal/kdc/windc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kdc/windc_plugin.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kpasswd/Makefile.am user/hrs/ipv6/crypto/heimdal/kpasswd/Makefile.in user/hrs/ipv6/crypto/heimdal/kpasswd/kpasswd-generator.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kpasswd/kpasswd.1 user/hrs/ipv6/crypto/heimdal/kpasswd/kpasswd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kpasswd/kpasswd_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kpasswd/kpasswdd.8 user/hrs/ipv6/crypto/heimdal/kpasswd/kpasswdd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/Makefile.am user/hrs/ipv6/crypto/heimdal/kuser/Makefile.in user/hrs/ipv6/crypto/heimdal/kuser/copy_cred_cache.1 user/hrs/ipv6/crypto/heimdal/kuser/copy_cred_cache.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/generate-requests.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/kdecode_ticket.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/kdestroy.1 user/hrs/ipv6/crypto/heimdal/kuser/kdestroy.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/kdigest-commands.in user/hrs/ipv6/crypto/heimdal/kuser/kdigest.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/kgetcred.1 user/hrs/ipv6/crypto/heimdal/kuser/kgetcred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/kimpersonate.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/kinit.1 user/hrs/ipv6/crypto/heimdal/kuser/kinit.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/klist.1 user/hrs/ipv6/crypto/heimdal/kuser/klist.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/kuser_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/kuser/kverify.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/asn1/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/asn1/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/asn1/asn1-common.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/asn1_err.et user/hrs/ipv6/crypto/heimdal/lib/asn1/asn1_gen.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/asn1_print.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/asn1_queue.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/canthandle.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/check-common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/check-common.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/check-der.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/check-gen.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/check-timegm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der-protos.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der_cmp.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der_copy.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der_format.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der_free.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der_get.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der_length.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/der_put.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/digest.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/extra.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/gen.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/gen_copy.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/gen_decode.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/gen_encode.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/gen_free.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/gen_glue.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/gen_length.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/gen_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/gen_seq.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/hash.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/hash.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/heim_asn1.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/kx509.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/lex.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/lex.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/lex.l user/hrs/ipv6/crypto/heimdal/lib/asn1/main.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/pkcs12.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/pkcs8.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/pkcs9.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/pkinit.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/rfc2459.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/setchgpw2.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/symbol.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/symbol.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/asn1/test.asn1 user/hrs/ipv6/crypto/heimdal/lib/asn1/test.gen user/hrs/ipv6/crypto/heimdal/lib/asn1/timegm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/com_err/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/com_err/com_err.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/com_err.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/com_right.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/compile_et.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/compile_et.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/error.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/lex.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/lex.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/lex.l user/hrs/ipv6/crypto/heimdal/lib/com_err/parse.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/parse.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/parse.y user/hrs/ipv6/crypto/heimdal/lib/com_err/roken_rename.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/com_err/version-script.map user/hrs/ipv6/crypto/heimdal/lib/gssapi/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/gssapi/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/gssapi/gss-commands.in user/hrs/ipv6/crypto/heimdal/lib/gssapi/gss_acquire_cred.3 user/hrs/ipv6/crypto/heimdal/lib/gssapi/gssapi.3 user/hrs/ipv6/crypto/heimdal/lib/gssapi/gssapi.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/gssapi/gssapi.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/gssapi/gssapi_krb5.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/gssapi/gssapi_spnego.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/gssapi_mech.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/8003.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/acquire_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/add_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/address_to_krb5addr.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/arcfour.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/canonicalize_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/ccache_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/cfx.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/cfx.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/compare_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/compat.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/context_time.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/copy_ccache.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/decapsulate.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/delete_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/display_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/display_status.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/duplicate_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/encapsulate.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/export_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/export_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/external.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/get_mic.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/gkrb5_err.et user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/gsskrb5-private.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/gsskrb5_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/import_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/import_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/indicate_mechs.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/init.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/init_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/inquire_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/inquire_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/inquire_cred_by_mech.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/inquire_cred_by_oid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/inquire_mechs_for_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/inquire_names_for_mech.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/prf.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/process_context_token.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/release_buffer.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/release_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/release_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/sequence.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/set_cred_option.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/set_sec_context_option.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/test_cfx.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/ticket_flags.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/unwrap.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/verify_mic.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/krb5/wrap.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/acquire_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/add_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/canonicalize_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/compare_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/context_time.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/crypto.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/delete_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/display_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/display_status.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/duplicate_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/export_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/export_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/external.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/import_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/import_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/indicate_mechs.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/inquire_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/inquire_cred_by_mech.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/inquire_mechs_for_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/inquire_names_for_mech.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/ntlm-private.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/ntlm.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/process_context_token.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/release_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/ntlm/release_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/accept_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/compat.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/context_stubs.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/cred_stubs.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/external.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/init_sec_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/spnego-private.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/spnego.asn1 user/hrs/ipv6/crypto/heimdal/lib/gssapi/spnego/spnego_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/test_acquire_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/test_common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/test_common.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/test_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/test_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/test_kcred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/test_names.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/test_ntlm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/test_oid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/gssapi/version-script.map user/hrs/ipv6/crypto/heimdal/lib/hdb/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/hdb/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/hdb/common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/db.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/db3.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/dbinfo.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/ext.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb-ldap.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb-private.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb-protos.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb.asn1 user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb.schema user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb_err.et user/hrs/ipv6/crypto/heimdal/lib/hdb/hdb_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/keys.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/keytab.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/mkey.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/ndbm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/print.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hdb/test_dbinfo.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/hx509/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/hx509/ca.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/cert.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/cms.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/collector.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/crmf.asn1 user/hrs/ipv6/crypto/heimdal/lib/hx509/crypto.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/doxygen.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/env.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/error.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/file.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/hx509-private.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/hx509-protos.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/hx509.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/hx509_err.et user/hrs/ipv6/crypto/heimdal/lib/hx509/hx_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/hxtool-commands.in user/hrs/ipv6/crypto/heimdal/lib/hx509/hxtool.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/keyset.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ks_dir.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ks_file.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ks_keychain.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ks_mem.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ks_null.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ks_p11.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ks_p12.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/lock.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ocsp.asn1 user/hrs/ipv6/crypto/heimdal/lib/hx509/peer.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/pkcs10.asn1 user/hrs/ipv6/crypto/heimdal/lib/hx509/print.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/req.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/revoke.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/softp11.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/test_ca.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_cert.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_chain.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_cms.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_crypto.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_java_pkcs11.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_name.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/test_nist.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_nist2.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_nist_cert.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_nist_pkcs12.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_pkcs11.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_query.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_req.in user/hrs/ipv6/crypto/heimdal/lib/hx509/test_soft_pkcs11.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/test_windows.in user/hrs/ipv6/crypto/heimdal/lib/hx509/tst-crypto-available2 user/hrs/ipv6/crypto/heimdal/lib/hx509/tst-crypto-select1 user/hrs/ipv6/crypto/heimdal/lib/hx509/tst-crypto-select2 user/hrs/ipv6/crypto/heimdal/lib/hx509/version-script.map user/hrs/ipv6/crypto/heimdal/lib/kadm5/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/kadm5/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/kadm5/acl.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/ad.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/admin.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/bump_pw_expire.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/check-cracklib.pl user/hrs/ipv6/crypto/heimdal/lib/kadm5/chpass_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/chpass_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/client_glue.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/common_glue.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/context_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/create_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/create_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/default_keys.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/delete_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/delete_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/destroy_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/destroy_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/ent_setup.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/error.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/flush.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/flush_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/flush_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/free.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/get_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/get_princs_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/get_princs_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/get_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/init_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/init_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/iprop-commands.in user/hrs/ipv6/crypto/heimdal/lib/kadm5/iprop-log.8 user/hrs/ipv6/crypto/heimdal/lib/kadm5/iprop-log.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/iprop.8 user/hrs/ipv6/crypto/heimdal/lib/kadm5/iprop.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/ipropd_common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/ipropd_master.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/ipropd_slave.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/kadm5-private.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/kadm5-pwcheck.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/kadm5_err.et user/hrs/ipv6/crypto/heimdal/lib/kadm5/kadm5_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/kadm5_pwcheck.3 user/hrs/ipv6/crypto/heimdal/lib/kadm5/keys.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/log.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/marshall.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/modify_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/modify_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/password_quality.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/private.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/privs_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/privs_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/randkey_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/randkey_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/rename_c.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/rename_s.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/sample_passwd_check.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/send_recv.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/server_glue.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/set_keys.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/set_modifier.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/test_pw_quality.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kafs/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kafs/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/kafs/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/kafs/afskrb5.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kafs/afslib.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kafs/afssys.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kafs/afssysdefs.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kafs/common.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kafs/kafs.3 user/hrs/ipv6/crypto/heimdal/lib/kafs/kafs.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kafs/kafs_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/kafs/roken_rename.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/krb5/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/krb5/acache.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/acl.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/add_et_list.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/addr_families.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/aes-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/aname_to_localname.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/appdefault.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/asn1_glue.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/auth_context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/build_ap_req.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/build_auth.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/cache.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/changepw.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/codec.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/config_file.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/constants.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/context.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/convert_creds.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/copy_host_realm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/crc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/creds.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/crypto.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/data.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/derived-key-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/digest.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/doxygen.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/eai_to_heim_errno.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/error_string.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/expand_hostname.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/fcache.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/free.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/free_host_realm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/generate_seq_number.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/generate_subkey.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/get_addrs.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/get_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/get_default_principal.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/get_default_realm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/get_for_creds.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/get_host_realm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/get_in_tkt.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/get_port.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/heim_err.et user/hrs/ipv6/crypto/heimdal/lib/krb5/init_creds.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/init_creds_pw.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/k524_err.et user/hrs/ipv6/crypto/heimdal/lib/krb5/kcm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/kcm.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/kerberos.8 user/hrs/ipv6/crypto/heimdal/lib/krb5/keyblock.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/keytab.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/keytab_any.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/keytab_file.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/keytab_keyfile.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/keytab_memory.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5-private.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5-protos.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5-v4compat.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5.conf.5 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5.moduli user/hrs/ipv6/crypto/heimdal/lib/krb5/krb524_convert_creds_kdc.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_425_conv_principal.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_acl_match_file.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_aname_to_localname.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_appdefault.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_auth_context.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_c_make_checksum.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_ccapi.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_check_transited.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_create_checksum.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_creds.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_digest.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_eai_to_heim_errno.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_encrypt.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_err.et user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_find_padata.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_generate_random_block.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_get_all_client_addrs.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_get_credentials.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_get_creds.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_get_forwarded_creds.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_get_in_cred.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_get_init_creds.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_get_krbhst.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_getportbyname.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_init_context.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_is_thread_safe.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_krbhst_init.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_mk_req.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_mk_safe.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_openlog.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_parse_name.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_principal.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_rcache.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_rd_error.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_rd_safe.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_set_default_realm.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_set_password.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_string_to_key.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_timeofday.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_verify_init_creds.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krb5_verify_user.3 user/hrs/ipv6/crypto/heimdal/lib/krb5/krbhst-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/krbhst.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/kuserok.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/locate_plugin.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/log.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/mcache.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/misc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/mit_glue.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/mk_error.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/mk_priv.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/mk_rep.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/mk_req.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/mk_req_ext.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/mk_safe.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/n-fold-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/n-fold.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/net_read.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/net_write.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/pac.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/padata.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/parse-name-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/pkinit.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/plugin.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/principal.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/prog_setup.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/prompter_posix.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/rd_cred.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/rd_error.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/rd_priv.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/rd_rep.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/rd_req.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/rd_safe.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/read_message.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/recvauth.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/replay.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/send_to_kdc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/sendauth.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/set_default_realm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/sock_principal.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/store-int.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/store-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/store.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/store_emem.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/store_fd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/store_mem.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/string-to-key-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_acl.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_addr.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_alname.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_cc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_config.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_crypto.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_crypto_wrapping.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_forward.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_get_addrs.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_hostname.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_keytab.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_kuserok.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_mem.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_pac.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_pkinit_dh2key.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_plugin.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_prf.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_princ.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_renew.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_store.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/test_time.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/ticket.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/time.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/transited.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/verify_init.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/verify_krb5_conf.8 user/hrs/ipv6/crypto/heimdal/lib/krb5/verify_krb5_conf.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/verify_user.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/version-script.map user/hrs/ipv6/crypto/heimdal/lib/krb5/version.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/warn.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/krb5/write_message.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/ntlm/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/ntlm/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/ntlm/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/ntlm/heimntlm-protos.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/ntlm/heimntlm.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/ntlm/ntlm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/ntlm/test_ntlm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/ntlm/version-script.map user/hrs/ipv6/crypto/heimdal/lib/roken/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/roken/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/roken/base64-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/base64.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/base64.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/bswap.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/chown.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/closefrom.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/concat.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/copyhostent.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/daemon.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/dumpdata.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/ecalloc.3 user/hrs/ipv6/crypto/heimdal/lib/roken/ecalloc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/emalloc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/environment.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/eread.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/erealloc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/err.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/err.hin user/hrs/ipv6/crypto/heimdal/lib/roken/errx.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/esetenv.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/estrdup.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/ewrite.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/fchown.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/flock.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/fnmatch.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/fnmatch.hin user/hrs/ipv6/crypto/heimdal/lib/roken/freeaddrinfo.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/freehostent.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/gai_strerror.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/get_default_username.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/get_window_size.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getaddrinfo-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getaddrinfo.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getaddrinfo_hostspec.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getarg.3 user/hrs/ipv6/crypto/heimdal/lib/roken/getarg.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getarg.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getcap.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getcwd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getdtablesize.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getegid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/geteuid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getgid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/gethostname.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getifaddrs.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getipnodebyaddr.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getipnodebyname.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getnameinfo.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getnameinfo_verified.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getopt.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getprogname.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/gettimeofday.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getuid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/getusershell.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/glob.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/glob.hin user/hrs/ipv6/crypto/heimdal/lib/roken/h_errno.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/hex-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/hex.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/hex.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/hostent_find_fqdn.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/hstrerror.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/ifaddrs.hin user/hrs/ipv6/crypto/heimdal/lib/roken/inet_aton.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/inet_ntop.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/inet_pton.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/initgroups.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/innetgr.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/iruserok.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/issuid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/k_getpwnam.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/k_getpwuid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/localtime_r.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/lstat.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/memmove.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/mini_inetd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/mkstemp.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/ndbm_wrap.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/ndbm_wrap.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/net_read.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/net_write.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/parse_bytes-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/parse_bytes.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/parse_bytes.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/parse_reply-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/parse_time-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/parse_time.3 user/hrs/ipv6/crypto/heimdal/lib/roken/parse_time.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/parse_time.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/parse_units.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/parse_units.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/putenv.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/rcmd.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/readv.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/realloc.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/recvmsg.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/resolve-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/resolve.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/resolve.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/roken-common.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/roken.awk user/hrs/ipv6/crypto/heimdal/lib/roken/roken.h.in user/hrs/ipv6/crypto/heimdal/lib/roken/roken_gethostby.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/rtbl.3 user/hrs/ipv6/crypto/heimdal/lib/roken/rtbl.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/rtbl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/sendmsg.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/setegid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/setenv.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/seteuid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/setprogname.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/signal.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/simple_exec.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/snprintf-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/snprintf.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/socket.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/socket_wrapper.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/socket_wrapper.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strcasecmp.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strcollect.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strdup.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strerror.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strftime.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strlcat.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strlcpy.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strlwr.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strncasecmp.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strndup.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strnlen.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strpftime-test.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strpftime-test.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strpool.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strptime.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strsep.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strsep_copy.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strtok_r.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/strupr.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/swab.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/test-mem.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/test-mem.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/test-readenv.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/timegm.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/timeval.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/tm2time.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/unsetenv.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/unvis.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/verify.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/verr.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/verrx.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/vis.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/vis.hin user/hrs/ipv6/crypto/heimdal/lib/roken/vsyslog.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/vwarn.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/vwarnx.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/warn.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/warnerr.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/warnx.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/write_pid.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/writev.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/roken/xdbm.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/sl/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/sl/roken_rename.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/sl.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/sl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/sl_locl.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/slc-gram.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/slc-gram.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/slc-gram.y user/hrs/ipv6/crypto/heimdal/lib/sl/slc-lex.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/slc-lex.l user/hrs/ipv6/crypto/heimdal/lib/sl/slc.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/sl/test_sl.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/vers/ChangeLog (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/vers/Makefile.am user/hrs/ipv6/crypto/heimdal/lib/vers/Makefile.in user/hrs/ipv6/crypto/heimdal/lib/vers/print_version.c (contents, props changed) user/hrs/ipv6/crypto/heimdal/lib/vers/vers.h (contents, props changed) user/hrs/ipv6/crypto/heimdal/ltmain.sh user/hrs/ipv6/crypto/heimdal/missing user/hrs/ipv6/crypto/heimdal/tools/Makefile.am user/hrs/ipv6/crypto/heimdal/tools/Makefile.in user/hrs/ipv6/crypto/heimdal/tools/heimdal-gssapi.pc.in user/hrs/ipv6/crypto/heimdal/tools/kdc-log-analyze.pl user/hrs/ipv6/crypto/heimdal/tools/krb5-config.1 user/hrs/ipv6/crypto/heimdal/tools/krb5-config.in user/hrs/ipv6/crypto/openssh/ChangeLog user/hrs/ipv6/crypto/openssh/INSTALL user/hrs/ipv6/crypto/openssh/PROTOCOL.mux user/hrs/ipv6/crypto/openssh/README user/hrs/ipv6/crypto/openssh/aclocal.m4 user/hrs/ipv6/crypto/openssh/audit-linux.c (contents, props changed) user/hrs/ipv6/crypto/openssh/auth-rsa.c user/hrs/ipv6/crypto/openssh/auth-skey.c user/hrs/ipv6/crypto/openssh/auth.c user/hrs/ipv6/crypto/openssh/auth.h user/hrs/ipv6/crypto/openssh/auth2-gss.c user/hrs/ipv6/crypto/openssh/auth2-pubkey.c user/hrs/ipv6/crypto/openssh/auth2.c user/hrs/ipv6/crypto/openssh/authfd.c user/hrs/ipv6/crypto/openssh/authfile.c user/hrs/ipv6/crypto/openssh/authfile.h user/hrs/ipv6/crypto/openssh/channels.c user/hrs/ipv6/crypto/openssh/channels.h user/hrs/ipv6/crypto/openssh/clientloop.c user/hrs/ipv6/crypto/openssh/clientloop.h user/hrs/ipv6/crypto/openssh/config.guess user/hrs/ipv6/crypto/openssh/config.h user/hrs/ipv6/crypto/openssh/config.h.in user/hrs/ipv6/crypto/openssh/defines.h user/hrs/ipv6/crypto/openssh/entropy.c user/hrs/ipv6/crypto/openssh/gss-serv.c user/hrs/ipv6/crypto/openssh/kex.c user/hrs/ipv6/crypto/openssh/key.c user/hrs/ipv6/crypto/openssh/log.c user/hrs/ipv6/crypto/openssh/log.h user/hrs/ipv6/crypto/openssh/loginrec.c (contents, props changed) user/hrs/ipv6/crypto/openssh/mac.c user/hrs/ipv6/crypto/openssh/misc.c user/hrs/ipv6/crypto/openssh/misc.h user/hrs/ipv6/crypto/openssh/moduli.5 user/hrs/ipv6/crypto/openssh/monitor.c user/hrs/ipv6/crypto/openssh/monitor.h user/hrs/ipv6/crypto/openssh/monitor_wrap.c user/hrs/ipv6/crypto/openssh/monitor_wrap.h user/hrs/ipv6/crypto/openssh/mux.c user/hrs/ipv6/crypto/openssh/myproposal.h user/hrs/ipv6/crypto/openssh/openbsd-compat/bsd-cygwin_util.c user/hrs/ipv6/crypto/openssh/openbsd-compat/bsd-cygwin_util.h user/hrs/ipv6/crypto/openssh/openbsd-compat/openssl-compat.c user/hrs/ipv6/crypto/openssh/openbsd-compat/openssl-compat.h user/hrs/ipv6/crypto/openssh/openbsd-compat/port-linux.c user/hrs/ipv6/crypto/openssh/openbsd-compat/port-linux.h user/hrs/ipv6/crypto/openssh/packet.c user/hrs/ipv6/crypto/openssh/packet.h user/hrs/ipv6/crypto/openssh/pathnames.h user/hrs/ipv6/crypto/openssh/readconf.c user/hrs/ipv6/crypto/openssh/readconf.h user/hrs/ipv6/crypto/openssh/servconf.c user/hrs/ipv6/crypto/openssh/servconf.h user/hrs/ipv6/crypto/openssh/serverloop.c user/hrs/ipv6/crypto/openssh/session.c user/hrs/ipv6/crypto/openssh/sftp-server.c user/hrs/ipv6/crypto/openssh/sftp.1 user/hrs/ipv6/crypto/openssh/ssh-add.c user/hrs/ipv6/crypto/openssh/ssh-agent.1 user/hrs/ipv6/crypto/openssh/ssh-agent.c user/hrs/ipv6/crypto/openssh/ssh-keygen.1 user/hrs/ipv6/crypto/openssh/ssh-keygen.c user/hrs/ipv6/crypto/openssh/ssh-keyscan.c user/hrs/ipv6/crypto/openssh/ssh-keysign.c user/hrs/ipv6/crypto/openssh/ssh-pkcs11-helper.c user/hrs/ipv6/crypto/openssh/ssh-pkcs11.c user/hrs/ipv6/crypto/openssh/ssh.1 user/hrs/ipv6/crypto/openssh/ssh.c user/hrs/ipv6/crypto/openssh/ssh_config user/hrs/ipv6/crypto/openssh/ssh_config.5 user/hrs/ipv6/crypto/openssh/ssh_namespace.h user/hrs/ipv6/crypto/openssh/sshconnect.c user/hrs/ipv6/crypto/openssh/sshconnect2.c user/hrs/ipv6/crypto/openssh/sshd.8 user/hrs/ipv6/crypto/openssh/sshd.c user/hrs/ipv6/crypto/openssh/sshd_config user/hrs/ipv6/crypto/openssh/sshd_config.5 user/hrs/ipv6/crypto/openssh/version.h user/hrs/ipv6/etc/Makefile user/hrs/ipv6/etc/defaults/devfs.rules user/hrs/ipv6/etc/defaults/periodic.conf user/hrs/ipv6/etc/defaults/rc.conf user/hrs/ipv6/etc/devd.conf user/hrs/ipv6/etc/devd/Makefile user/hrs/ipv6/etc/devd/usb.conf user/hrs/ipv6/etc/devfs.conf user/hrs/ipv6/etc/mac.conf user/hrs/ipv6/etc/mtree/BSD.include.dist user/hrs/ipv6/etc/mtree/BSD.usr.dist user/hrs/ipv6/etc/namedb/named.conf user/hrs/ipv6/etc/netstart user/hrs/ipv6/etc/network.subr user/hrs/ipv6/etc/newsyslog.conf user/hrs/ipv6/etc/periodic/daily/220.backup-pkgdb user/hrs/ipv6/etc/periodic/daily/310.accounting user/hrs/ipv6/etc/periodic/daily/404.status-zfs user/hrs/ipv6/etc/periodic/daily/800.scrub-zfs user/hrs/ipv6/etc/portsnap.conf user/hrs/ipv6/etc/rc user/hrs/ipv6/etc/rc.d/LOGIN user/hrs/ipv6/etc/rc.d/Makefile user/hrs/ipv6/etc/rc.d/NETWORKING user/hrs/ipv6/etc/rc.d/SERVERS user/hrs/ipv6/etc/rc.d/accounting user/hrs/ipv6/etc/rc.d/addswap user/hrs/ipv6/etc/rc.d/amd user/hrs/ipv6/etc/rc.d/apm user/hrs/ipv6/etc/rc.d/apmd user/hrs/ipv6/etc/rc.d/auditd user/hrs/ipv6/etc/rc.d/bgfsck user/hrs/ipv6/etc/rc.d/bootparams user/hrs/ipv6/etc/rc.d/bridge user/hrs/ipv6/etc/rc.d/bsnmpd user/hrs/ipv6/etc/rc.d/bthidd user/hrs/ipv6/etc/rc.d/cleanvar user/hrs/ipv6/etc/rc.d/cleartmp user/hrs/ipv6/etc/rc.d/cron user/hrs/ipv6/etc/rc.d/ddb user/hrs/ipv6/etc/rc.d/devd user/hrs/ipv6/etc/rc.d/devfs user/hrs/ipv6/etc/rc.d/dhclient user/hrs/ipv6/etc/rc.d/dmesg user/hrs/ipv6/etc/rc.d/ftp-proxy user/hrs/ipv6/etc/rc.d/ftpd user/hrs/ipv6/etc/rc.d/gptboot user/hrs/ipv6/etc/rc.d/hastd user/hrs/ipv6/etc/rc.d/hcsecd user/hrs/ipv6/etc/rc.d/hostapd user/hrs/ipv6/etc/rc.d/hostname user/hrs/ipv6/etc/rc.d/inetd user/hrs/ipv6/etc/rc.d/ip6addrctl user/hrs/ipv6/etc/rc.d/ipfilter user/hrs/ipv6/etc/rc.d/ipfs user/hrs/ipv6/etc/rc.d/ipmon user/hrs/ipv6/etc/rc.d/ipnat user/hrs/ipv6/etc/rc.d/ipsec user/hrs/ipv6/etc/rc.d/ipxrouted user/hrs/ipv6/etc/rc.d/jail user/hrs/ipv6/etc/rc.d/keyserv user/hrs/ipv6/etc/rc.d/kld user/hrs/ipv6/etc/rc.d/lockd user/hrs/ipv6/etc/rc.d/lpd user/hrs/ipv6/etc/rc.d/mountd user/hrs/ipv6/etc/rc.d/moused user/hrs/ipv6/etc/rc.d/mroute6d user/hrs/ipv6/etc/rc.d/mrouted user/hrs/ipv6/etc/rc.d/natd user/hrs/ipv6/etc/rc.d/netif user/hrs/ipv6/etc/rc.d/netwait user/hrs/ipv6/etc/rc.d/newsyslog user/hrs/ipv6/etc/rc.d/nfscbd user/hrs/ipv6/etc/rc.d/nfsd user/hrs/ipv6/etc/rc.d/nfsuserd user/hrs/ipv6/etc/rc.d/nscd user/hrs/ipv6/etc/rc.d/ntpd user/hrs/ipv6/etc/rc.d/ntpdate user/hrs/ipv6/etc/rc.d/pf user/hrs/ipv6/etc/rc.d/pflog user/hrs/ipv6/etc/rc.d/pfsync user/hrs/ipv6/etc/rc.d/powerd user/hrs/ipv6/etc/rc.d/ppp user/hrs/ipv6/etc/rc.d/pppoed user/hrs/ipv6/etc/rc.d/quota user/hrs/ipv6/etc/rc.d/rarpd user/hrs/ipv6/etc/rc.d/rfcomm_pppd_server user/hrs/ipv6/etc/rc.d/route6d user/hrs/ipv6/etc/rc.d/routed user/hrs/ipv6/etc/rc.d/routing user/hrs/ipv6/etc/rc.d/rpcbind user/hrs/ipv6/etc/rc.d/rtadvd user/hrs/ipv6/etc/rc.d/rtsold user/hrs/ipv6/etc/rc.d/rwho user/hrs/ipv6/etc/rc.d/sdpd user/hrs/ipv6/etc/rc.d/sendmail user/hrs/ipv6/etc/rc.d/sshd user/hrs/ipv6/etc/rc.d/statd user/hrs/ipv6/etc/rc.d/syscons user/hrs/ipv6/etc/rc.d/syslogd user/hrs/ipv6/etc/rc.d/timed user/hrs/ipv6/etc/rc.d/ubthidhci user/hrs/ipv6/etc/rc.d/var user/hrs/ipv6/etc/rc.d/virecover user/hrs/ipv6/etc/rc.d/watchdogd user/hrs/ipv6/etc/rc.d/ypbind user/hrs/ipv6/etc/rc.d/yppasswdd user/hrs/ipv6/etc/rc.d/ypserv user/hrs/ipv6/etc/rc.d/ypset user/hrs/ipv6/etc/rc.d/ypupdated user/hrs/ipv6/etc/rc.d/ypxfrd user/hrs/ipv6/etc/rc.firewall user/hrs/ipv6/etc/rc.initdiskless user/hrs/ipv6/etc/rc.resume user/hrs/ipv6/etc/rc.shutdown user/hrs/ipv6/etc/rc.subr user/hrs/ipv6/etc/rc.suspend user/hrs/ipv6/etc/root/dot.cshrc user/hrs/ipv6/etc/services user/hrs/ipv6/games/bcd/bcd.c user/hrs/ipv6/games/caesar/caesar.c user/hrs/ipv6/games/factor/factor.c user/hrs/ipv6/games/fortune/datfiles/fortunes user/hrs/ipv6/games/fortune/datfiles/fortunes-o.real user/hrs/ipv6/games/fortune/datfiles/murphy user/hrs/ipv6/games/fortune/fortune/fortune.c user/hrs/ipv6/games/fortune/unstr/unstr.c user/hrs/ipv6/games/grdc/grdc.c user/hrs/ipv6/games/morse/morse.c user/hrs/ipv6/games/number/number.c user/hrs/ipv6/games/pom/pom.6 user/hrs/ipv6/games/pom/pom.c user/hrs/ipv6/gnu/lib/Makefile user/hrs/ipv6/gnu/lib/csu/Makefile user/hrs/ipv6/gnu/lib/libgcc/Makefile user/hrs/ipv6/gnu/lib/libstdc++/Makefile user/hrs/ipv6/gnu/lib/libstdc++/config.h user/hrs/ipv6/gnu/lib/libsupc++/Makefile user/hrs/ipv6/gnu/usr.bin/binutils/Makefile.inc0 user/hrs/ipv6/gnu/usr.bin/binutils/as/Makefile user/hrs/ipv6/gnu/usr.bin/binutils/as/mips-freebsd/itbl-cpu.h user/hrs/ipv6/gnu/usr.bin/binutils/ld/Makefile.powerpc user/hrs/ipv6/gnu/usr.bin/binutils/ld/Makefile.powerpc64 user/hrs/ipv6/gnu/usr.bin/binutils/libbinutils/Makefile user/hrs/ipv6/gnu/usr.bin/binutils/objcopy/objcopy.1 user/hrs/ipv6/gnu/usr.bin/binutils/strip/strip.1 user/hrs/ipv6/gnu/usr.bin/cc/Makefile.tgt user/hrs/ipv6/gnu/usr.bin/cc/Makefile.ver user/hrs/ipv6/gnu/usr.bin/cc/c++/Makefile user/hrs/ipv6/gnu/usr.bin/cc/cc/Makefile user/hrs/ipv6/gnu/usr.bin/cc/cc_tools/auto-host.h user/hrs/ipv6/gnu/usr.bin/cc/cc_tools/freebsd-native.h user/hrs/ipv6/gnu/usr.bin/cc/cpp/Makefile user/hrs/ipv6/gnu/usr.bin/cvs/lib/config.h.proto user/hrs/ipv6/gnu/usr.bin/dialog/Makefile user/hrs/ipv6/gnu/usr.bin/gdb/Makefile.inc user/hrs/ipv6/gnu/usr.bin/gdb/arch/mips/Makefile user/hrs/ipv6/gnu/usr.bin/gdb/kgdb/main.c user/hrs/ipv6/gnu/usr.bin/gdb/kgdb/trgt_amd64.c user/hrs/ipv6/gnu/usr.bin/gdb/libgdb/Makefile user/hrs/ipv6/gnu/usr.bin/gperf/Makefile user/hrs/ipv6/gnu/usr.bin/gperf/config.h user/hrs/ipv6/gnu/usr.bin/groff/tmac/mdoc.local user/hrs/ipv6/include/Makefile user/hrs/ipv6/include/arpa/nameser_compat.h user/hrs/ipv6/include/assert.h user/hrs/ipv6/include/complex.h user/hrs/ipv6/include/ctype.h user/hrs/ipv6/include/dlfcn.h user/hrs/ipv6/include/glob.h user/hrs/ipv6/include/gssapi/gssapi.h user/hrs/ipv6/include/ieeefp.h user/hrs/ipv6/include/inttypes.h user/hrs/ipv6/include/iso646.h user/hrs/ipv6/include/langinfo.h user/hrs/ipv6/include/locale.h user/hrs/ipv6/include/malloc_np.h user/hrs/ipv6/include/monetary.h user/hrs/ipv6/include/netdb.h user/hrs/ipv6/include/regex.h user/hrs/ipv6/include/resolv.h user/hrs/ipv6/include/rpc/Makefile user/hrs/ipv6/include/rpc/svc.h user/hrs/ipv6/include/rpcsvc/Makefile user/hrs/ipv6/include/rpcsvc/mount.x user/hrs/ipv6/include/rpcsvc/nfs_prot.x user/hrs/ipv6/include/rpcsvc/nis.x user/hrs/ipv6/include/runetype.h user/hrs/ipv6/include/signal.h user/hrs/ipv6/include/stdbool.h user/hrs/ipv6/include/stdio.h user/hrs/ipv6/include/stdlib.h user/hrs/ipv6/include/string.h user/hrs/ipv6/include/tgmath.h user/hrs/ipv6/include/time.h user/hrs/ipv6/include/unistd.h user/hrs/ipv6/include/wchar.h user/hrs/ipv6/include/wctype.h user/hrs/ipv6/kerberos5/Makefile.inc user/hrs/ipv6/kerberos5/include/config.h user/hrs/ipv6/kerberos5/include/crypto-headers.h user/hrs/ipv6/kerberos5/include/krb5-types.h user/hrs/ipv6/kerberos5/include/version.h user/hrs/ipv6/kerberos5/lib/Makefile user/hrs/ipv6/kerberos5/lib/Makefile.inc user/hrs/ipv6/kerberos5/lib/libasn1/Makefile user/hrs/ipv6/kerberos5/lib/libgssapi_krb5/Makefile user/hrs/ipv6/kerberos5/lib/libgssapi_krb5/gss_krb5.c user/hrs/ipv6/kerberos5/lib/libgssapi_ntlm/Makefile user/hrs/ipv6/kerberos5/lib/libgssapi_ntlm/prefix.c user/hrs/ipv6/kerberos5/lib/libgssapi_spnego/Makefile user/hrs/ipv6/kerberos5/lib/libhdb/Makefile user/hrs/ipv6/kerberos5/lib/libheimntlm/Makefile user/hrs/ipv6/kerberos5/lib/libhx509/Makefile user/hrs/ipv6/kerberos5/lib/libkadm5clnt/Makefile user/hrs/ipv6/kerberos5/lib/libkadm5srv/Makefile user/hrs/ipv6/kerberos5/lib/libkafs5/Makefile user/hrs/ipv6/kerberos5/lib/libkrb5/Makefile user/hrs/ipv6/kerberos5/lib/libroken/Makefile user/hrs/ipv6/kerberos5/lib/libvers/Makefile user/hrs/ipv6/kerberos5/libexec/Makefile user/hrs/ipv6/kerberos5/libexec/hprop/Makefile user/hrs/ipv6/kerberos5/libexec/ipropd-master/Makefile user/hrs/ipv6/kerberos5/libexec/kadmind/Makefile user/hrs/ipv6/kerberos5/libexec/kcm/Makefile user/hrs/ipv6/kerberos5/libexec/kdc/Makefile user/hrs/ipv6/kerberos5/tools/Makefile user/hrs/ipv6/kerberos5/tools/Makefile.inc user/hrs/ipv6/kerberos5/tools/asn1_compile/Makefile user/hrs/ipv6/kerberos5/tools/make-roken/Makefile user/hrs/ipv6/kerberos5/tools/slc/Makefile user/hrs/ipv6/kerberos5/usr.bin/Makefile user/hrs/ipv6/kerberos5/usr.bin/kadmin/Makefile user/hrs/ipv6/kerberos5/usr.bin/kdestroy/Makefile user/hrs/ipv6/kerberos5/usr.bin/kinit/Makefile user/hrs/ipv6/kerberos5/usr.bin/krb5-config/Makefile user/hrs/ipv6/kerberos5/usr.sbin/Makefile user/hrs/ipv6/kerberos5/usr.sbin/kstash/Makefile user/hrs/ipv6/kerberos5/usr.sbin/ktutil/Makefile user/hrs/ipv6/lib/Makefile user/hrs/ipv6/lib/bind/config.h user/hrs/ipv6/lib/bind/dns/code.h user/hrs/ipv6/lib/bind/dns/dns/enumclass.h user/hrs/ipv6/lib/bind/dns/dns/enumtype.h user/hrs/ipv6/lib/bind/dns/dns/rdatastruct.h user/hrs/ipv6/lib/bind/lwres/lwres/netdb.h user/hrs/ipv6/lib/bind/lwres/lwres/platform.h user/hrs/ipv6/lib/clang/Makefile user/hrs/ipv6/lib/clang/clang.build.mk user/hrs/ipv6/lib/clang/include/Makefile user/hrs/ipv6/lib/clang/include/clang/Basic/Version.inc user/hrs/ipv6/lib/clang/include/llvm/Config/config.h user/hrs/ipv6/lib/clang/include/llvm/Config/llvm-config.h user/hrs/ipv6/lib/clang/libclanganalysis/Makefile user/hrs/ipv6/lib/clang/libclangarcmigrate/Makefile user/hrs/ipv6/lib/clang/libclangast/Makefile user/hrs/ipv6/lib/clang/libclangbasic/Makefile user/hrs/ipv6/lib/clang/libclangcodegen/Makefile user/hrs/ipv6/lib/clang/libclangdriver/Makefile user/hrs/ipv6/lib/clang/libclangfrontend/Makefile user/hrs/ipv6/lib/clang/libclangindex/Makefile user/hrs/ipv6/lib/clang/libclanglex/Makefile user/hrs/ipv6/lib/clang/libclangparse/Makefile user/hrs/ipv6/lib/clang/libclangrewrite/Makefile user/hrs/ipv6/lib/clang/libclangsema/Makefile user/hrs/ipv6/lib/clang/libclangserialization/Makefile user/hrs/ipv6/lib/clang/libclangstaticanalyzercheckers/Makefile user/hrs/ipv6/lib/clang/libclangstaticanalyzercore/Makefile user/hrs/ipv6/lib/clang/libllvmanalysis/Makefile user/hrs/ipv6/lib/clang/libllvmarmcodegen/Makefile user/hrs/ipv6/lib/clang/libllvmarmdesc/Makefile user/hrs/ipv6/lib/clang/libllvmarmdisassembler/Makefile user/hrs/ipv6/lib/clang/libllvmarminfo/Makefile user/hrs/ipv6/lib/clang/libllvmasmprinter/Makefile user/hrs/ipv6/lib/clang/libllvmcodegen/Makefile user/hrs/ipv6/lib/clang/libllvmcore/Makefile user/hrs/ipv6/lib/clang/libllvminstrumentation/Makefile user/hrs/ipv6/lib/clang/libllvmipa/Makefile user/hrs/ipv6/lib/clang/libllvmipo/Makefile user/hrs/ipv6/lib/clang/libllvmmc/Makefile user/hrs/ipv6/lib/clang/libllvmmcparser/Makefile user/hrs/ipv6/lib/clang/libllvmmipscodegen/Makefile user/hrs/ipv6/lib/clang/libllvmmipsdesc/Makefile user/hrs/ipv6/lib/clang/libllvmmipsinfo/Makefile user/hrs/ipv6/lib/clang/libllvmpowerpccodegen/Makefile user/hrs/ipv6/lib/clang/libllvmpowerpcdesc/Makefile user/hrs/ipv6/lib/clang/libllvmpowerpcinfo/Makefile user/hrs/ipv6/lib/clang/libllvmscalaropts/Makefile user/hrs/ipv6/lib/clang/libllvmselectiondag/Makefile user/hrs/ipv6/lib/clang/libllvmsupport/Makefile user/hrs/ipv6/lib/clang/libllvmtarget/Makefile user/hrs/ipv6/lib/clang/libllvmtransformutils/Makefile user/hrs/ipv6/lib/clang/libllvmx86codegen/Makefile user/hrs/ipv6/lib/clang/libllvmx86desc/Makefile user/hrs/ipv6/lib/clang/libllvmx86disassembler/Makefile user/hrs/ipv6/lib/clang/libllvmx86info/Makefile user/hrs/ipv6/lib/csu/Makefile.inc user/hrs/ipv6/lib/csu/amd64/Makefile user/hrs/ipv6/lib/csu/amd64/crt1.c user/hrs/ipv6/lib/csu/arm/Makefile user/hrs/ipv6/lib/csu/arm/crt1.c user/hrs/ipv6/lib/csu/common/crtbrand.c user/hrs/ipv6/lib/csu/i386-elf/Makefile user/hrs/ipv6/lib/csu/i386-elf/crt1_c.c user/hrs/ipv6/lib/csu/mips/Makefile user/hrs/ipv6/lib/csu/mips/crt1.c user/hrs/ipv6/lib/csu/powerpc/Makefile user/hrs/ipv6/lib/csu/powerpc/crt1.c user/hrs/ipv6/lib/csu/powerpc64/Makefile user/hrs/ipv6/lib/csu/powerpc64/crt1.c user/hrs/ipv6/lib/csu/sparc64/crt1.c user/hrs/ipv6/lib/libarchive/Makefile user/hrs/ipv6/lib/libarchive/config_freebsd.h user/hrs/ipv6/lib/libarchive/test/Makefile user/hrs/ipv6/lib/libbluetooth/bluetooth.3 user/hrs/ipv6/lib/libc/Makefile user/hrs/ipv6/lib/libc/Versions.def user/hrs/ipv6/lib/libc/amd64/Symbol.map user/hrs/ipv6/lib/libc/amd64/gen/Makefile.inc user/hrs/ipv6/lib/libc/amd64/gen/setjmp.S user/hrs/ipv6/lib/libc/amd64/gen/sigsetjmp.S user/hrs/ipv6/lib/libc/arm/Symbol.map user/hrs/ipv6/lib/libc/arm/_fpmath.h user/hrs/ipv6/lib/libc/arm/gen/Makefile.inc user/hrs/ipv6/lib/libc/arm/gen/_set_tp.c user/hrs/ipv6/lib/libc/arm/softfloat/softfloat.h user/hrs/ipv6/lib/libc/arm/string/Makefile.inc user/hrs/ipv6/lib/libc/compat-43/killpg.2 user/hrs/ipv6/lib/libc/db/man/hash.3 user/hrs/ipv6/lib/libc/gdtoa/machdep_ldisQ.c user/hrs/ipv6/lib/libc/gdtoa/machdep_ldisd.c user/hrs/ipv6/lib/libc/gdtoa/machdep_ldisx.c user/hrs/ipv6/lib/libc/gen/Makefile.inc user/hrs/ipv6/lib/libc/gen/Symbol.map user/hrs/ipv6/lib/libc/gen/_pthread_stubs.c user/hrs/ipv6/lib/libc/gen/arc4random.3 user/hrs/ipv6/lib/libc/gen/arc4random.c user/hrs/ipv6/lib/libc/gen/aux.c user/hrs/ipv6/lib/libc/gen/closedir.c user/hrs/ipv6/lib/libc/gen/ctermid.3 user/hrs/ipv6/lib/libc/gen/ctermid.c user/hrs/ipv6/lib/libc/gen/devname.c user/hrs/ipv6/lib/libc/gen/directory.3 user/hrs/ipv6/lib/libc/gen/dlfcn.c user/hrs/ipv6/lib/libc/gen/dlopen.3 user/hrs/ipv6/lib/libc/gen/exec.c user/hrs/ipv6/lib/libc/gen/fmtmsg.c user/hrs/ipv6/lib/libc/gen/fnmatch.c user/hrs/ipv6/lib/libc/gen/fstab.c user/hrs/ipv6/lib/libc/gen/fts.3 user/hrs/ipv6/lib/libc/gen/fts.c user/hrs/ipv6/lib/libc/gen/getcontext.3 user/hrs/ipv6/lib/libc/gen/getgrouplist.3 user/hrs/ipv6/lib/libc/gen/getosreldate.c user/hrs/ipv6/lib/libc/gen/getpagesizes.3 user/hrs/ipv6/lib/libc/gen/getttyent.c user/hrs/ipv6/lib/libc/gen/getusershell.c user/hrs/ipv6/lib/libc/gen/getutxent.3 user/hrs/ipv6/lib/libc/gen/getutxent.c user/hrs/ipv6/lib/libc/gen/glob.3 user/hrs/ipv6/lib/libc/gen/glob.c user/hrs/ipv6/lib/libc/gen/opendir.c user/hrs/ipv6/lib/libc/gen/psignal.3 user/hrs/ipv6/lib/libc/gen/pututxline.c user/hrs/ipv6/lib/libc/gen/sem.c user/hrs/ipv6/lib/libc/gen/sem_new.c user/hrs/ipv6/lib/libc/gen/strtofflags.c user/hrs/ipv6/lib/libc/gen/sysconf.3 user/hrs/ipv6/lib/libc/gen/sysctl.3 user/hrs/ipv6/lib/libc/gen/syslog.c user/hrs/ipv6/lib/libc/gen/timezone.c user/hrs/ipv6/lib/libc/gen/tls.c user/hrs/ipv6/lib/libc/gen/ucontext.3 user/hrs/ipv6/lib/libc/gen/utxdb.c user/hrs/ipv6/lib/libc/i386/Symbol.map user/hrs/ipv6/lib/libc/i386/gen/Makefile.inc user/hrs/ipv6/lib/libc/i386/gen/setjmp.S user/hrs/ipv6/lib/libc/i386/gen/sigsetjmp.S user/hrs/ipv6/lib/libc/i386/string/Makefile.inc user/hrs/ipv6/lib/libc/i386/string/strchr.S user/hrs/ipv6/lib/libc/i386/string/strrchr.S user/hrs/ipv6/lib/libc/i386/sys/i386_get_ioperm.2 user/hrs/ipv6/lib/libc/i386/sys/i386_set_watch.3 user/hrs/ipv6/lib/libc/i386/sys/i386_vm86.2 user/hrs/ipv6/lib/libc/ia64/Symbol.map user/hrs/ipv6/lib/libc/ia64/gen/Makefile.inc user/hrs/ipv6/lib/libc/iconv/citrus_module.c user/hrs/ipv6/lib/libc/iconv/citrus_none.c user/hrs/ipv6/lib/libc/iconv/iconv.3 user/hrs/ipv6/lib/libc/iconv/iconvctl.3 user/hrs/ipv6/lib/libc/iconv/iconvlist.3 user/hrs/ipv6/lib/libc/include/libc_private.h user/hrs/ipv6/lib/libc/locale/Makefile.inc user/hrs/ipv6/lib/libc/locale/Symbol.map user/hrs/ipv6/lib/libc/locale/ascii.c user/hrs/ipv6/lib/libc/locale/big5.c user/hrs/ipv6/lib/libc/locale/btowc.3 user/hrs/ipv6/lib/libc/locale/btowc.c user/hrs/ipv6/lib/libc/locale/collate.c user/hrs/ipv6/lib/libc/locale/collate.h user/hrs/ipv6/lib/libc/locale/collcmp.c user/hrs/ipv6/lib/libc/locale/ctype.3 user/hrs/ipv6/lib/libc/locale/digittoint.3 user/hrs/ipv6/lib/libc/locale/euc.c user/hrs/ipv6/lib/libc/locale/gb18030.c user/hrs/ipv6/lib/libc/locale/gb2312.c user/hrs/ipv6/lib/libc/locale/gbk.c user/hrs/ipv6/lib/libc/locale/isalnum.3 user/hrs/ipv6/lib/libc/locale/isalpha.3 user/hrs/ipv6/lib/libc/locale/isblank.3 user/hrs/ipv6/lib/libc/locale/iscntrl.3 user/hrs/ipv6/lib/libc/locale/isdigit.3 user/hrs/ipv6/lib/libc/locale/isgraph.3 user/hrs/ipv6/lib/libc/locale/islower.3 user/hrs/ipv6/lib/libc/locale/isprint.3 user/hrs/ipv6/lib/libc/locale/ispunct.3 user/hrs/ipv6/lib/libc/locale/isspace.3 user/hrs/ipv6/lib/libc/locale/isupper.3 user/hrs/ipv6/lib/libc/locale/isxdigit.3 user/hrs/ipv6/lib/libc/locale/lmessages.c user/hrs/ipv6/lib/libc/locale/lmessages.h user/hrs/ipv6/lib/libc/locale/lmonetary.c user/hrs/ipv6/lib/libc/locale/lmonetary.h user/hrs/ipv6/lib/libc/locale/lnumeric.c user/hrs/ipv6/lib/libc/locale/lnumeric.h user/hrs/ipv6/lib/libc/locale/localeconv.3 user/hrs/ipv6/lib/libc/locale/localeconv.c user/hrs/ipv6/lib/libc/locale/mblen.c user/hrs/ipv6/lib/libc/locale/mblocal.h user/hrs/ipv6/lib/libc/locale/mbrlen.c user/hrs/ipv6/lib/libc/locale/mbrtowc.c user/hrs/ipv6/lib/libc/locale/mbsinit.c user/hrs/ipv6/lib/libc/locale/mbsnrtowcs.c user/hrs/ipv6/lib/libc/locale/mbsrtowcs.c user/hrs/ipv6/lib/libc/locale/mbstowcs.c user/hrs/ipv6/lib/libc/locale/mbtowc.c user/hrs/ipv6/lib/libc/locale/mskanji.c user/hrs/ipv6/lib/libc/locale/nextwctype.c user/hrs/ipv6/lib/libc/locale/nl_langinfo.c user/hrs/ipv6/lib/libc/locale/nomacros.c user/hrs/ipv6/lib/libc/locale/none.c user/hrs/ipv6/lib/libc/locale/runetype.c user/hrs/ipv6/lib/libc/locale/setlocale.c user/hrs/ipv6/lib/libc/locale/setrunelocale.c user/hrs/ipv6/lib/libc/locale/table.c user/hrs/ipv6/lib/libc/locale/tolower.c user/hrs/ipv6/lib/libc/locale/toupper.c user/hrs/ipv6/lib/libc/locale/utf8.c user/hrs/ipv6/lib/libc/locale/wcrtomb.c user/hrs/ipv6/lib/libc/locale/wcsftime.c user/hrs/ipv6/lib/libc/locale/wcsnrtombs.c user/hrs/ipv6/lib/libc/locale/wcsrtombs.c user/hrs/ipv6/lib/libc/locale/wcstod.c user/hrs/ipv6/lib/libc/locale/wcstof.c user/hrs/ipv6/lib/libc/locale/wcstoimax.c user/hrs/ipv6/lib/libc/locale/wcstol.c user/hrs/ipv6/lib/libc/locale/wcstold.c user/hrs/ipv6/lib/libc/locale/wcstoll.c user/hrs/ipv6/lib/libc/locale/wcstombs.c user/hrs/ipv6/lib/libc/locale/wcstoul.c user/hrs/ipv6/lib/libc/locale/wcstoull.c user/hrs/ipv6/lib/libc/locale/wcstoumax.c user/hrs/ipv6/lib/libc/locale/wctob.c user/hrs/ipv6/lib/libc/locale/wctomb.c user/hrs/ipv6/lib/libc/locale/wctrans.c user/hrs/ipv6/lib/libc/locale/wctype.c user/hrs/ipv6/lib/libc/locale/wcwidth.c user/hrs/ipv6/lib/libc/mips/Symbol.map user/hrs/ipv6/lib/libc/mips/gen/Makefile.inc user/hrs/ipv6/lib/libc/mips/gen/_set_tp.c user/hrs/ipv6/lib/libc/mips/softfloat/softfloat.h user/hrs/ipv6/lib/libc/mips/string/Makefile.inc user/hrs/ipv6/lib/libc/net/Symbol.map user/hrs/ipv6/lib/libc/net/eui64.3 user/hrs/ipv6/lib/libc/net/getaddrinfo.c user/hrs/ipv6/lib/libc/net/gethostbynis.c user/hrs/ipv6/lib/libc/net/getifaddrs.c user/hrs/ipv6/lib/libc/net/getipnodebyname.3 user/hrs/ipv6/lib/libc/net/getnameinfo.3 user/hrs/ipv6/lib/libc/net/getnetbynis.c user/hrs/ipv6/lib/libc/net/if_nametoindex.c user/hrs/ipv6/lib/libc/net/inet_net.3 user/hrs/ipv6/lib/libc/net/name6.c user/hrs/ipv6/lib/libc/net/nsdispatch.3 user/hrs/ipv6/lib/libc/net/nsdispatch.c user/hrs/ipv6/lib/libc/net/sctp_bindx.3 user/hrs/ipv6/lib/libc/net/sctp_connectx.3 user/hrs/ipv6/lib/libc/net/sctp_freepaddrs.3 user/hrs/ipv6/lib/libc/net/sctp_getaddrlen.3 user/hrs/ipv6/lib/libc/net/sctp_getassocid.3 user/hrs/ipv6/lib/libc/net/sctp_getpaddrs.3 user/hrs/ipv6/lib/libc/net/sctp_opt_info.3 user/hrs/ipv6/lib/libc/net/sctp_recvmsg.3 user/hrs/ipv6/lib/libc/net/sctp_send.3 user/hrs/ipv6/lib/libc/net/sctp_sendmsg.3 user/hrs/ipv6/lib/libc/net/sctp_sys_calls.c user/hrs/ipv6/lib/libc/net/sourcefilter.3 user/hrs/ipv6/lib/libc/posix1e/acl_add_flag_np.3 user/hrs/ipv6/lib/libc/posix1e/acl_add_perm.3 user/hrs/ipv6/lib/libc/posix1e/acl_create_entry.3 user/hrs/ipv6/lib/libc/posix1e/acl_set_entry_type_np.3 user/hrs/ipv6/lib/libc/posix1e/acl_set_tag_type.3 user/hrs/ipv6/lib/libc/posix1e/acl_to_text.3 user/hrs/ipv6/lib/libc/powerpc/SYS.h user/hrs/ipv6/lib/libc/powerpc/Symbol.map user/hrs/ipv6/lib/libc/powerpc/gen/Makefile.inc user/hrs/ipv6/lib/libc/powerpc/gen/_setjmp.S user/hrs/ipv6/lib/libc/powerpc/gen/setjmp.S user/hrs/ipv6/lib/libc/powerpc/gen/sigsetjmp.S user/hrs/ipv6/lib/libc/powerpc64/SYS.h user/hrs/ipv6/lib/libc/powerpc64/Symbol.map user/hrs/ipv6/lib/libc/powerpc64/gen/Makefile.inc user/hrs/ipv6/lib/libc/powerpc64/gen/_setjmp.S user/hrs/ipv6/lib/libc/powerpc64/gen/makecontext.c user/hrs/ipv6/lib/libc/powerpc64/gen/setjmp.S user/hrs/ipv6/lib/libc/powerpc64/gen/sigsetjmp.S user/hrs/ipv6/lib/libc/powerpc64/sys/cerror.S user/hrs/ipv6/lib/libc/regex/regcomp.c user/hrs/ipv6/lib/libc/resolv/res_send.c user/hrs/ipv6/lib/libc/rpc/Makefile.inc user/hrs/ipv6/lib/libc/rpc/crypt_client.c user/hrs/ipv6/lib/libc/rpc/rpc.3 user/hrs/ipv6/lib/libc/rpc/rpc_clnt_create.3 user/hrs/ipv6/lib/libc/rpc/rpc_soc.3 user/hrs/ipv6/lib/libc/softfloat/Makefile.inc user/hrs/ipv6/lib/libc/softfloat/Symbol.map user/hrs/ipv6/lib/libc/softfloat/bits32/softfloat-macros user/hrs/ipv6/lib/libc/softfloat/bits32/softfloat.c user/hrs/ipv6/lib/libc/softfloat/bits64/softfloat-macros user/hrs/ipv6/lib/libc/softfloat/bits64/softfloat.c user/hrs/ipv6/lib/libc/softfloat/softfloat-for-gcc.h user/hrs/ipv6/lib/libc/softfloat/softfloat-source.txt user/hrs/ipv6/lib/libc/softfloat/softfloat-specialize user/hrs/ipv6/lib/libc/softfloat/softfloat.txt user/hrs/ipv6/lib/libc/sparc64/Symbol.map user/hrs/ipv6/lib/libc/sparc64/fpu/fpu_emu.h user/hrs/ipv6/lib/libc/sparc64/fpu/fpu_mul.c user/hrs/ipv6/lib/libc/sparc64/gen/Makefile.inc user/hrs/ipv6/lib/libc/stdio/Symbol.map user/hrs/ipv6/lib/libc/stdio/asprintf.c user/hrs/ipv6/lib/libc/stdio/fgetwc.c user/hrs/ipv6/lib/libc/stdio/fgetwln.c user/hrs/ipv6/lib/libc/stdio/fgetws.c user/hrs/ipv6/lib/libc/stdio/flags.c user/hrs/ipv6/lib/libc/stdio/fopen.3 user/hrs/ipv6/lib/libc/stdio/fprintf.c user/hrs/ipv6/lib/libc/stdio/fputwc.c user/hrs/ipv6/lib/libc/stdio/fputws.c user/hrs/ipv6/lib/libc/stdio/fscanf.c user/hrs/ipv6/lib/libc/stdio/fwprintf.c user/hrs/ipv6/lib/libc/stdio/fwscanf.c user/hrs/ipv6/lib/libc/stdio/getline.3 user/hrs/ipv6/lib/libc/stdio/getwc.c user/hrs/ipv6/lib/libc/stdio/getwchar.c user/hrs/ipv6/lib/libc/stdio/local.h user/hrs/ipv6/lib/libc/stdio/mktemp.3 user/hrs/ipv6/lib/libc/stdio/printf.c user/hrs/ipv6/lib/libc/stdio/printfcommon.h user/hrs/ipv6/lib/libc/stdio/putwc.c user/hrs/ipv6/lib/libc/stdio/putwchar.c user/hrs/ipv6/lib/libc/stdio/scanf.c user/hrs/ipv6/lib/libc/stdio/snprintf.c user/hrs/ipv6/lib/libc/stdio/sprintf.c user/hrs/ipv6/lib/libc/stdio/sscanf.c user/hrs/ipv6/lib/libc/stdio/swprintf.c user/hrs/ipv6/lib/libc/stdio/swscanf.c user/hrs/ipv6/lib/libc/stdio/ungetwc.c user/hrs/ipv6/lib/libc/stdio/vasprintf.c user/hrs/ipv6/lib/libc/stdio/vdprintf.c user/hrs/ipv6/lib/libc/stdio/vfprintf.c user/hrs/ipv6/lib/libc/stdio/vfscanf.c user/hrs/ipv6/lib/libc/stdio/vfwprintf.c user/hrs/ipv6/lib/libc/stdio/vfwscanf.c user/hrs/ipv6/lib/libc/stdio/vprintf.c user/hrs/ipv6/lib/libc/stdio/vscanf.c user/hrs/ipv6/lib/libc/stdio/vsnprintf.c user/hrs/ipv6/lib/libc/stdio/vsprintf.c user/hrs/ipv6/lib/libc/stdio/vsscanf.c user/hrs/ipv6/lib/libc/stdio/vswprintf.c user/hrs/ipv6/lib/libc/stdio/vswscanf.c user/hrs/ipv6/lib/libc/stdio/vwprintf.c user/hrs/ipv6/lib/libc/stdio/vwscanf.c user/hrs/ipv6/lib/libc/stdio/wprintf.c user/hrs/ipv6/lib/libc/stdio/wscanf.c user/hrs/ipv6/lib/libc/stdlib/Makefile.inc user/hrs/ipv6/lib/libc/stdlib/Symbol.map user/hrs/ipv6/lib/libc/stdlib/atexit.3 user/hrs/ipv6/lib/libc/stdlib/atof.c user/hrs/ipv6/lib/libc/stdlib/atoi.c user/hrs/ipv6/lib/libc/stdlib/atol.c user/hrs/ipv6/lib/libc/stdlib/atoll.c user/hrs/ipv6/lib/libc/stdlib/exit.3 user/hrs/ipv6/lib/libc/stdlib/getenv.3 user/hrs/ipv6/lib/libc/stdlib/getopt_long.3 user/hrs/ipv6/lib/libc/stdlib/getsubopt.3 user/hrs/ipv6/lib/libc/stdlib/realpath.c user/hrs/ipv6/lib/libc/stdlib/strfmon.c user/hrs/ipv6/lib/libc/stdlib/strtoimax.c user/hrs/ipv6/lib/libc/stdlib/strtol.c user/hrs/ipv6/lib/libc/stdlib/strtoll.c user/hrs/ipv6/lib/libc/stdlib/strtoul.c user/hrs/ipv6/lib/libc/stdlib/strtoull.c user/hrs/ipv6/lib/libc/stdlib/strtoumax.c user/hrs/ipv6/lib/libc/stdtime/strftime.c user/hrs/ipv6/lib/libc/stdtime/strptime.c user/hrs/ipv6/lib/libc/stdtime/timelocal.c user/hrs/ipv6/lib/libc/stdtime/timelocal.h user/hrs/ipv6/lib/libc/string/Makefile.inc user/hrs/ipv6/lib/libc/string/Symbol.map user/hrs/ipv6/lib/libc/string/memchr.3 user/hrs/ipv6/lib/libc/string/strcasecmp.c user/hrs/ipv6/lib/libc/string/strcasestr.c user/hrs/ipv6/lib/libc/string/strcoll.c user/hrs/ipv6/lib/libc/string/strerror.3 user/hrs/ipv6/lib/libc/string/strerror.c user/hrs/ipv6/lib/libc/string/strxfrm.c user/hrs/ipv6/lib/libc/string/swab.3 user/hrs/ipv6/lib/libc/string/swab.c user/hrs/ipv6/lib/libc/string/wcscoll.c user/hrs/ipv6/lib/libc/string/wcswidth.c user/hrs/ipv6/lib/libc/string/wcsxfrm.c user/hrs/ipv6/lib/libc/sys/Makefile.inc user/hrs/ipv6/lib/libc/sys/Symbol.map user/hrs/ipv6/lib/libc/sys/cap_enter.2 user/hrs/ipv6/lib/libc/sys/cap_new.2 user/hrs/ipv6/lib/libc/sys/chflags.2 user/hrs/ipv6/lib/libc/sys/chroot.2 user/hrs/ipv6/lib/libc/sys/close.2 user/hrs/ipv6/lib/libc/sys/cpuset.2 user/hrs/ipv6/lib/libc/sys/cpuset_getaffinity.2 user/hrs/ipv6/lib/libc/sys/dup.2 user/hrs/ipv6/lib/libc/sys/fcntl.2 user/hrs/ipv6/lib/libc/sys/flock.2 user/hrs/ipv6/lib/libc/sys/getdirentries.2 user/hrs/ipv6/lib/libc/sys/getsockopt.2 user/hrs/ipv6/lib/libc/sys/jail.2 user/hrs/ipv6/lib/libc/sys/kill.2 user/hrs/ipv6/lib/libc/sys/kldstat.2 user/hrs/ipv6/lib/libc/sys/kqueue.2 user/hrs/ipv6/lib/libc/sys/kse.2 user/hrs/ipv6/lib/libc/sys/ktrace.2 user/hrs/ipv6/lib/libc/sys/madvise.2 user/hrs/ipv6/lib/libc/sys/mmap.2 user/hrs/ipv6/lib/libc/sys/msync.2 user/hrs/ipv6/lib/libc/sys/nfssvc.2 user/hrs/ipv6/lib/libc/sys/pathconf.2 user/hrs/ipv6/lib/libc/sys/pdfork.2 user/hrs/ipv6/lib/libc/sys/posix_fallocate.2 user/hrs/ipv6/lib/libc/sys/ptrace.2 user/hrs/ipv6/lib/libc/sys/quotactl.2 user/hrs/ipv6/lib/libc/sys/read.2 user/hrs/ipv6/lib/libc/sys/rtprio.2 user/hrs/ipv6/lib/libc/sys/sctp_generic_sendmsg.2 user/hrs/ipv6/lib/libc/sys/sctp_peeloff.2 user/hrs/ipv6/lib/libc/sys/select.2 user/hrs/ipv6/lib/libc/sys/sendfile.2 user/hrs/ipv6/lib/libc/sys/setfib.2 user/hrs/ipv6/lib/libc/sys/setuid.2 user/hrs/ipv6/lib/libc/sys/shm_open.2 user/hrs/ipv6/lib/libc/sys/sigqueue.2 user/hrs/ipv6/lib/libc/sys/stat.2 user/hrs/ipv6/lib/libc/sys/timer_create.2 user/hrs/ipv6/lib/libc/sys/write.2 user/hrs/ipv6/lib/libc/uuid/uuid.3 user/hrs/ipv6/lib/libc/yp/Makefile.inc user/hrs/ipv6/lib/libc/yp/xdryp.c user/hrs/ipv6/lib/libc/yp/yplib.c user/hrs/ipv6/lib/libcam/cam.3 user/hrs/ipv6/lib/libcam/cam_cdbparse.3 user/hrs/ipv6/lib/libcam/camlib.c user/hrs/ipv6/lib/libcom_err/Makefile user/hrs/ipv6/lib/libcompiler_rt/Makefile user/hrs/ipv6/lib/libcrypt/crypt.3 user/hrs/ipv6/lib/libdevstat/devstat.3 user/hrs/ipv6/lib/libdevstat/devstat.c user/hrs/ipv6/lib/libdisk/libdisk.h user/hrs/ipv6/lib/libedit/edit/readline/Makefile user/hrs/ipv6/lib/libedit/edit/readline/readline.h user/hrs/ipv6/lib/libedit/histedit.h user/hrs/ipv6/lib/libelf/elf.3 user/hrs/ipv6/lib/libelf/elf_getdata.3 user/hrs/ipv6/lib/libelf/elf_getphdrnum.3 user/hrs/ipv6/lib/libelf/elf_getphnum.3 user/hrs/ipv6/lib/libelf/elf_getshdrnum.3 user/hrs/ipv6/lib/libelf/elf_getshdrstrndx.3 user/hrs/ipv6/lib/libelf/elf_getshnum.3 user/hrs/ipv6/lib/libelf/elf_getshstrndx.3 user/hrs/ipv6/lib/libelf/elf_update.3 user/hrs/ipv6/lib/libelf/libelf_data.c user/hrs/ipv6/lib/libfetch/common.c user/hrs/ipv6/lib/libfetch/common.h user/hrs/ipv6/lib/libfetch/fetch.3 user/hrs/ipv6/lib/libfetch/fetch.c user/hrs/ipv6/lib/libfetch/fetch.h user/hrs/ipv6/lib/libfetch/file.c user/hrs/ipv6/lib/libfetch/ftp.c user/hrs/ipv6/lib/libfetch/http.c user/hrs/ipv6/lib/libgpib/gpib.3 user/hrs/ipv6/lib/libgssapi/Symbol.map user/hrs/ipv6/lib/libgssapi/gss_accept_sec_context.3 user/hrs/ipv6/lib/libgssapi/gss_display_status.c user/hrs/ipv6/lib/libgssapi/gss_pseudo_random.c user/hrs/ipv6/lib/libgssapi/gss_release_buffer.3 user/hrs/ipv6/lib/libgssapi/gss_release_oid.c user/hrs/ipv6/lib/libgssapi/gss_release_oid_set.3 user/hrs/ipv6/lib/libgssapi/mech.5 user/hrs/ipv6/lib/libgssapi/mech_switch.h user/hrs/ipv6/lib/libipsec/ipsec_strerror.3 user/hrs/ipv6/lib/libipsec/pfkey.c user/hrs/ipv6/lib/libipsec/policy_token.l user/hrs/ipv6/lib/libjail/jail.c user/hrs/ipv6/lib/libkiconv/xlat16_iconv.c user/hrs/ipv6/lib/libkse/Makefile user/hrs/ipv6/lib/libkvm/kvm_getprocs.3 user/hrs/ipv6/lib/libkvm/kvm_proc.c user/hrs/ipv6/lib/libmemstat/libmemstat.3 user/hrs/ipv6/lib/libmp/Symbol.map user/hrs/ipv6/lib/libncp/ncpl_bind.c user/hrs/ipv6/lib/libopie/config.h user/hrs/ipv6/lib/libpam/Makefile.inc user/hrs/ipv6/lib/libpam/libpam/Makefile user/hrs/ipv6/lib/libpam/modules/Makefile.inc user/hrs/ipv6/lib/libpam/modules/pam_exec/pam_exec.8 user/hrs/ipv6/lib/libpam/modules/pam_exec/pam_exec.c user/hrs/ipv6/lib/libpam/modules/pam_krb5/pam_krb5.c user/hrs/ipv6/lib/libpam/modules/pam_ksu/pam_ksu.c user/hrs/ipv6/lib/libpam/modules/pam_lastlog/pam_lastlog.c user/hrs/ipv6/lib/libpam/modules/pam_nologin/pam_nologin.8 user/hrs/ipv6/lib/libpam/modules/pam_ssh/pam_ssh.8 user/hrs/ipv6/lib/libpam/modules/pam_ssh/pam_ssh.c user/hrs/ipv6/lib/libpam/modules/pam_unix/Makefile user/hrs/ipv6/lib/libpam/modules/pam_unix/pam_unix.8 user/hrs/ipv6/lib/libpam/modules/pam_unix/pam_unix.c user/hrs/ipv6/lib/libpmc/Makefile user/hrs/ipv6/lib/libpmc/libpmc.c user/hrs/ipv6/lib/libpmc/pmc.3 user/hrs/ipv6/lib/libpmc/pmc.atom.3 user/hrs/ipv6/lib/libpmc/pmc.core.3 user/hrs/ipv6/lib/libpmc/pmc.core2.3 user/hrs/ipv6/lib/libpmc/pmc.corei7.3 user/hrs/ipv6/lib/libpmc/pmc.corei7uc.3 user/hrs/ipv6/lib/libpmc/pmc.h user/hrs/ipv6/lib/libpmc/pmc.iaf.3 user/hrs/ipv6/lib/libpmc/pmc.k7.3 user/hrs/ipv6/lib/libpmc/pmc.k8.3 user/hrs/ipv6/lib/libpmc/pmc.p4.3 user/hrs/ipv6/lib/libpmc/pmc.p5.3 user/hrs/ipv6/lib/libpmc/pmc.p6.3 user/hrs/ipv6/lib/libpmc/pmc.tsc.3 user/hrs/ipv6/lib/libpmc/pmc.ucf.3 user/hrs/ipv6/lib/libpmc/pmc.westmere.3 user/hrs/ipv6/lib/libpmc/pmc.westmereuc.3 user/hrs/ipv6/lib/libpmc/pmc.xscale.3 user/hrs/ipv6/lib/libpmc/pmc_allocate.3 user/hrs/ipv6/lib/libpmc/pmc_attach.3 user/hrs/ipv6/lib/libpmc/pmc_capabilities.3 user/hrs/ipv6/lib/libpmc/pmc_configure_logfile.3 user/hrs/ipv6/lib/libpmc/pmc_disable.3 user/hrs/ipv6/lib/libpmc/pmc_event_names_of_class.3 user/hrs/ipv6/lib/libpmc/pmc_get_driver_stats.3 user/hrs/ipv6/lib/libpmc/pmc_get_msr.3 user/hrs/ipv6/lib/libpmc/pmc_init.3 user/hrs/ipv6/lib/libpmc/pmc_name_of_capability.3 user/hrs/ipv6/lib/libpmc/pmc_read.3 user/hrs/ipv6/lib/libpmc/pmc_set.3 user/hrs/ipv6/lib/libpmc/pmc_start.3 user/hrs/ipv6/lib/libpmc/pmclog.3 user/hrs/ipv6/lib/libpmc/pmclog.c user/hrs/ipv6/lib/libpmc/pmclog.h user/hrs/ipv6/lib/libproc/proc_bkpt.c user/hrs/ipv6/lib/libproc/proc_regs.c user/hrs/ipv6/lib/libprocstat/Symbol.map user/hrs/ipv6/lib/libprocstat/Versions.def user/hrs/ipv6/lib/libprocstat/common_kvm.c user/hrs/ipv6/lib/libprocstat/libprocstat.3 user/hrs/ipv6/lib/libprocstat/libprocstat.c user/hrs/ipv6/lib/libprocstat/libprocstat.h user/hrs/ipv6/lib/libradius/Makefile user/hrs/ipv6/lib/libradius/libradius.3 user/hrs/ipv6/lib/libradius/radlib.c user/hrs/ipv6/lib/libradius/radlib.h user/hrs/ipv6/lib/libradius/radlib_private.h user/hrs/ipv6/lib/librpcsec_gss/rpc_gss_seccreate.3 user/hrs/ipv6/lib/librpcsvc/Makefile user/hrs/ipv6/lib/librt/sigev_thread.c user/hrs/ipv6/lib/librt/sigev_thread.h user/hrs/ipv6/lib/librt/timer.c user/hrs/ipv6/lib/libsdp/sdp.h user/hrs/ipv6/lib/libsm/Makefile user/hrs/ipv6/lib/libstand/Makefile user/hrs/ipv6/lib/libstand/bootp.c user/hrs/ipv6/lib/libstand/tftp.c user/hrs/ipv6/lib/libtacplus/libtacplus.3 user/hrs/ipv6/lib/libthr/arch/amd64/include/pthread_md.h user/hrs/ipv6/lib/libthr/arch/arm/arm/pthread_md.c user/hrs/ipv6/lib/libthr/arch/arm/include/pthread_md.h user/hrs/ipv6/lib/libthr/arch/i386/include/pthread_md.h user/hrs/ipv6/lib/libthr/arch/mips/include/pthread_md.h user/hrs/ipv6/lib/libthr/arch/mips/mips/pthread_md.c user/hrs/ipv6/lib/libthr/thread/thr_barrier.c user/hrs/ipv6/lib/libthr/thread/thr_list.c user/hrs/ipv6/lib/libthr/thread/thr_private.h user/hrs/ipv6/lib/libthr/thread/thr_rwlock.c user/hrs/ipv6/lib/libthr/thread/thr_sig.c user/hrs/ipv6/lib/libthr/thread/thr_umtx.c user/hrs/ipv6/lib/libthr/thread/thr_umtx.h user/hrs/ipv6/lib/libthread_db/Makefile user/hrs/ipv6/lib/libufs/block.c user/hrs/ipv6/lib/libulog/Symbol.map user/hrs/ipv6/lib/libulog/utempter_add_record.3 user/hrs/ipv6/lib/libusb/Makefile user/hrs/ipv6/lib/libusb/libusb.3 user/hrs/ipv6/lib/libusb/libusb.h user/hrs/ipv6/lib/libusb/libusb10.c user/hrs/ipv6/lib/libusb/libusb10_desc.c user/hrs/ipv6/lib/libusb/libusb20.3 user/hrs/ipv6/lib/libusb/libusb20.c user/hrs/ipv6/lib/libusb/libusb20.h user/hrs/ipv6/lib/libusb/libusb20_desc.c user/hrs/ipv6/lib/libusb/libusb20_desc.h user/hrs/ipv6/lib/libusbhid/data.c user/hrs/ipv6/lib/libusbhid/parse.c user/hrs/ipv6/lib/libusbhid/usbhid.3 user/hrs/ipv6/lib/libusbhid/usbhid.h user/hrs/ipv6/lib/libutil/Makefile user/hrs/ipv6/lib/libutil/flopen.3 user/hrs/ipv6/lib/libutil/gr_util.c user/hrs/ipv6/lib/libutil/kinfo_getallproc.3 user/hrs/ipv6/lib/libutil/kinfo_getproc.3 user/hrs/ipv6/lib/libutil/kld.3 user/hrs/ipv6/lib/libutil/libutil.h user/hrs/ipv6/lib/libutil/login.conf.5 user/hrs/ipv6/lib/libutil/login_cap.3 user/hrs/ipv6/lib/libutil/login_class.c user/hrs/ipv6/lib/libutil/pidfile.3 user/hrs/ipv6/lib/libutil/pidfile.c user/hrs/ipv6/lib/libutil/property.3 user/hrs/ipv6/lib/libutil/pw_util.c user/hrs/ipv6/lib/libutil/quotafile.3 user/hrs/ipv6/lib/libutil/quotafile.c user/hrs/ipv6/lib/libutil/realhostname.3 user/hrs/ipv6/lib/libvgl/bitmap.c user/hrs/ipv6/lib/libvgl/keyboard.c user/hrs/ipv6/lib/libvgl/main.c user/hrs/ipv6/lib/libvgl/mouse.c user/hrs/ipv6/lib/libvgl/simple.c user/hrs/ipv6/lib/libvgl/text.c user/hrs/ipv6/lib/libvgl/vgl.3 user/hrs/ipv6/lib/libvgl/vgl.h user/hrs/ipv6/lib/libypclnt/Makefile user/hrs/ipv6/lib/libz/Makefile user/hrs/ipv6/lib/msun/Makefile user/hrs/ipv6/lib/msun/Symbol.map user/hrs/ipv6/lib/msun/amd64/Symbol.map user/hrs/ipv6/lib/msun/amd64/fenv.c user/hrs/ipv6/lib/msun/amd64/fenv.h user/hrs/ipv6/lib/msun/arm/Symbol.map user/hrs/ipv6/lib/msun/arm/fenv.c user/hrs/ipv6/lib/msun/arm/fenv.h user/hrs/ipv6/lib/msun/bsdsrc/b_exp.c user/hrs/ipv6/lib/msun/i387/Symbol.map user/hrs/ipv6/lib/msun/i387/fenv.c user/hrs/ipv6/lib/msun/i387/fenv.h user/hrs/ipv6/lib/msun/ia64/Symbol.map user/hrs/ipv6/lib/msun/ia64/fenv.c user/hrs/ipv6/lib/msun/ia64/fenv.h user/hrs/ipv6/lib/msun/man/complex.3 user/hrs/ipv6/lib/msun/man/cos.3 user/hrs/ipv6/lib/msun/man/cosh.3 user/hrs/ipv6/lib/msun/man/csqrt.3 user/hrs/ipv6/lib/msun/man/fenv.3 user/hrs/ipv6/lib/msun/man/ieee.3 user/hrs/ipv6/lib/msun/man/math.3 user/hrs/ipv6/lib/msun/man/sin.3 user/hrs/ipv6/lib/msun/man/sinh.3 user/hrs/ipv6/lib/msun/man/tan.3 user/hrs/ipv6/lib/msun/man/tanh.3 user/hrs/ipv6/lib/msun/mips/Symbol.map user/hrs/ipv6/lib/msun/mips/fenv.c user/hrs/ipv6/lib/msun/mips/fenv.h user/hrs/ipv6/lib/msun/powerpc/Symbol.map user/hrs/ipv6/lib/msun/powerpc/fenv.c user/hrs/ipv6/lib/msun/powerpc/fenv.h user/hrs/ipv6/lib/msun/sparc64/Symbol.map user/hrs/ipv6/lib/msun/sparc64/fenv.c user/hrs/ipv6/lib/msun/sparc64/fenv.h user/hrs/ipv6/lib/msun/src/e_cosh.c user/hrs/ipv6/lib/msun/src/e_coshf.c user/hrs/ipv6/lib/msun/src/e_exp.c user/hrs/ipv6/lib/msun/src/e_expf.c user/hrs/ipv6/lib/msun/src/e_hypot.c user/hrs/ipv6/lib/msun/src/e_hypotf.c user/hrs/ipv6/lib/msun/src/e_hypotl.c user/hrs/ipv6/lib/msun/src/e_lgamma_r.c user/hrs/ipv6/lib/msun/src/e_lgammaf_r.c user/hrs/ipv6/lib/msun/src/e_log10.c user/hrs/ipv6/lib/msun/src/e_log10f.c user/hrs/ipv6/lib/msun/src/e_log2.c user/hrs/ipv6/lib/msun/src/e_log2f.c user/hrs/ipv6/lib/msun/src/e_pow.c user/hrs/ipv6/lib/msun/src/e_powf.c user/hrs/ipv6/lib/msun/src/e_sinh.c user/hrs/ipv6/lib/msun/src/e_sinhf.c user/hrs/ipv6/lib/msun/src/k_log.h user/hrs/ipv6/lib/msun/src/k_logf.h user/hrs/ipv6/lib/msun/src/math.h user/hrs/ipv6/lib/msun/src/math_private.h user/hrs/ipv6/lib/msun/src/s_cexp.c user/hrs/ipv6/lib/msun/src/s_cexpf.c user/hrs/ipv6/lib/msun/src/s_expm1.c user/hrs/ipv6/lib/msun/src/s_expm1f.c user/hrs/ipv6/lib/msun/src/s_fabsl.c user/hrs/ipv6/lib/msun/src/s_fma.c user/hrs/ipv6/lib/msun/src/s_fmaf.c user/hrs/ipv6/lib/msun/src/s_fmal.c user/hrs/ipv6/lib/msun/src/s_remquo.c user/hrs/ipv6/lib/msun/src/s_remquof.c user/hrs/ipv6/lib/msun/src/s_remquol.c user/hrs/ipv6/libexec/bootpd/bootpd.8 user/hrs/ipv6/libexec/bootpd/bootpd.c user/hrs/ipv6/libexec/bootpd/bootpgw/bootpgw.c user/hrs/ipv6/libexec/bootpd/hash.h user/hrs/ipv6/libexec/bootpd/tools/bootptest/bootptest.c user/hrs/ipv6/libexec/bootpd/tools/bootptest/print-bootp.c user/hrs/ipv6/libexec/comsat/comsat.c user/hrs/ipv6/libexec/ftpd/ftpcmd.y user/hrs/ipv6/libexec/ftpd/ftpd.c user/hrs/ipv6/libexec/ftpd/popen.c user/hrs/ipv6/libexec/getty/chat.c user/hrs/ipv6/libexec/getty/gettytab.5 user/hrs/ipv6/libexec/getty/init.c user/hrs/ipv6/libexec/lukemftpd/nbsd_pidfile.h user/hrs/ipv6/libexec/mail.local/Makefile user/hrs/ipv6/libexec/mknetid/parse_group.c user/hrs/ipv6/libexec/pppoed/pppoed.c user/hrs/ipv6/libexec/rbootd/parseconf.c user/hrs/ipv6/libexec/rbootd/rbootd.c user/hrs/ipv6/libexec/rbootd/rmpproto.c user/hrs/ipv6/libexec/rbootd/utils.c user/hrs/ipv6/libexec/revnetgroup/parse_netgroup.c user/hrs/ipv6/libexec/rlogind/rlogind.c user/hrs/ipv6/libexec/rshd/rshd.8 user/hrs/ipv6/libexec/rshd/rshd.c user/hrs/ipv6/libexec/rtld-aout/shlib.c user/hrs/ipv6/libexec/rtld-elf/Makefile user/hrs/ipv6/libexec/rtld-elf/Symbol.map user/hrs/ipv6/libexec/rtld-elf/amd64/reloc.c user/hrs/ipv6/libexec/rtld-elf/amd64/rtld_machdep.h user/hrs/ipv6/libexec/rtld-elf/amd64/rtld_start.S user/hrs/ipv6/libexec/rtld-elf/arm/reloc.c user/hrs/ipv6/libexec/rtld-elf/arm/rtld_machdep.h user/hrs/ipv6/libexec/rtld-elf/i386/reloc.c user/hrs/ipv6/libexec/rtld-elf/i386/rtld_machdep.h user/hrs/ipv6/libexec/rtld-elf/i386/rtld_start.S user/hrs/ipv6/libexec/rtld-elf/ia64/reloc.c user/hrs/ipv6/libexec/rtld-elf/ia64/rtld_machdep.h user/hrs/ipv6/libexec/rtld-elf/libmap.c user/hrs/ipv6/libexec/rtld-elf/malloc.c user/hrs/ipv6/libexec/rtld-elf/map_object.c user/hrs/ipv6/libexec/rtld-elf/mips/reloc.c user/hrs/ipv6/libexec/rtld-elf/mips/rtld_machdep.h user/hrs/ipv6/libexec/rtld-elf/mips/rtld_start.S user/hrs/ipv6/libexec/rtld-elf/powerpc/reloc.c user/hrs/ipv6/libexec/rtld-elf/powerpc/rtld_machdep.h user/hrs/ipv6/libexec/rtld-elf/powerpc64/reloc.c user/hrs/ipv6/libexec/rtld-elf/powerpc64/rtld_machdep.h user/hrs/ipv6/libexec/rtld-elf/rtld.c user/hrs/ipv6/libexec/rtld-elf/rtld.h user/hrs/ipv6/libexec/rtld-elf/rtld_printf.c user/hrs/ipv6/libexec/rtld-elf/sparc64/reloc.c user/hrs/ipv6/libexec/rtld-elf/sparc64/rtld_machdep.h user/hrs/ipv6/libexec/rtld-elf/xmalloc.c user/hrs/ipv6/libexec/smrsh/Makefile user/hrs/ipv6/libexec/tftpd/tftp-io.c user/hrs/ipv6/libexec/tftpd/tftp-utils.h user/hrs/ipv6/libexec/tftpd/tftpd.8 user/hrs/ipv6/libexec/ypxfr/Makefile user/hrs/ipv6/libexec/ypxfr/ypxfr_getmap.c user/hrs/ipv6/libexec/ypxfr/ypxfr_main.c user/hrs/ipv6/libexec/ypxfr/ypxfr_misc.c user/hrs/ipv6/release/Makefile user/hrs/ipv6/release/amd64/make-memstick.sh user/hrs/ipv6/release/doc/en_US.ISO8859-1/hardware/article.sgml user/hrs/ipv6/release/doc/en_US.ISO8859-1/relnotes/article.sgml user/hrs/ipv6/release/doc/share/misc/dev.archlist.txt user/hrs/ipv6/release/doc/share/misc/man2hwnotes.pl user/hrs/ipv6/release/generate-release.sh user/hrs/ipv6/release/i386/make-memstick.sh user/hrs/ipv6/release/ia64/mkisoimages.sh user/hrs/ipv6/release/picobsd/build/Makefile.conf user/hrs/ipv6/release/picobsd/build/picobsd user/hrs/ipv6/release/picobsd/tinyware/passwd/Makefile user/hrs/ipv6/release/picobsd/tinyware/passwd/local_passwd.c user/hrs/ipv6/release/picobsd/tinyware/passwd/pw_copy.c user/hrs/ipv6/release/picobsd/tinyware/simple_httpd/README user/hrs/ipv6/release/rc.local user/hrs/ipv6/rescue/rescue/Makefile user/hrs/ipv6/sbin/adjkerntz/adjkerntz.8 user/hrs/ipv6/sbin/atacontrol/atacontrol.8 user/hrs/ipv6/sbin/atacontrol/atacontrol.c user/hrs/ipv6/sbin/atm/atmconfig/Makefile user/hrs/ipv6/sbin/atm/atmconfig/atmconfig_device.c user/hrs/ipv6/sbin/atm/atmconfig/diag.c user/hrs/ipv6/sbin/atm/atmconfig/main.c user/hrs/ipv6/sbin/badsect/badsect.c user/hrs/ipv6/sbin/bsdlabel/bsdlabel.8 user/hrs/ipv6/sbin/bsdlabel/bsdlabel.c user/hrs/ipv6/sbin/camcontrol/Makefile user/hrs/ipv6/sbin/camcontrol/camcontrol.8 user/hrs/ipv6/sbin/camcontrol/camcontrol.c user/hrs/ipv6/sbin/camcontrol/camcontrol.h user/hrs/ipv6/sbin/camcontrol/modeedit.c user/hrs/ipv6/sbin/camcontrol/util.c user/hrs/ipv6/sbin/ccdconfig/ccdconfig.c user/hrs/ipv6/sbin/devd/devd.cc user/hrs/ipv6/sbin/devd/devd.conf.5 user/hrs/ipv6/sbin/devd/devd.hh user/hrs/ipv6/sbin/devfs/devfs.8 user/hrs/ipv6/sbin/devfs/rule.c user/hrs/ipv6/sbin/dhclient/Makefile user/hrs/ipv6/sbin/dhclient/clparse.c user/hrs/ipv6/sbin/dhclient/dhclient-script (contents, props changed) user/hrs/ipv6/sbin/dhclient/dhclient-script.8 user/hrs/ipv6/sbin/dhclient/dhclient.8 user/hrs/ipv6/sbin/dhclient/dhclient.c user/hrs/ipv6/sbin/dhclient/dhcp-options.5 user/hrs/ipv6/sbin/dhclient/dhcp.h user/hrs/ipv6/sbin/dhclient/dhcpd.h user/hrs/ipv6/sbin/dhclient/errwarn.c user/hrs/ipv6/sbin/dhclient/options.c user/hrs/ipv6/sbin/dhclient/parse.c user/hrs/ipv6/sbin/dhclient/tables.c user/hrs/ipv6/sbin/dmesg/dmesg.c user/hrs/ipv6/sbin/dump/dump.h user/hrs/ipv6/sbin/dump/itime.c user/hrs/ipv6/sbin/dump/main.c user/hrs/ipv6/sbin/dumpfs/dumpfs.c user/hrs/ipv6/sbin/fdisk/fdisk.8 user/hrs/ipv6/sbin/fdisk/fdisk.c user/hrs/ipv6/sbin/fdisk_pc98/fdisk.8 user/hrs/ipv6/sbin/ffsinfo/Makefile user/hrs/ipv6/sbin/ffsinfo/ffsinfo.c user/hrs/ipv6/sbin/fsck/fsck.8 user/hrs/ipv6/sbin/fsck/fsck.c user/hrs/ipv6/sbin/fsck/preen.c user/hrs/ipv6/sbin/fsck_ffs/fsck.h user/hrs/ipv6/sbin/fsck_ffs/fsck_ffs.8 user/hrs/ipv6/sbin/fsck_ffs/fsutil.c user/hrs/ipv6/sbin/fsck_ffs/gjournal.c user/hrs/ipv6/sbin/fsck_ffs/pass2.c user/hrs/ipv6/sbin/fsck_ffs/setup.c user/hrs/ipv6/sbin/fsck_ffs/suj.c user/hrs/ipv6/sbin/fsck_msdosfs/dir.c user/hrs/ipv6/sbin/fsdb/fsdbutil.c user/hrs/ipv6/sbin/fsirand/fsirand.c user/hrs/ipv6/sbin/gbde/Makefile user/hrs/ipv6/sbin/geom/class/eli/geli.8 user/hrs/ipv6/sbin/geom/class/eli/geom_eli.c user/hrs/ipv6/sbin/geom/class/multipath/geom_multipath.c user/hrs/ipv6/sbin/geom/class/multipath/gmultipath.8 user/hrs/ipv6/sbin/geom/class/part/geom_part.c user/hrs/ipv6/sbin/geom/class/part/gpart.8 user/hrs/ipv6/sbin/geom/class/raid/graid.8 user/hrs/ipv6/sbin/geom/class/sched/gsched.8 user/hrs/ipv6/sbin/geom/misc/subr.c user/hrs/ipv6/sbin/growfs/debug.c user/hrs/ipv6/sbin/growfs/growfs.c user/hrs/ipv6/sbin/gvinum/gvinum.8 user/hrs/ipv6/sbin/gvinum/gvinum.c user/hrs/ipv6/sbin/hastctl/Makefile user/hrs/ipv6/sbin/hastctl/hastctl.8 user/hrs/ipv6/sbin/hastctl/hastctl.c user/hrs/ipv6/sbin/hastd/Makefile user/hrs/ipv6/sbin/hastd/activemap.c user/hrs/ipv6/sbin/hastd/control.c user/hrs/ipv6/sbin/hastd/ebuf.c user/hrs/ipv6/sbin/hastd/event.c user/hrs/ipv6/sbin/hastd/hast.conf.5 user/hrs/ipv6/sbin/hastd/hast.h user/hrs/ipv6/sbin/hastd/hast_checksum.c user/hrs/ipv6/sbin/hastd/hast_compression.c user/hrs/ipv6/sbin/hastd/hast_proto.c user/hrs/ipv6/sbin/hastd/hastd.c user/hrs/ipv6/sbin/hastd/hooks.c user/hrs/ipv6/sbin/hastd/lzf.h user/hrs/ipv6/sbin/hastd/metadata.c user/hrs/ipv6/sbin/hastd/nv.c user/hrs/ipv6/sbin/hastd/parse.y user/hrs/ipv6/sbin/hastd/pjdlog.c user/hrs/ipv6/sbin/hastd/pjdlog.h user/hrs/ipv6/sbin/hastd/primary.c user/hrs/ipv6/sbin/hastd/proto.c user/hrs/ipv6/sbin/hastd/proto_common.c user/hrs/ipv6/sbin/hastd/proto_socketpair.c user/hrs/ipv6/sbin/hastd/proto_tcp.c user/hrs/ipv6/sbin/hastd/proto_uds.c user/hrs/ipv6/sbin/hastd/rangelock.c user/hrs/ipv6/sbin/hastd/secondary.c user/hrs/ipv6/sbin/hastd/subr.c user/hrs/ipv6/sbin/hastd/subr.h user/hrs/ipv6/sbin/hastd/synch.h user/hrs/ipv6/sbin/hastd/token.l user/hrs/ipv6/sbin/ifconfig/Makefile user/hrs/ipv6/sbin/ifconfig/af_inet.c user/hrs/ipv6/sbin/ifconfig/af_inet6.c user/hrs/ipv6/sbin/ifconfig/ifconfig.8 user/hrs/ipv6/sbin/ifconfig/ifconfig.c user/hrs/ipv6/sbin/ifconfig/ifconfig.h user/hrs/ipv6/sbin/ifconfig/ifieee80211.c user/hrs/ipv6/sbin/ifconfig/iflagg.c user/hrs/ipv6/sbin/ifconfig/ifpfsync.c user/hrs/ipv6/sbin/ifconfig/ifvlan.c user/hrs/ipv6/sbin/init/init.8 user/hrs/ipv6/sbin/init/init.c user/hrs/ipv6/sbin/init/pathnames.h user/hrs/ipv6/sbin/ipf/Makefile.inc user/hrs/ipv6/sbin/ipfw/dummynet.c user/hrs/ipv6/sbin/ipfw/ipfw.8 user/hrs/ipv6/sbin/ipfw/ipfw2.c user/hrs/ipv6/sbin/ipfw/main.c user/hrs/ipv6/sbin/ipfw/nat.c user/hrs/ipv6/sbin/iscontrol/Makefile user/hrs/ipv6/sbin/iscontrol/iscontrol.8 user/hrs/ipv6/sbin/iscontrol/iscontrol.c user/hrs/ipv6/sbin/iscontrol/iscsi.conf.5 user/hrs/ipv6/sbin/kldload/kldload.8 user/hrs/ipv6/sbin/kldload/kldload.c user/hrs/ipv6/sbin/md5/md5.1 user/hrs/ipv6/sbin/md5/md5.c user/hrs/ipv6/sbin/mdconfig/mdconfig.8 user/hrs/ipv6/sbin/mdconfig/mdconfig.c user/hrs/ipv6/sbin/mdmfs/mdmfs.8 user/hrs/ipv6/sbin/mdmfs/mdmfs.c user/hrs/ipv6/sbin/mount/getmntopts.c user/hrs/ipv6/sbin/mount/mntopts.h user/hrs/ipv6/sbin/mount/mount.c user/hrs/ipv6/sbin/mount/mount_fs.c user/hrs/ipv6/sbin/mount_cd9660/mount_cd9660.c user/hrs/ipv6/sbin/mount_ext2fs/mount_ext2fs.c user/hrs/ipv6/sbin/mount_msdosfs/mount_msdosfs.c user/hrs/ipv6/sbin/mount_nfs/mount_nfs.8 user/hrs/ipv6/sbin/mount_nfs/mount_nfs.c user/hrs/ipv6/sbin/mount_ntfs/mount_ntfs.c user/hrs/ipv6/sbin/mount_nullfs/mount_nullfs.c user/hrs/ipv6/sbin/mount_reiserfs/mount_reiserfs.c user/hrs/ipv6/sbin/mount_std/mount_std.c user/hrs/ipv6/sbin/mount_udf/mount_udf.c user/hrs/ipv6/sbin/mount_unionfs/mount_unionfs.8 user/hrs/ipv6/sbin/mount_unionfs/mount_unionfs.c user/hrs/ipv6/sbin/natd/natd.c user/hrs/ipv6/sbin/newfs/mkfs.c user/hrs/ipv6/sbin/newfs/newfs.h user/hrs/ipv6/sbin/newfs_msdos/newfs_msdos.8 user/hrs/ipv6/sbin/newfs_msdos/newfs_msdos.c user/hrs/ipv6/sbin/ping6/ping6.8 user/hrs/ipv6/sbin/ping6/ping6.c user/hrs/ipv6/sbin/quotacheck/quotacheck.8 user/hrs/ipv6/sbin/rcorder/rcorder.8 user/hrs/ipv6/sbin/rcorder/rcorder.c user/hrs/ipv6/sbin/reboot/nextboot.8 user/hrs/ipv6/sbin/reboot/nextboot.sh user/hrs/ipv6/sbin/reboot/reboot.c user/hrs/ipv6/sbin/recoverdisk/recoverdisk.1 user/hrs/ipv6/sbin/recoverdisk/recoverdisk.c user/hrs/ipv6/sbin/route/route.8 user/hrs/ipv6/sbin/route/route.c user/hrs/ipv6/sbin/routed/main.c user/hrs/ipv6/sbin/routed/parms.c user/hrs/ipv6/sbin/routed/radix.c user/hrs/ipv6/sbin/routed/rtquery/Makefile user/hrs/ipv6/sbin/routed/table.c user/hrs/ipv6/sbin/savecore/savecore.c user/hrs/ipv6/sbin/setkey/setkey.8 user/hrs/ipv6/sbin/shutdown/shutdown.c user/hrs/ipv6/sbin/sunlabel/sunlabel.8 user/hrs/ipv6/sbin/swapon/Makefile user/hrs/ipv6/sbin/swapon/swapon.8 user/hrs/ipv6/sbin/swapon/swapon.c user/hrs/ipv6/sbin/sysctl/sysctl.8 user/hrs/ipv6/sbin/sysctl/sysctl.c user/hrs/ipv6/sbin/tunefs/tunefs.c user/hrs/ipv6/sbin/umount/umount.c user/hrs/ipv6/secure/lib/libcrypt/crypt-blowfish.c user/hrs/ipv6/secure/lib/libcrypto/Makefile user/hrs/ipv6/secure/lib/libcrypto/man/engine.3 user/hrs/ipv6/secure/usr.bin/openssl/man/ca.1 user/hrs/ipv6/secure/usr.bin/openssl/man/dgst.1 user/hrs/ipv6/secure/usr.bin/ssh/Makefile user/hrs/ipv6/secure/usr.sbin/sshd/Makefile user/hrs/ipv6/share/doc/IPv6/IMPLEMENTATION user/hrs/ipv6/share/doc/Makefile user/hrs/ipv6/share/doc/bind9/Makefile user/hrs/ipv6/share/doc/psd/03.iosys/iosys user/hrs/ipv6/share/doc/psd/23.rpc/rpc.prog.ms user/hrs/ipv6/share/doc/psd/24.xdr/xdr.nts.ms user/hrs/ipv6/share/doc/psd/27.nfsrpc/nfs.rfc.ms user/hrs/ipv6/share/examples/Makefile user/hrs/ipv6/share/examples/cvsup/cvs-supfile user/hrs/ipv6/share/examples/cvsup/doc-supfile user/hrs/ipv6/share/examples/cvsup/gnats-supfile user/hrs/ipv6/share/examples/cvsup/ports-supfile user/hrs/ipv6/share/examples/cvsup/stable-supfile user/hrs/ipv6/share/examples/cvsup/standard-supfile user/hrs/ipv6/share/examples/cvsup/www-supfile user/hrs/ipv6/share/examples/diskless/README.TEMPLATING user/hrs/ipv6/share/examples/drivers/make_device_driver.sh user/hrs/ipv6/share/examples/etc/make.conf user/hrs/ipv6/share/examples/ppp/ppp.linkdown.sample user/hrs/ipv6/share/examples/printing/hpvf user/hrs/ipv6/share/examples/scsi_target/scsi_cmds.c user/hrs/ipv6/share/examples/scsi_target/scsi_target.c user/hrs/ipv6/share/man/man3/Makefile user/hrs/ipv6/share/man/man3/pthread_attr_affinity_np.3 user/hrs/ipv6/share/man/man3/pthread_cond_destroy.3 user/hrs/ipv6/share/man/man3/pthread_cond_timedwait.3 user/hrs/ipv6/share/man/man3/pthread_cond_wait.3 user/hrs/ipv6/share/man/man3/pthread_getthreadid_np.3 user/hrs/ipv6/share/man/man3/tgmath.3 user/hrs/ipv6/share/man/man4/Makefile user/hrs/ipv6/share/man/man4/acpi.4 user/hrs/ipv6/share/man/man4/acpi_hp.4 user/hrs/ipv6/share/man/man4/acpi_panasonic.4 user/hrs/ipv6/share/man/man4/acpi_wmi.4 user/hrs/ipv6/share/man/man4/ada.4 user/hrs/ipv6/share/man/man4/adv.4 user/hrs/ipv6/share/man/man4/agp.4 user/hrs/ipv6/share/man/man4/ahc.4 user/hrs/ipv6/share/man/man4/ahci.4 user/hrs/ipv6/share/man/man4/aibs.4 user/hrs/ipv6/share/man/man4/altq.4 user/hrs/ipv6/share/man/man4/amdsmb.4 user/hrs/ipv6/share/man/man4/amdtemp.4 user/hrs/ipv6/share/man/man4/ata.4 user/hrs/ipv6/share/man/man4/ath.4 user/hrs/ipv6/share/man/man4/atkbd.4 user/hrs/ipv6/share/man/man4/atp.4 user/hrs/ipv6/share/man/man4/atrtc.4 user/hrs/ipv6/share/man/man4/attimer.4 user/hrs/ipv6/share/man/man4/axe.4 user/hrs/ipv6/share/man/man4/bce.4 user/hrs/ipv6/share/man/man4/bge.4 user/hrs/ipv6/share/man/man4/bpf.4 user/hrs/ipv6/share/man/man4/bridge.4 user/hrs/ipv6/share/man/man4/bt.4 user/hrs/ipv6/share/man/man4/bwi.4 user/hrs/ipv6/share/man/man4/bwn.4 user/hrs/ipv6/share/man/man4/carp.4 user/hrs/ipv6/share/man/man4/cas.4 user/hrs/ipv6/share/man/man4/cc_chd.4 user/hrs/ipv6/share/man/man4/cc_cubic.4 user/hrs/ipv6/share/man/man4/cc_hd.4 user/hrs/ipv6/share/man/man4/cc_htcp.4 user/hrs/ipv6/share/man/man4/cc_newreno.4 user/hrs/ipv6/share/man/man4/cc_vegas.4 user/hrs/ipv6/share/man/man4/cd.4 user/hrs/ipv6/share/man/man4/ciss.4 user/hrs/ipv6/share/man/man4/coda.4 user/hrs/ipv6/share/man/man4/cpufreq.4 user/hrs/ipv6/share/man/man4/cxgbe.4 user/hrs/ipv6/share/man/man4/cy.4 user/hrs/ipv6/share/man/man4/da.4 user/hrs/ipv6/share/man/man4/dc.4 user/hrs/ipv6/share/man/man4/ddb.4 user/hrs/ipv6/share/man/man4/dpms.4 user/hrs/ipv6/share/man/man4/ed.4 user/hrs/ipv6/share/man/man4/ehci.4 user/hrs/ipv6/share/man/man4/em.4 user/hrs/ipv6/share/man/man4/epair.4 user/hrs/ipv6/share/man/man4/esp.4 user/hrs/ipv6/share/man/man4/et.4 user/hrs/ipv6/share/man/man4/faith.4 user/hrs/ipv6/share/man/man4/fdc.4 user/hrs/ipv6/share/man/man4/fwohci.4 user/hrs/ipv6/share/man/man4/gem.4 user/hrs/ipv6/share/man/man4/geom_fox.4 user/hrs/ipv6/share/man/man4/geom_uzip.4 user/hrs/ipv6/share/man/man4/gre.4 user/hrs/ipv6/share/man/man4/h_ertt.4 user/hrs/ipv6/share/man/man4/hpet.4 user/hrs/ipv6/share/man/man4/hptiop.4 user/hrs/ipv6/share/man/man4/icmp6.4 user/hrs/ipv6/share/man/man4/igb.4 user/hrs/ipv6/share/man/man4/inet.4 user/hrs/ipv6/share/man/man4/inet6.4 user/hrs/ipv6/share/man/man4/ip.4 user/hrs/ipv6/share/man/man4/ip6.4 user/hrs/ipv6/share/man/man4/ipmi.4 user/hrs/ipv6/share/man/man4/ipw.4 user/hrs/ipv6/share/man/man4/iscsi_initiator.4 user/hrs/ipv6/share/man/man4/isp.4 user/hrs/ipv6/share/man/man4/iwi.4 user/hrs/ipv6/share/man/man4/iwn.4 user/hrs/ipv6/share/man/man4/iwnfw.4 user/hrs/ipv6/share/man/man4/ixgbe.4 user/hrs/ipv6/share/man/man4/jme.4 user/hrs/ipv6/share/man/man4/ksyms.4 user/hrs/ipv6/share/man/man4/ktr.4 user/hrs/ipv6/share/man/man4/lagg.4 user/hrs/ipv6/share/man/man4/lmc.4 user/hrs/ipv6/share/man/man4/lo.4 user/hrs/ipv6/share/man/man4/mac_lomac.4 user/hrs/ipv6/share/man/man4/malo.4 user/hrs/ipv6/share/man/man4/man4.i386/CPU_ELAN.4 user/hrs/ipv6/share/man/man4/man4.i386/apm.4 user/hrs/ipv6/share/man/man4/man4.i386/glxsb.4 user/hrs/ipv6/share/man/man4/man4.powerpc/Makefile user/hrs/ipv6/share/man/man4/man4.powerpc/akbd.4 user/hrs/ipv6/share/man/man4/man4.powerpc/bm.4 user/hrs/ipv6/share/man/man4/man4.powerpc/cuda.4 user/hrs/ipv6/share/man/man4/man4.powerpc/smu.4 user/hrs/ipv6/share/man/man4/man4.powerpc/snd_ai2s.4 user/hrs/ipv6/share/man/man4/man4.powerpc/snd_davbus.4 user/hrs/ipv6/share/man/man4/md.4 user/hrs/ipv6/share/man/man4/mem.4 user/hrs/ipv6/share/man/man4/mld.4 user/hrs/ipv6/share/man/man4/mmc.4 user/hrs/ipv6/share/man/man4/mos.4 user/hrs/ipv6/share/man/man4/mps.4 user/hrs/ipv6/share/man/man4/mtio.4 user/hrs/ipv6/share/man/man4/mvs.4 user/hrs/ipv6/share/man/man4/mwl.4 user/hrs/ipv6/share/man/man4/natm.4 user/hrs/ipv6/share/man/man4/net80211.4 user/hrs/ipv6/share/man/man4/netintro.4 user/hrs/ipv6/share/man/man4/ng_async.4 user/hrs/ipv6/share/man/man4/ng_bridge.4 user/hrs/ipv6/share/man/man4/ng_btsocket.4 user/hrs/ipv6/share/man/man4/ng_car.4 user/hrs/ipv6/share/man/man4/ng_ccatm.4 user/hrs/ipv6/share/man/man4/ng_cisco.4 user/hrs/ipv6/share/man/man4/ng_deflate.4 user/hrs/ipv6/share/man/man4/ng_etf.4 user/hrs/ipv6/share/man/man4/ng_hci.4 user/hrs/ipv6/share/man/man4/ng_ksocket.4 user/hrs/ipv6/share/man/man4/ng_l2cap.4 user/hrs/ipv6/share/man/man4/ng_l2tp.4 user/hrs/ipv6/share/man/man4/ng_mppc.4 user/hrs/ipv6/share/man/man4/ng_nat.4 user/hrs/ipv6/share/man/man4/ng_netflow.4 user/hrs/ipv6/share/man/man4/ng_one2many.4 user/hrs/ipv6/share/man/man4/ng_patch.4 user/hrs/ipv6/share/man/man4/ng_ppp.4 user/hrs/ipv6/share/man/man4/ng_pppoe.4 user/hrs/ipv6/share/man/man4/ng_pptpgre.4 user/hrs/ipv6/share/man/man4/ng_pred1.4 user/hrs/ipv6/share/man/man4/ng_tty.4 user/hrs/ipv6/share/man/man4/nvram2env.4 user/hrs/ipv6/share/man/man4/nxge.4 user/hrs/ipv6/share/man/man4/pcm.4 user/hrs/ipv6/share/man/man4/ppbus.4 user/hrs/ipv6/share/man/man4/ppi.4 user/hrs/ipv6/share/man/man4/psm.4 user/hrs/ipv6/share/man/man4/pts.4 user/hrs/ipv6/share/man/man4/ral.4 user/hrs/ipv6/share/man/man4/run.4 user/hrs/ipv6/share/man/man4/runfw.4 user/hrs/ipv6/share/man/man4/sbp.4 user/hrs/ipv6/share/man/man4/sdhci.4 user/hrs/ipv6/share/man/man4/siftr.4 user/hrs/ipv6/share/man/man4/smp.4 user/hrs/ipv6/share/man/man4/snd_emu10kx.4 user/hrs/ipv6/share/man/man4/snd_hda.4 user/hrs/ipv6/share/man/man4/snd_ich.4 user/hrs/ipv6/share/man/man4/splash.4 user/hrs/ipv6/share/man/man4/stf.4 user/hrs/ipv6/share/man/man4/syscons.4 user/hrs/ipv6/share/man/man4/tap.4 user/hrs/ipv6/share/man/man4/targ.4 user/hrs/ipv6/share/man/man4/tcp.4 user/hrs/ipv6/share/man/man4/ti.4 user/hrs/ipv6/share/man/man4/tpm.4 user/hrs/ipv6/share/man/man4/txp.4 user/hrs/ipv6/share/man/man4/u3g.4 user/hrs/ipv6/share/man/man4/uark.4 user/hrs/ipv6/share/man/man4/uath.4 user/hrs/ipv6/share/man/man4/ubsa.4 user/hrs/ipv6/share/man/man4/ubser.4 user/hrs/ipv6/share/man/man4/uchcom.4 user/hrs/ipv6/share/man/man4/ucycom.4 user/hrs/ipv6/share/man/man4/ufoma.4 user/hrs/ipv6/share/man/man4/uftdi.4 user/hrs/ipv6/share/man/man4/uipaq.4 user/hrs/ipv6/share/man/man4/ulpt.4 user/hrs/ipv6/share/man/man4/umass.4 user/hrs/ipv6/share/man/man4/umcs.4 user/hrs/ipv6/share/man/man4/umct.4 user/hrs/ipv6/share/man/man4/umodem.4 user/hrs/ipv6/share/man/man4/upgt.4 user/hrs/ipv6/share/man/man4/uplcom.4 user/hrs/ipv6/share/man/man4/usb.4 user/hrs/ipv6/share/man/man4/usb_quirk.4 user/hrs/ipv6/share/man/man4/uslcom.4 user/hrs/ipv6/share/man/man4/uvisor.4 user/hrs/ipv6/share/man/man4/uvscom.4 user/hrs/ipv6/share/man/man4/vge.4 user/hrs/ipv6/share/man/man4/vlan.4 user/hrs/ipv6/share/man/man4/vr.4 user/hrs/ipv6/share/man/man4/vxge.4 user/hrs/ipv6/share/man/man4/wi.4 user/hrs/ipv6/share/man/man4/wlan.4 user/hrs/ipv6/share/man/man4/wlan_acl.4 user/hrs/ipv6/share/man/man4/wlan_amrr.4 user/hrs/ipv6/share/man/man4/wpi.4 user/hrs/ipv6/share/man/man4/xen.4 user/hrs/ipv6/share/man/man5/Makefile user/hrs/ipv6/share/man/man5/ar.5 user/hrs/ipv6/share/man/man5/devfs.5 user/hrs/ipv6/share/man/man5/fdescfs.5 user/hrs/ipv6/share/man/man5/fs.5 user/hrs/ipv6/share/man/man5/fstab.5 user/hrs/ipv6/share/man/man5/make.conf.5 user/hrs/ipv6/share/man/man5/nsmb.conf.5 user/hrs/ipv6/share/man/man5/passwd.5 user/hrs/ipv6/share/man/man5/periodic.conf.5 user/hrs/ipv6/share/man/man5/portindex.5 user/hrs/ipv6/share/man/man5/quota.user.5 user/hrs/ipv6/share/man/man5/rc.conf.5 user/hrs/ipv6/share/man/man5/services.5 user/hrs/ipv6/share/man/man5/src.conf.5 user/hrs/ipv6/share/man/man5/style.Makefile.5 user/hrs/ipv6/share/man/man7/Makefile user/hrs/ipv6/share/man/man7/build.7 user/hrs/ipv6/share/man/man7/hier.7 user/hrs/ipv6/share/man/man7/mailaddr.7 user/hrs/ipv6/share/man/man7/operator.7 user/hrs/ipv6/share/man/man7/ports.7 user/hrs/ipv6/share/man/man7/release.7 user/hrs/ipv6/share/man/man7/security.7 user/hrs/ipv6/share/man/man8/picobsd.8 user/hrs/ipv6/share/man/man8/rc.8 user/hrs/ipv6/share/man/man8/rc.subr.8 user/hrs/ipv6/share/man/man8/yp.8 user/hrs/ipv6/share/man/man9/BUS_DESCRIBE_INTR.9 user/hrs/ipv6/share/man/man9/BUS_SETUP_INTR.9 user/hrs/ipv6/share/man/man9/DB_COMMAND.9 user/hrs/ipv6/share/man/man9/DEVICE_PROBE.9 user/hrs/ipv6/share/man/man9/DEV_MODULE.9 user/hrs/ipv6/share/man/man9/LOCK_PROFILING.9 user/hrs/ipv6/share/man/man9/MD5.9 user/hrs/ipv6/share/man/man9/Makefile user/hrs/ipv6/share/man/man9/SYSINIT.9 user/hrs/ipv6/share/man/man9/VOP_VPTOCNP.9 user/hrs/ipv6/share/man/man9/bios.9 user/hrs/ipv6/share/man/man9/bus_dma.9 user/hrs/ipv6/share/man/man9/bus_space.9 user/hrs/ipv6/share/man/man9/byteorder.9 user/hrs/ipv6/share/man/man9/condvar.9 user/hrs/ipv6/share/man/man9/contigmalloc.9 user/hrs/ipv6/share/man/man9/crypto.9 user/hrs/ipv6/share/man/man9/devclass_get_maxunit.9 user/hrs/ipv6/share/man/man9/device_get_children.9 user/hrs/ipv6/share/man/man9/device_set_flags.9 user/hrs/ipv6/share/man/man9/devstat.9 user/hrs/ipv6/share/man/man9/devtoname.9 user/hrs/ipv6/share/man/man9/domain.9 user/hrs/ipv6/share/man/man9/driver.9 user/hrs/ipv6/share/man/man9/fail.9 user/hrs/ipv6/share/man/man9/firmware.9 user/hrs/ipv6/share/man/man9/get_cyclecount.9 user/hrs/ipv6/share/man/man9/ieee80211.9 user/hrs/ipv6/share/man/man9/ieee80211_amrr.9 user/hrs/ipv6/share/man/man9/ieee80211_bmiss.9 user/hrs/ipv6/share/man/man9/ieee80211_crypto.9 user/hrs/ipv6/share/man/man9/ieee80211_input.9 user/hrs/ipv6/share/man/man9/ieee80211_node.9 user/hrs/ipv6/share/man/man9/ieee80211_output.9 user/hrs/ipv6/share/man/man9/ieee80211_proto.9 user/hrs/ipv6/share/man/man9/ieee80211_radiotap.9 user/hrs/ipv6/share/man/man9/ieee80211_regdomain.9 user/hrs/ipv6/share/man/man9/ieee80211_scan.9 user/hrs/ipv6/share/man/man9/ieee80211_vap.9 user/hrs/ipv6/share/man/man9/ifnet.9 user/hrs/ipv6/share/man/man9/kobj.9 user/hrs/ipv6/share/man/man9/kproc.9 user/hrs/ipv6/share/man/man9/kqueue.9 user/hrs/ipv6/share/man/man9/kthread.9 user/hrs/ipv6/share/man/man9/lock.9 user/hrs/ipv6/share/man/man9/locking.9 user/hrs/ipv6/share/man/man9/make_dev.9 user/hrs/ipv6/share/man/man9/malloc.9 user/hrs/ipv6/share/man/man9/mbchain.9 user/hrs/ipv6/share/man/man9/mbuf_tags.9 user/hrs/ipv6/share/man/man9/mdchain.9 user/hrs/ipv6/share/man/man9/memguard.9 user/hrs/ipv6/share/man/man9/mi_switch.9 user/hrs/ipv6/share/man/man9/mutex.9 user/hrs/ipv6/share/man/man9/namei.9 user/hrs/ipv6/share/man/man9/netisr.9 user/hrs/ipv6/share/man/man9/osd.9 user/hrs/ipv6/share/man/man9/pci.9 user/hrs/ipv6/share/man/man9/physio.9 user/hrs/ipv6/share/man/man9/psignal.9 user/hrs/ipv6/share/man/man9/random.9 user/hrs/ipv6/share/man/man9/rijndael.9 user/hrs/ipv6/share/man/man9/rmlock.9 user/hrs/ipv6/share/man/man9/rtalloc.9 user/hrs/ipv6/share/man/man9/rwlock.9 user/hrs/ipv6/share/man/man9/sbuf.9 user/hrs/ipv6/share/man/man9/sleep.9 user/hrs/ipv6/share/man/man9/sleepqueue.9 user/hrs/ipv6/share/man/man9/spl.9 user/hrs/ipv6/share/man/man9/stack.9 user/hrs/ipv6/share/man/man9/swi.9 user/hrs/ipv6/share/man/man9/sx.9 user/hrs/ipv6/share/man/man9/sysctl.9 user/hrs/ipv6/share/man/man9/sysctl_ctx_init.9 user/hrs/ipv6/share/man/man9/taskqueue.9 user/hrs/ipv6/share/man/man9/timeout.9 user/hrs/ipv6/share/man/man9/uio.9 user/hrs/ipv6/share/man/man9/usbdi.9 user/hrs/ipv6/share/man/man9/vcount.9 user/hrs/ipv6/share/man/man9/vm_map_find.9 user/hrs/ipv6/share/man/man9/vm_page_alloc.9 user/hrs/ipv6/share/man/man9/vnode.9 user/hrs/ipv6/share/man/man9/watchdog.9 user/hrs/ipv6/share/man/man9/zone.9 user/hrs/ipv6/share/misc/bsd-family-tree user/hrs/ipv6/share/misc/committers-doc.dot user/hrs/ipv6/share/misc/committers-ports.dot user/hrs/ipv6/share/misc/committers-src.dot user/hrs/ipv6/share/misc/iso3166 user/hrs/ipv6/share/misc/scsi_modes user/hrs/ipv6/share/mk/bsd.crunchgen.mk user/hrs/ipv6/share/mk/bsd.dep.mk user/hrs/ipv6/share/mk/bsd.endian.mk user/hrs/ipv6/share/mk/bsd.kmod.mk user/hrs/ipv6/share/mk/bsd.lib.mk user/hrs/ipv6/share/mk/bsd.libnames.mk user/hrs/ipv6/share/mk/bsd.own.mk user/hrs/ipv6/share/mk/bsd.prog.mk user/hrs/ipv6/share/mk/bsd.sys.mk user/hrs/ipv6/share/mk/sys.mk user/hrs/ipv6/share/monetdef/zh_CN.UTF-8.src user/hrs/ipv6/share/syscons/keymaps/INDEX.keymaps user/hrs/ipv6/share/termcap/termcap.5 user/hrs/ipv6/share/termcap/termcap.src user/hrs/ipv6/sys/Makefile user/hrs/ipv6/sys/amd64/acpica/acpi_switch.S user/hrs/ipv6/sys/amd64/acpica/acpi_wakecode.S user/hrs/ipv6/sys/amd64/acpica/acpi_wakeup.c user/hrs/ipv6/sys/amd64/amd64/apic_vector.S user/hrs/ipv6/sys/amd64/amd64/cpu_switch.S user/hrs/ipv6/sys/amd64/amd64/exception.S user/hrs/ipv6/sys/amd64/amd64/fpu.c user/hrs/ipv6/sys/amd64/amd64/genassym.c user/hrs/ipv6/sys/amd64/amd64/identcpu.c user/hrs/ipv6/sys/amd64/amd64/initcpu.c user/hrs/ipv6/sys/amd64/amd64/machdep.c user/hrs/ipv6/sys/amd64/amd64/minidump_machdep.c user/hrs/ipv6/sys/amd64/amd64/mp_machdep.c user/hrs/ipv6/sys/amd64/amd64/pmap.c user/hrs/ipv6/sys/amd64/amd64/sys_machdep.c user/hrs/ipv6/sys/amd64/amd64/trap.c user/hrs/ipv6/sys/amd64/amd64/uma_machdep.c user/hrs/ipv6/sys/amd64/amd64/vm_machdep.c user/hrs/ipv6/sys/amd64/conf/GENERIC user/hrs/ipv6/sys/amd64/conf/GENERIC.hints user/hrs/ipv6/sys/amd64/conf/NOTES user/hrs/ipv6/sys/amd64/ia32/ia32_reg.c user/hrs/ipv6/sys/amd64/ia32/ia32_signal.c user/hrs/ipv6/sys/amd64/ia32/ia32_syscall.c user/hrs/ipv6/sys/amd64/include/_limits.h user/hrs/ipv6/sys/amd64/include/_stdint.h user/hrs/ipv6/sys/amd64/include/_types.h user/hrs/ipv6/sys/amd64/include/cpufunc.h user/hrs/ipv6/sys/amd64/include/endian.h user/hrs/ipv6/sys/amd64/include/float.h user/hrs/ipv6/sys/amd64/include/fpu.h user/hrs/ipv6/sys/amd64/include/frame.h user/hrs/ipv6/sys/amd64/include/ieeefp.h user/hrs/ipv6/sys/amd64/include/intr_machdep.h user/hrs/ipv6/sys/amd64/include/md_var.h user/hrs/ipv6/sys/amd64/include/pcb.h user/hrs/ipv6/sys/amd64/include/pcpu.h user/hrs/ipv6/sys/amd64/include/pmc_mdep.h user/hrs/ipv6/sys/amd64/include/proc.h user/hrs/ipv6/sys/amd64/include/psl.h user/hrs/ipv6/sys/amd64/include/ptrace.h user/hrs/ipv6/sys/amd64/include/reg.h user/hrs/ipv6/sys/amd64/include/segments.h user/hrs/ipv6/sys/amd64/include/setjmp.h user/hrs/ipv6/sys/amd64/include/signal.h user/hrs/ipv6/sys/amd64/include/specialreg.h user/hrs/ipv6/sys/amd64/include/stdarg.h user/hrs/ipv6/sys/amd64/include/sysarch.h user/hrs/ipv6/sys/amd64/include/trap.h user/hrs/ipv6/sys/amd64/include/ucontext.h user/hrs/ipv6/sys/amd64/include/vm.h user/hrs/ipv6/sys/amd64/linux32/linux.h user/hrs/ipv6/sys/amd64/linux32/linux32_dummy.c user/hrs/ipv6/sys/amd64/linux32/linux32_machdep.c user/hrs/ipv6/sys/amd64/linux32/linux32_proto.h user/hrs/ipv6/sys/amd64/linux32/linux32_syscall.h user/hrs/ipv6/sys/amd64/linux32/linux32_syscalls.c user/hrs/ipv6/sys/amd64/linux32/linux32_sysent.c user/hrs/ipv6/sys/amd64/linux32/linux32_systrace_args.c user/hrs/ipv6/sys/amd64/linux32/linux32_sysvec.c user/hrs/ipv6/sys/amd64/linux32/syscalls.master user/hrs/ipv6/sys/arm/arm/busdma_machdep.c user/hrs/ipv6/sys/arm/arm/elf_machdep.c user/hrs/ipv6/sys/arm/arm/elf_trampoline.c user/hrs/ipv6/sys/arm/arm/irq_dispatch.S user/hrs/ipv6/sys/arm/arm/machdep.c user/hrs/ipv6/sys/arm/arm/pmap.c user/hrs/ipv6/sys/arm/arm/sys_machdep.c user/hrs/ipv6/sys/arm/arm/trap.c user/hrs/ipv6/sys/arm/arm/vm_machdep.c user/hrs/ipv6/sys/arm/at91/at91.c user/hrs/ipv6/sys/arm/at91/at91_mci.c user/hrs/ipv6/sys/arm/at91/at91_pio.c user/hrs/ipv6/sys/arm/at91/at91_piovar.h user/hrs/ipv6/sys/arm/at91/at91_pit.c user/hrs/ipv6/sys/arm/at91/at91_pmc.c user/hrs/ipv6/sys/arm/at91/at91_rst.c user/hrs/ipv6/sys/arm/at91/at91_rtc.c user/hrs/ipv6/sys/arm/at91/at91_spi.c user/hrs/ipv6/sys/arm/at91/at91_ssc.c user/hrs/ipv6/sys/arm/at91/at91_st.c user/hrs/ipv6/sys/arm/at91/at91_twi.c user/hrs/ipv6/sys/arm/at91/at91_twireg.h user/hrs/ipv6/sys/arm/at91/at91_wdt.c user/hrs/ipv6/sys/arm/at91/at91reg.h user/hrs/ipv6/sys/arm/at91/at91sam9260.c user/hrs/ipv6/sys/arm/at91/at91var.h user/hrs/ipv6/sys/arm/at91/if_ate.c user/hrs/ipv6/sys/arm/at91/uart_dev_at91usart.c user/hrs/ipv6/sys/arm/conf/AVILA user/hrs/ipv6/sys/arm/conf/BWCT user/hrs/ipv6/sys/arm/conf/CAMBRIA user/hrs/ipv6/sys/arm/conf/CNS11XXNAS user/hrs/ipv6/sys/arm/conf/CRB user/hrs/ipv6/sys/arm/conf/DB-78XXX user/hrs/ipv6/sys/arm/conf/DB-88F5XXX user/hrs/ipv6/sys/arm/conf/DB-88F6XXX user/hrs/ipv6/sys/arm/conf/DOCKSTAR user/hrs/ipv6/sys/arm/conf/EP80219 user/hrs/ipv6/sys/arm/conf/GUMSTIX user/hrs/ipv6/sys/arm/conf/HL200 user/hrs/ipv6/sys/arm/conf/HL201 user/hrs/ipv6/sys/arm/conf/IQ31244 user/hrs/ipv6/sys/arm/conf/KB920X user/hrs/ipv6/sys/arm/conf/LN2410SBC user/hrs/ipv6/sys/arm/conf/NSLU user/hrs/ipv6/sys/arm/conf/QILA9G20 user/hrs/ipv6/sys/arm/conf/SAM9G20EK user/hrs/ipv6/sys/arm/conf/SHEEVAPLUG user/hrs/ipv6/sys/arm/conf/TS7800 user/hrs/ipv6/sys/arm/econa/econa.c user/hrs/ipv6/sys/arm/econa/ehci_ebus.c user/hrs/ipv6/sys/arm/econa/if_ece.c user/hrs/ipv6/sys/arm/econa/ohci_ec.c user/hrs/ipv6/sys/arm/include/_types.h user/hrs/ipv6/sys/arm/include/armreg.h user/hrs/ipv6/sys/arm/include/asmacros.h user/hrs/ipv6/sys/arm/include/float.h user/hrs/ipv6/sys/arm/include/ieeefp.h user/hrs/ipv6/sys/arm/include/pmap.h user/hrs/ipv6/sys/arm/include/pmc_mdep.h user/hrs/ipv6/sys/arm/include/proc.h user/hrs/ipv6/sys/arm/include/sysarch.h user/hrs/ipv6/sys/arm/include/vmparam.h user/hrs/ipv6/sys/arm/mv/common.c user/hrs/ipv6/sys/arm/mv/files.mv user/hrs/ipv6/sys/arm/mv/mv_machdep.c user/hrs/ipv6/sys/arm/mv/mv_pci.c user/hrs/ipv6/sys/arm/mv/mvreg.h user/hrs/ipv6/sys/arm/sa11x0/sa11x0_ost.c user/hrs/ipv6/sys/arm/xscale/i80321/i80321_pci.c user/hrs/ipv6/sys/arm/xscale/i80321/iq31244_7seg.c user/hrs/ipv6/sys/arm/xscale/i80321/iq80321.c user/hrs/ipv6/sys/arm/xscale/i8134x/crb_machdep.c user/hrs/ipv6/sys/arm/xscale/i8134x/i81342.c user/hrs/ipv6/sys/arm/xscale/i8134x/i81342_pci.c user/hrs/ipv6/sys/arm/xscale/i8134x/iq81342_7seg.c user/hrs/ipv6/sys/arm/xscale/ixp425/avila_ata.c user/hrs/ipv6/sys/arm/xscale/ixp425/avila_gpio.c user/hrs/ipv6/sys/arm/xscale/ixp425/cambria_gpio.c user/hrs/ipv6/sys/arm/xscale/ixp425/if_npe.c user/hrs/ipv6/sys/arm/xscale/ixp425/ixdp425_pci.c user/hrs/ipv6/sys/arm/xscale/ixp425/ixp425.c user/hrs/ipv6/sys/arm/xscale/ixp425/ixp425_pci.c user/hrs/ipv6/sys/arm/xscale/ixp425/ixp425var.h user/hrs/ipv6/sys/arm/xscale/pxa/pxa_obio.c user/hrs/ipv6/sys/arm/xscale/pxa/pxa_smi.c user/hrs/ipv6/sys/arm/xscale/pxa/pxa_space.c user/hrs/ipv6/sys/arm/xscale/pxa/uart_bus_pxa.c user/hrs/ipv6/sys/boot/arm/at91/boot2/boot2.c user/hrs/ipv6/sys/boot/arm/at91/libat91/sd-card.c user/hrs/ipv6/sys/boot/arm/ixp425/boot2/boot2.c user/hrs/ipv6/sys/boot/common/crc32.c user/hrs/ipv6/sys/boot/common/disk.c user/hrs/ipv6/sys/boot/common/gpt.c user/hrs/ipv6/sys/boot/common/interp_parse.c user/hrs/ipv6/sys/boot/common/loader.8 user/hrs/ipv6/sys/boot/common/ufsread.c user/hrs/ipv6/sys/boot/fdt/dts/db78100.dts user/hrs/ipv6/sys/boot/fdt/dts/db88f6281.dts user/hrs/ipv6/sys/boot/fdt/dts/sheevaplug.dts user/hrs/ipv6/sys/boot/fdt/fdt_loader_cmd.c user/hrs/ipv6/sys/boot/ficl/fileaccess.c user/hrs/ipv6/sys/boot/ficl/i386/sysdep.h user/hrs/ipv6/sys/boot/forth/loader.4th user/hrs/ipv6/sys/boot/forth/loader.conf user/hrs/ipv6/sys/boot/forth/loader.conf.5 user/hrs/ipv6/sys/boot/forth/menu-commands.4th user/hrs/ipv6/sys/boot/forth/menu.4th user/hrs/ipv6/sys/boot/forth/menu.4th.8 user/hrs/ipv6/sys/boot/forth/menu.rc user/hrs/ipv6/sys/boot/i386/boot0/Makefile user/hrs/ipv6/sys/boot/i386/boot0/boot0.S user/hrs/ipv6/sys/boot/i386/boot2/Makefile user/hrs/ipv6/sys/boot/i386/boot2/boot1.S user/hrs/ipv6/sys/boot/i386/boot2/boot2.c user/hrs/ipv6/sys/boot/i386/btx/btx/Makefile user/hrs/ipv6/sys/boot/i386/btx/btxldr/Makefile user/hrs/ipv6/sys/boot/i386/btx/lib/btxv86.h user/hrs/ipv6/sys/boot/i386/common/cons.c user/hrs/ipv6/sys/boot/i386/common/drv.c user/hrs/ipv6/sys/boot/i386/gptboot/Makefile user/hrs/ipv6/sys/boot/i386/gptboot/gptboot.c user/hrs/ipv6/sys/boot/i386/gptzfsboot/Makefile user/hrs/ipv6/sys/boot/i386/libi386/Makefile user/hrs/ipv6/sys/boot/i386/libi386/bioscd.c user/hrs/ipv6/sys/boot/i386/libi386/biosdisk.c user/hrs/ipv6/sys/boot/i386/libi386/biosmem.c user/hrs/ipv6/sys/boot/i386/libi386/biospci.c user/hrs/ipv6/sys/boot/i386/libi386/biossmap.c user/hrs/ipv6/sys/boot/i386/libi386/comconsole.c user/hrs/ipv6/sys/boot/i386/libi386/libi386.h user/hrs/ipv6/sys/boot/i386/libi386/pxe.c user/hrs/ipv6/sys/boot/i386/libi386/time.c user/hrs/ipv6/sys/boot/i386/libi386/vidconsole.c user/hrs/ipv6/sys/boot/i386/loader/Makefile user/hrs/ipv6/sys/boot/i386/pxeldr/Makefile user/hrs/ipv6/sys/boot/i386/zfsboot/Makefile user/hrs/ipv6/sys/boot/i386/zfsboot/zfsboot.c user/hrs/ipv6/sys/boot/ia64/common/exec.c user/hrs/ipv6/sys/boot/ofw/Makefile.inc user/hrs/ipv6/sys/boot/ofw/common/main.c user/hrs/ipv6/sys/boot/ofw/libofw/ofw_net.c user/hrs/ipv6/sys/boot/pc98/boot2/boot1.S user/hrs/ipv6/sys/boot/pc98/boot2/boot2.c user/hrs/ipv6/sys/boot/pc98/btx/btx/Makefile user/hrs/ipv6/sys/boot/pc98/btx/btxldr/Makefile user/hrs/ipv6/sys/boot/pc98/btx/lib/btxv86.h user/hrs/ipv6/sys/boot/pc98/libpc98/bioscd.c user/hrs/ipv6/sys/boot/pc98/libpc98/comconsole.c user/hrs/ipv6/sys/boot/pc98/libpc98/vidconsole.c user/hrs/ipv6/sys/boot/pc98/loader/Makefile user/hrs/ipv6/sys/boot/pc98/loader/main.c user/hrs/ipv6/sys/boot/powerpc/Makefile.inc user/hrs/ipv6/sys/boot/powerpc/boot1.chrp/Makefile user/hrs/ipv6/sys/boot/powerpc/boot1.chrp/boot1.c user/hrs/ipv6/sys/boot/powerpc/boot1.chrp/generate-hfs.sh user/hrs/ipv6/sys/boot/powerpc/ps3/ps3mmu.c user/hrs/ipv6/sys/boot/powerpc/ps3/start.S user/hrs/ipv6/sys/boot/uboot/Makefile.inc user/hrs/ipv6/sys/boot/uboot/common/metadata.c user/hrs/ipv6/sys/boot/uboot/lib/Makefile user/hrs/ipv6/sys/boot/uboot/lib/glue.c user/hrs/ipv6/sys/boot/userboot/libstand/Makefile user/hrs/ipv6/sys/boot/zfs/zfsimpl.c user/hrs/ipv6/sys/cam/ata/ata_da.c user/hrs/ipv6/sys/cam/ata/ata_pmp.c user/hrs/ipv6/sys/cam/ata/ata_xpt.c user/hrs/ipv6/sys/cam/cam_ccb.h user/hrs/ipv6/sys/cam/cam_periph.c user/hrs/ipv6/sys/cam/cam_periph.h user/hrs/ipv6/sys/cam/cam_queue.c user/hrs/ipv6/sys/cam/cam_sim.c user/hrs/ipv6/sys/cam/cam_sim.h user/hrs/ipv6/sys/cam/cam_xpt.c user/hrs/ipv6/sys/cam/cam_xpt_internal.h user/hrs/ipv6/sys/cam/scsi/scsi_all.c user/hrs/ipv6/sys/cam/scsi/scsi_all.h user/hrs/ipv6/sys/cam/scsi/scsi_cd.c user/hrs/ipv6/sys/cam/scsi/scsi_ch.c user/hrs/ipv6/sys/cam/scsi/scsi_ch.h user/hrs/ipv6/sys/cam/scsi/scsi_da.c user/hrs/ipv6/sys/cam/scsi/scsi_da.h user/hrs/ipv6/sys/cam/scsi/scsi_low.c user/hrs/ipv6/sys/cam/scsi/scsi_sa.c user/hrs/ipv6/sys/cam/scsi/scsi_ses.c user/hrs/ipv6/sys/cam/scsi/scsi_sg.c user/hrs/ipv6/sys/cam/scsi/scsi_targ_bh.c user/hrs/ipv6/sys/cam/scsi/scsi_target.c user/hrs/ipv6/sys/cam/scsi/scsi_xpt.c user/hrs/ipv6/sys/cddl/boot/zfs/zfssubr.c user/hrs/ipv6/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c user/hrs/ipv6/sys/cddl/compat/opensolaris/sys/kmem.h user/hrs/ipv6/sys/cddl/compat/opensolaris/sys/sid.h user/hrs/ipv6/sys/cddl/compat/opensolaris/sys/vnode.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/common/zfs/zpool_prop.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deadlist.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_deleg.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_fm.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_replay.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/common/sys/sysevent/eventdefs.h user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/intel/dtrace/fasttrap_isa.c user/hrs/ipv6/sys/cddl/contrib/opensolaris/uts/sparc/dtrace/fasttrap_isa.c user/hrs/ipv6/sys/cddl/dev/cyclic/cyclic.c user/hrs/ipv6/sys/cddl/dev/dtrace/dtrace_debug.c user/hrs/ipv6/sys/cddl/dev/dtrace/dtrace_ioctl.c user/hrs/ipv6/sys/cddl/dev/dtrace/i386/dtrace_asm.S user/hrs/ipv6/sys/cddl/dev/fbt/fbt.c user/hrs/ipv6/sys/cddl/dev/lockstat/lockstat.c user/hrs/ipv6/sys/cddl/dev/profile/profile.c user/hrs/ipv6/sys/cddl/dev/sdt/sdt.c user/hrs/ipv6/sys/cddl/dev/systrace/systrace.c user/hrs/ipv6/sys/compat/freebsd32/freebsd32.h user/hrs/ipv6/sys/compat/freebsd32/freebsd32_ioctl.c user/hrs/ipv6/sys/compat/freebsd32/freebsd32_misc.c user/hrs/ipv6/sys/compat/freebsd32/freebsd32_proto.h user/hrs/ipv6/sys/compat/freebsd32/freebsd32_signal.h user/hrs/ipv6/sys/compat/freebsd32/freebsd32_syscall.h user/hrs/ipv6/sys/compat/freebsd32/freebsd32_syscalls.c user/hrs/ipv6/sys/compat/freebsd32/freebsd32_sysent.c user/hrs/ipv6/sys/compat/freebsd32/freebsd32_systrace_args.c user/hrs/ipv6/sys/compat/freebsd32/freebsd32_util.h user/hrs/ipv6/sys/compat/freebsd32/syscalls.master user/hrs/ipv6/sys/compat/ia32/ia32_signal.h user/hrs/ipv6/sys/compat/ia32/ia32_sysvec.c user/hrs/ipv6/sys/compat/linprocfs/linprocfs.c user/hrs/ipv6/sys/compat/linsysfs/linsysfs.c user/hrs/ipv6/sys/compat/linux/linux_emul.c user/hrs/ipv6/sys/compat/linux/linux_file.c user/hrs/ipv6/sys/compat/linux/linux_file.h user/hrs/ipv6/sys/compat/linux/linux_futex.c user/hrs/ipv6/sys/compat/linux/linux_ioctl.c user/hrs/ipv6/sys/compat/linux/linux_ipc.c user/hrs/ipv6/sys/compat/linux/linux_mib.c user/hrs/ipv6/sys/compat/linux/linux_misc.c user/hrs/ipv6/sys/compat/linux/linux_signal.c user/hrs/ipv6/sys/compat/linux/linux_socket.c user/hrs/ipv6/sys/compat/linux/linux_stats.c user/hrs/ipv6/sys/compat/linux/linux_uid16.c user/hrs/ipv6/sys/compat/linux/linux_util.c user/hrs/ipv6/sys/compat/linux/linux_util.h user/hrs/ipv6/sys/compat/ndis/subr_hal.c user/hrs/ipv6/sys/compat/ndis/subr_ndis.c user/hrs/ipv6/sys/compat/ndis/subr_ntoskrnl.c user/hrs/ipv6/sys/compat/svr4/imgact_svr4.c user/hrs/ipv6/sys/compat/svr4/svr4_fcntl.c user/hrs/ipv6/sys/compat/svr4/svr4_filio.c user/hrs/ipv6/sys/compat/svr4/svr4_ipc.c user/hrs/ipv6/sys/compat/svr4/svr4_misc.c user/hrs/ipv6/sys/compat/svr4/svr4_proto.h user/hrs/ipv6/sys/compat/svr4/svr4_signal.c user/hrs/ipv6/sys/compat/svr4/svr4_socket.c user/hrs/ipv6/sys/compat/svr4/svr4_stat.c user/hrs/ipv6/sys/compat/svr4/svr4_stream.c user/hrs/ipv6/sys/compat/svr4/svr4_syscall.h user/hrs/ipv6/sys/compat/svr4/svr4_syscallnames.c user/hrs/ipv6/sys/compat/svr4/svr4_sysent.c user/hrs/ipv6/sys/compat/svr4/syscalls.master user/hrs/ipv6/sys/compat/x86bios/x86bios.c user/hrs/ipv6/sys/conf/Makefile.amd64 user/hrs/ipv6/sys/conf/Makefile.i386 user/hrs/ipv6/sys/conf/Makefile.mips user/hrs/ipv6/sys/conf/NOTES user/hrs/ipv6/sys/conf/files user/hrs/ipv6/sys/conf/files.amd64 user/hrs/ipv6/sys/conf/files.arm user/hrs/ipv6/sys/conf/files.i386 user/hrs/ipv6/sys/conf/files.ia64 user/hrs/ipv6/sys/conf/files.mips user/hrs/ipv6/sys/conf/files.pc98 user/hrs/ipv6/sys/conf/files.powerpc user/hrs/ipv6/sys/conf/files.sparc64 user/hrs/ipv6/sys/conf/kern.mk user/hrs/ipv6/sys/conf/kern.post.mk user/hrs/ipv6/sys/conf/kern.pre.mk user/hrs/ipv6/sys/conf/kmod.mk user/hrs/ipv6/sys/conf/ldscript.powerpc64 user/hrs/ipv6/sys/conf/makeLINT.mk user/hrs/ipv6/sys/conf/makeLINT.sed user/hrs/ipv6/sys/conf/newvers.sh user/hrs/ipv6/sys/conf/options user/hrs/ipv6/sys/conf/options.amd64 user/hrs/ipv6/sys/conf/options.arm user/hrs/ipv6/sys/conf/options.i386 user/hrs/ipv6/sys/conf/options.mips user/hrs/ipv6/sys/contrib/dev/acpica/acpica_prep.sh user/hrs/ipv6/sys/contrib/dev/acpica/changes.txt (contents, props changed) user/hrs/ipv6/sys/contrib/dev/acpica/common/adfile.c user/hrs/ipv6/sys/contrib/dev/acpica/common/adisasm.c user/hrs/ipv6/sys/contrib/dev/acpica/common/adwalk.c user/hrs/ipv6/sys/contrib/dev/acpica/common/dmextern.c user/hrs/ipv6/sys/contrib/dev/acpica/common/dmrestag.c user/hrs/ipv6/sys/contrib/dev/acpica/common/dmtable.c user/hrs/ipv6/sys/contrib/dev/acpica/common/dmtbdump.c user/hrs/ipv6/sys/contrib/dev/acpica/common/dmtbinfo.c user/hrs/ipv6/sys/contrib/dev/acpica/common/getopt.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslanalyze.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslbtypes.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslcodegen.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslcompile.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslcompiler.h user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslcompiler.l user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslcompiler.y user/hrs/ipv6/sys/contrib/dev/acpica/compiler/asldefine.h user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslerror.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslfiles.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslfold.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslglobal.h user/hrs/ipv6/sys/contrib/dev/acpica/compiler/asllength.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/asllisting.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslload.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/asllookup.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslmain.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslmap.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslmessages.h user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslopcodes.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/asloperands.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslopt.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslpredef.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslresource.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslrestype1.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslrestype1i.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslrestype2.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslrestype2d.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslrestype2e.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslrestype2q.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslrestype2w.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslstartup.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslstubs.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/asltransform.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/asltree.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/asltypes.h user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslutils.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/asluuid.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/aslwalks.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dtcompile.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dtcompiler.h user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dtexpress.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dtfield.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dtio.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dtparser.l user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dtparser.y user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dtsubtable.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dttable.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dttemplate.c user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dttemplate.h user/hrs/ipv6/sys/contrib/dev/acpica/compiler/dtutils.c user/hrs/ipv6/sys/contrib/dev/acpica/include/acapps.h user/hrs/ipv6/sys/contrib/dev/acpica/include/accommon.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acconfig.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acdebug.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acdisasm.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acdispat.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acevents.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acexcep.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acglobal.h user/hrs/ipv6/sys/contrib/dev/acpica/include/achware.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acinterp.h user/hrs/ipv6/sys/contrib/dev/acpica/include/aclocal.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acmacros.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acnames.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acnamesp.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acobject.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acopcode.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acoutput.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acparser.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acpi.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acpiosxf.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acpixf.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acpredef.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acresrc.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acrestyp.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acstruct.h user/hrs/ipv6/sys/contrib/dev/acpica/include/actables.h user/hrs/ipv6/sys/contrib/dev/acpica/include/actbl.h user/hrs/ipv6/sys/contrib/dev/acpica/include/actbl1.h user/hrs/ipv6/sys/contrib/dev/acpica/include/actbl2.h user/hrs/ipv6/sys/contrib/dev/acpica/include/actypes.h user/hrs/ipv6/sys/contrib/dev/acpica/include/acutils.h user/hrs/ipv6/sys/contrib/dev/acpica/include/amlcode.h user/hrs/ipv6/sys/contrib/dev/acpica/include/amlresrc.h user/hrs/ipv6/sys/contrib/dev/acpica/include/platform/acenv.h user/hrs/ipv6/sys/contrib/dev/acpica/include/platform/acfreebsd.h user/hrs/ipv6/sys/contrib/dev/acpica/include/platform/acgcc.h user/hrs/ipv6/sys/contrib/dev/npe/LICENSE user/hrs/ipv6/sys/contrib/dev/nve/amd64/nvenetlib.README user/hrs/ipv6/sys/contrib/dev/nve/i386/nvenetlib.README user/hrs/ipv6/sys/contrib/dev/ral/Makefile user/hrs/ipv6/sys/contrib/dev/ral/rt2860.fw.uu user/hrs/ipv6/sys/contrib/dev/run/rt2870.fw.uu user/hrs/ipv6/sys/contrib/ipfilter/netinet/ip_compat.h user/hrs/ipv6/sys/contrib/ipfilter/netinet/ip_proxy.c user/hrs/ipv6/sys/contrib/ngatm/netnatm/msg/uni_ie.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmip.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-abi.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-access-native.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-access.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-address.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-agl-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-app-hotplug.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-app-hotplug.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-app-init-linux.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-app-init.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-app-init.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-asm.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-asx0-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-asxx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-atomic.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-bootloader.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-bootmem.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-bootmem.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ciu-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-clock.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-clock.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-cmd-queue.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-cmd-queue.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-cn3010-evb-hs5.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-cn3010-evb-hs5.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-compactflash.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-compactflash.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-core.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-core.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-coremask.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-coremask.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-crypto.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-crypto.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-csr-enums.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-csr-typedefs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-csr.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-dbg-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-debug-handler.S user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-debug-remote.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-debug-uart.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-debug.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-debug.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-dfa-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-dfa.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-dfa.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-dfm-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-dma-engine.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-dma-engine.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-dpi-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ebt3000.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ebt3000.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-fau.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-flash.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-flash.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-fpa-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-fpa.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-fpa.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-gmx.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-gmxx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-gpio-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-gpio.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-board.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-board.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-check-defines.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-errata.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-errata.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-fpa.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-fpa.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-jtag.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-jtag.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-loop.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-loop.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-npi.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-npi.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-rgmii.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-rgmii.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-sgmii.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-sgmii.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-spi.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-spi.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-srio.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-srio.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-util.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-util.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-xaui.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper-xaui.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-helper.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-higig.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-interrupt-handler.S user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-interrupt.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-interrupt.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-iob-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ipd-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ipd.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ixf18201.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ixf18201.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-key-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-key.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-l2c-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-l2c.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-l2c.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-l2d-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-l2t-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-led-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-llm.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-llm.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-lmcx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-log-arc.S user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-log.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-log.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-malloc.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-mdio.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-mgmt-port.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-mgmt-port.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-mio-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-mixx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-mpi-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-nand.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-nand.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-ndf-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-npei-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-npi-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-npi.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-packet.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pci-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pci.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pcie.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pcie.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pcieepx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pciercx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pcm-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pcmx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pcsx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pcsxx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pemx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pescx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pexp-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pip-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pip.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pko-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pko.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pko.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-platform.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pow-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pow.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-pow.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-power-throttle.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-power-throttle.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-rad-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-raid.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-raid.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-rng.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-rnm-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-rtc.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-rwlock.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-scratch.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-shmem.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-shmem.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-sim-magic.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-sli-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-smi-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-smix-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-spi.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-spi.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-spi4000.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-spinlock.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-spx0-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-spxx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-srio.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-srio.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-sriomaintx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-sriox-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-srxx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-stxx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-swap.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-sysinfo.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-sysinfo.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-thunder.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-thunder.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-tim-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-tim.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-tim.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-tlb.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-tlb.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-tra-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-tra.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-tra.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-twsi.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-twsi.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-uahcx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-uart.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-uart.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-uctlx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-usb.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-usb.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-usbcx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-usbd.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-usbd.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-usbnx-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-utils.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-version.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-warn.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-warn.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-wqe.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-zip-defs.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-zip.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-zip.h user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx-zone.c user/hrs/ipv6/sys/contrib/octeon-sdk/cvmx.h user/hrs/ipv6/sys/contrib/octeon-sdk/octeon-boot-info.h user/hrs/ipv6/sys/contrib/octeon-sdk/octeon-feature.h user/hrs/ipv6/sys/contrib/octeon-sdk/octeon-model.c user/hrs/ipv6/sys/contrib/octeon-sdk/octeon-model.h user/hrs/ipv6/sys/contrib/octeon-sdk/octeon-pci-console.c user/hrs/ipv6/sys/contrib/octeon-sdk/octeon-pci-console.h user/hrs/ipv6/sys/contrib/pf/net/if_pflog.c user/hrs/ipv6/sys/contrib/pf/net/if_pfsync.c user/hrs/ipv6/sys/contrib/pf/net/if_pfsync.h user/hrs/ipv6/sys/contrib/pf/net/pf.c user/hrs/ipv6/sys/contrib/pf/net/pf_ioctl.c user/hrs/ipv6/sys/contrib/pf/net/pf_lb.c user/hrs/ipv6/sys/contrib/pf/net/pf_norm.c user/hrs/ipv6/sys/contrib/pf/net/pf_table.c user/hrs/ipv6/sys/contrib/pf/net/pfvar.h user/hrs/ipv6/sys/contrib/rdma/ib_addr.h user/hrs/ipv6/sys/crypto/aesni/aesni.c user/hrs/ipv6/sys/crypto/aesni/aesni.h user/hrs/ipv6/sys/crypto/aesni/aesni_wrap.c user/hrs/ipv6/sys/crypto/via/padlock.c user/hrs/ipv6/sys/crypto/via/padlock.h user/hrs/ipv6/sys/crypto/via/padlock_cipher.c user/hrs/ipv6/sys/crypto/via/padlock_hash.c user/hrs/ipv6/sys/ddb/db_command.c user/hrs/ipv6/sys/ddb/db_input.c user/hrs/ipv6/sys/ddb/db_main.c user/hrs/ipv6/sys/ddb/db_ps.c user/hrs/ipv6/sys/ddb/db_thread.c user/hrs/ipv6/sys/ddb/ddb.h user/hrs/ipv6/sys/dev/aac/aac.c user/hrs/ipv6/sys/dev/aac/aac_cam.c user/hrs/ipv6/sys/dev/aac/aac_pci.c user/hrs/ipv6/sys/dev/acpi_support/acpi_wmi.c user/hrs/ipv6/sys/dev/acpi_support/atk0110.c user/hrs/ipv6/sys/dev/acpica/Osd/OsdInterrupt.c user/hrs/ipv6/sys/dev/acpica/Osd/OsdMemory.c user/hrs/ipv6/sys/dev/acpica/Osd/OsdSchedule.c user/hrs/ipv6/sys/dev/acpica/Osd/OsdSynch.c user/hrs/ipv6/sys/dev/acpica/Osd/OsdTable.c user/hrs/ipv6/sys/dev/acpica/acpi.c user/hrs/ipv6/sys/dev/acpica/acpi_battery.c user/hrs/ipv6/sys/dev/acpica/acpi_cmbat.c user/hrs/ipv6/sys/dev/acpica/acpi_cpu.c user/hrs/ipv6/sys/dev/acpica/acpi_ec.c user/hrs/ipv6/sys/dev/acpica/acpi_hpet.c user/hrs/ipv6/sys/dev/acpica/acpi_isab.c user/hrs/ipv6/sys/dev/acpica/acpi_pci.c user/hrs/ipv6/sys/dev/acpica/acpi_pci_link.c user/hrs/ipv6/sys/dev/acpica/acpi_pcib_acpi.c user/hrs/ipv6/sys/dev/acpica/acpi_perf.c user/hrs/ipv6/sys/dev/acpica/acpi_powerres.c user/hrs/ipv6/sys/dev/acpica/acpi_smbat.c user/hrs/ipv6/sys/dev/acpica/acpi_thermal.c user/hrs/ipv6/sys/dev/acpica/acpi_timer.c user/hrs/ipv6/sys/dev/acpica/acpi_video.c user/hrs/ipv6/sys/dev/acpica/acpivar.h user/hrs/ipv6/sys/dev/adb/adb_kbd.c user/hrs/ipv6/sys/dev/advansys/adv_eisa.c user/hrs/ipv6/sys/dev/advansys/adv_isa.c user/hrs/ipv6/sys/dev/advansys/adv_pci.c user/hrs/ipv6/sys/dev/advansys/adw_pci.c user/hrs/ipv6/sys/dev/ae/if_ae.c user/hrs/ipv6/sys/dev/age/if_age.c user/hrs/ipv6/sys/dev/ahb/ahb.c user/hrs/ipv6/sys/dev/ahci/ahci.c user/hrs/ipv6/sys/dev/ahci/ahci.h user/hrs/ipv6/sys/dev/aic7xxx/ahc_eisa.c user/hrs/ipv6/sys/dev/aic7xxx/ahc_isa.c user/hrs/ipv6/sys/dev/aic7xxx/ahc_pci.c user/hrs/ipv6/sys/dev/aic7xxx/ahd_pci.c user/hrs/ipv6/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l user/hrs/ipv6/sys/dev/aic7xxx/aicasm/aicasm_scan.l user/hrs/ipv6/sys/dev/aic7xxx/aicasm/aicasm_symbol.c user/hrs/ipv6/sys/dev/alc/if_alc.c user/hrs/ipv6/sys/dev/ale/if_ale.c user/hrs/ipv6/sys/dev/ale/if_alevar.h user/hrs/ipv6/sys/dev/amdtemp/amdtemp.c user/hrs/ipv6/sys/dev/amr/amr.c user/hrs/ipv6/sys/dev/amr/amr_cam.c user/hrs/ipv6/sys/dev/amr/amr_pci.c user/hrs/ipv6/sys/dev/an/if_an.c user/hrs/ipv6/sys/dev/an/if_an_pci.c user/hrs/ipv6/sys/dev/arcmsr/arcmsr.c user/hrs/ipv6/sys/dev/asr/asr.c user/hrs/ipv6/sys/dev/ata/ata-all.c user/hrs/ipv6/sys/dev/ata/ata-all.h user/hrs/ipv6/sys/dev/ata/ata-card.c user/hrs/ipv6/sys/dev/ata/ata-cbus.c user/hrs/ipv6/sys/dev/ata/ata-disk.c user/hrs/ipv6/sys/dev/ata/ata-disk.h user/hrs/ipv6/sys/dev/ata/ata-dma.c user/hrs/ipv6/sys/dev/ata/ata-isa.c user/hrs/ipv6/sys/dev/ata/ata-lowlevel.c user/hrs/ipv6/sys/dev/ata/ata-pci.c user/hrs/ipv6/sys/dev/ata/ata-pci.h user/hrs/ipv6/sys/dev/ata/ata-queue.c user/hrs/ipv6/sys/dev/ata/ata-raid.c user/hrs/ipv6/sys/dev/ata/ata-raid.h user/hrs/ipv6/sys/dev/ata/ata-sata.c user/hrs/ipv6/sys/dev/ata/ata_if.m user/hrs/ipv6/sys/dev/ata/atapi-cam.c user/hrs/ipv6/sys/dev/ata/atapi-cd.c user/hrs/ipv6/sys/dev/ata/atapi-cd.h user/hrs/ipv6/sys/dev/ata/atapi-fd.c user/hrs/ipv6/sys/dev/ata/atapi-fd.h user/hrs/ipv6/sys/dev/ata/atapi-tape.c user/hrs/ipv6/sys/dev/ata/atapi-tape.h user/hrs/ipv6/sys/dev/ata/chipsets/ata-acard.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-acerlabs.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-adaptec.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-ahci.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-amd.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-ati.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-cenatek.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-cypress.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-cyrix.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-highpoint.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-intel.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-ite.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-jmicron.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-marvell.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-micron.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-national.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-netcell.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-nvidia.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-promise.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-serverworks.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-siliconimage.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-sis.c user/hrs/ipv6/sys/dev/ata/chipsets/ata-via.c user/hrs/ipv6/sys/dev/ath/ah_osdep.c user/hrs/ipv6/sys/dev/ath/ath_dfs/null/dfs_null.c user/hrs/ipv6/sys/dev/ath/ath_hal/ah.c user/hrs/ipv6/sys/dev/ath/ath_hal/ah.h user/hrs/ipv6/sys/dev/ath/ath_hal/ah_decode.h user/hrs/ipv6/sys/dev/ath/ath_hal/ah_desc.h user/hrs/ipv6/sys/dev/ath/ath_hal/ah_devid.h user/hrs/ipv6/sys/dev/ath/ath_hal/ah_internal.h user/hrs/ipv6/sys/dev/ath/ath_hal/ah_regdomain.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5210/ar5210reg.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5211/ar5211reg.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar5212/ar5112.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5212/ar5212.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5212/ar5212reg.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar5312/ar5312_attach.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar2133.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_beacon.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_gpio.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_power.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416desc.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416phy.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar5416/ar5416reg.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar9001/ar9130_eeprom.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar9001/ar9130_eeprom.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar9002/ar9280.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar9002/ar9285.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar9002/ar9287.c user/hrs/ipv6/sys/dev/ath/ath_hal/ar9002/ar9287.h user/hrs/ipv6/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c user/hrs/ipv6/sys/dev/ath/ath_rate/amrr/amrr.c user/hrs/ipv6/sys/dev/ath/ath_rate/onoe/onoe.c user/hrs/ipv6/sys/dev/ath/ath_rate/sample/sample.c user/hrs/ipv6/sys/dev/ath/ath_rate/sample/sample.h user/hrs/ipv6/sys/dev/ath/if_ath.c user/hrs/ipv6/sys/dev/ath/if_ath_ahb.c user/hrs/ipv6/sys/dev/ath/if_ath_debug.c user/hrs/ipv6/sys/dev/ath/if_ath_debug.h user/hrs/ipv6/sys/dev/ath/if_ath_keycache.c user/hrs/ipv6/sys/dev/ath/if_ath_keycache.h user/hrs/ipv6/sys/dev/ath/if_ath_misc.h user/hrs/ipv6/sys/dev/ath/if_ath_pci.c user/hrs/ipv6/sys/dev/ath/if_ath_sysctl.c user/hrs/ipv6/sys/dev/ath/if_ath_tx.c user/hrs/ipv6/sys/dev/ath/if_ath_tx.h user/hrs/ipv6/sys/dev/ath/if_ath_tx_ht.c user/hrs/ipv6/sys/dev/ath/if_ath_tx_ht.h user/hrs/ipv6/sys/dev/ath/if_athdfs.h user/hrs/ipv6/sys/dev/ath/if_athioctl.h user/hrs/ipv6/sys/dev/ath/if_athrate.h user/hrs/ipv6/sys/dev/ath/if_athvar.h user/hrs/ipv6/sys/dev/atkbdc/atkbdc_isa.c user/hrs/ipv6/sys/dev/atkbdc/psm.c user/hrs/ipv6/sys/dev/bce/if_bce.c user/hrs/ipv6/sys/dev/bce/if_bcereg.h user/hrs/ipv6/sys/dev/bfe/if_bfe.c user/hrs/ipv6/sys/dev/bge/if_bge.c user/hrs/ipv6/sys/dev/bge/if_bgereg.h user/hrs/ipv6/sys/dev/bktr/bktr_core.c user/hrs/ipv6/sys/dev/bktr/bktr_os.c user/hrs/ipv6/sys/dev/bktr/bktr_reg.h user/hrs/ipv6/sys/dev/bm/if_bm.c user/hrs/ipv6/sys/dev/bm/if_bmreg.h user/hrs/ipv6/sys/dev/bm/if_bmvar.h user/hrs/ipv6/sys/dev/buslogic/bt_pci.c user/hrs/ipv6/sys/dev/bwi/bwiphy.c user/hrs/ipv6/sys/dev/bwi/if_bwi.c user/hrs/ipv6/sys/dev/bwn/if_bwn.c user/hrs/ipv6/sys/dev/bwn/if_bwnvar.h user/hrs/ipv6/sys/dev/bxe/bxe_hsi.h user/hrs/ipv6/sys/dev/bxe/bxe_link.c user/hrs/ipv6/sys/dev/bxe/bxe_reg.h user/hrs/ipv6/sys/dev/bxe/if_bxe.c user/hrs/ipv6/sys/dev/cardbus/cardbus.c user/hrs/ipv6/sys/dev/cardbus/cardbus_cis.c user/hrs/ipv6/sys/dev/cas/if_cas.c user/hrs/ipv6/sys/dev/ce/if_ce.c user/hrs/ipv6/sys/dev/cfe/cfe_console.c user/hrs/ipv6/sys/dev/cfi/cfi_core.c user/hrs/ipv6/sys/dev/cfi/cfi_dev.c user/hrs/ipv6/sys/dev/cfi/cfi_disk.c user/hrs/ipv6/sys/dev/cfi/cfi_var.h user/hrs/ipv6/sys/dev/ciss/ciss.c user/hrs/ipv6/sys/dev/cm/smc90cx6.c user/hrs/ipv6/sys/dev/coretemp/coretemp.c user/hrs/ipv6/sys/dev/cp/if_cp.c user/hrs/ipv6/sys/dev/cpuctl/cpuctl.c user/hrs/ipv6/sys/dev/cs/if_cs.c user/hrs/ipv6/sys/dev/cxgb/common/cxgb_aq100x.c user/hrs/ipv6/sys/dev/cxgb/cxgb_adapter.h user/hrs/ipv6/sys/dev/cxgb/cxgb_main.c user/hrs/ipv6/sys/dev/cxgb/cxgb_sge.c user/hrs/ipv6/sys/dev/cxgb/ulp/tom/cxgb_tom_sysctl.c user/hrs/ipv6/sys/dev/cxgbe/adapter.h user/hrs/ipv6/sys/dev/cxgbe/common/common.h user/hrs/ipv6/sys/dev/cxgbe/common/t4_hw.c user/hrs/ipv6/sys/dev/cxgbe/common/t4_hw.h user/hrs/ipv6/sys/dev/cxgbe/offload.h user/hrs/ipv6/sys/dev/cxgbe/osdep.h user/hrs/ipv6/sys/dev/cxgbe/t4_ioctl.h user/hrs/ipv6/sys/dev/cxgbe/t4_l2t.c user/hrs/ipv6/sys/dev/cxgbe/t4_l2t.h user/hrs/ipv6/sys/dev/cxgbe/t4_main.c user/hrs/ipv6/sys/dev/cxgbe/t4_sge.c user/hrs/ipv6/sys/dev/dc/dcphy.c user/hrs/ipv6/sys/dev/dc/if_dc.c user/hrs/ipv6/sys/dev/dc/if_dcreg.h user/hrs/ipv6/sys/dev/dc/pnphy.c user/hrs/ipv6/sys/dev/dcons/dcons_os.c user/hrs/ipv6/sys/dev/de/if_de.c user/hrs/ipv6/sys/dev/dpt/dpt_pci.c user/hrs/ipv6/sys/dev/dpt/dpt_scsi.c user/hrs/ipv6/sys/dev/drm/i915_drv.h user/hrs/ipv6/sys/dev/drm/mga_drv.h user/hrs/ipv6/sys/dev/drm/radeon_state.c user/hrs/ipv6/sys/dev/e1000/README user/hrs/ipv6/sys/dev/e1000/e1000_80003es2lan.c user/hrs/ipv6/sys/dev/e1000/e1000_80003es2lan.h user/hrs/ipv6/sys/dev/e1000/e1000_82540.c user/hrs/ipv6/sys/dev/e1000/e1000_82541.c user/hrs/ipv6/sys/dev/e1000/e1000_82543.c user/hrs/ipv6/sys/dev/e1000/e1000_82571.c user/hrs/ipv6/sys/dev/e1000/e1000_82575.c user/hrs/ipv6/sys/dev/e1000/e1000_82575.h user/hrs/ipv6/sys/dev/e1000/e1000_api.c user/hrs/ipv6/sys/dev/e1000/e1000_api.h user/hrs/ipv6/sys/dev/e1000/e1000_defines.h user/hrs/ipv6/sys/dev/e1000/e1000_hw.h user/hrs/ipv6/sys/dev/e1000/e1000_ich8lan.c user/hrs/ipv6/sys/dev/e1000/e1000_ich8lan.h user/hrs/ipv6/sys/dev/e1000/e1000_mac.c user/hrs/ipv6/sys/dev/e1000/e1000_nvm.c user/hrs/ipv6/sys/dev/e1000/e1000_nvm.h user/hrs/ipv6/sys/dev/e1000/e1000_osdep.h user/hrs/ipv6/sys/dev/e1000/e1000_phy.c user/hrs/ipv6/sys/dev/e1000/e1000_phy.h user/hrs/ipv6/sys/dev/e1000/e1000_regs.h user/hrs/ipv6/sys/dev/e1000/e1000_vf.c user/hrs/ipv6/sys/dev/e1000/if_em.c user/hrs/ipv6/sys/dev/e1000/if_em.h user/hrs/ipv6/sys/dev/e1000/if_igb.c user/hrs/ipv6/sys/dev/e1000/if_igb.h user/hrs/ipv6/sys/dev/e1000/if_lem.c user/hrs/ipv6/sys/dev/e1000/if_lem.h user/hrs/ipv6/sys/dev/ed/if_ed.c user/hrs/ipv6/sys/dev/eisa/eisaconf.c user/hrs/ipv6/sys/dev/en/midway.c user/hrs/ipv6/sys/dev/ep/if_ep.c user/hrs/ipv6/sys/dev/esp/esp_sbus.c user/hrs/ipv6/sys/dev/esp/ncr53c9x.c user/hrs/ipv6/sys/dev/esp/ncr53c9xreg.h user/hrs/ipv6/sys/dev/esp/ncr53c9xvar.h user/hrs/ipv6/sys/dev/et/if_et.c user/hrs/ipv6/sys/dev/et/if_etreg.h user/hrs/ipv6/sys/dev/et/if_etvar.h user/hrs/ipv6/sys/dev/ex/if_ex.c user/hrs/ipv6/sys/dev/ex/if_exreg.h user/hrs/ipv6/sys/dev/fb/boot_font.c user/hrs/ipv6/sys/dev/fb/fb.c user/hrs/ipv6/sys/dev/fb/machfb.c user/hrs/ipv6/sys/dev/fb/s3_pci.c user/hrs/ipv6/sys/dev/fb/splash_pcx.c user/hrs/ipv6/sys/dev/fb/vesa.c user/hrs/ipv6/sys/dev/fb/vesa.h user/hrs/ipv6/sys/dev/fb/vga.c user/hrs/ipv6/sys/dev/fdc/fdc.c user/hrs/ipv6/sys/dev/fdt/fdt_common.c user/hrs/ipv6/sys/dev/fdt/fdt_common.h user/hrs/ipv6/sys/dev/fdt/fdt_pci.c user/hrs/ipv6/sys/dev/fdt/fdt_powerpc.c user/hrs/ipv6/sys/dev/fdt/fdtbus.c user/hrs/ipv6/sys/dev/fdt/simplebus.c user/hrs/ipv6/sys/dev/fe/if_fe.c user/hrs/ipv6/sys/dev/firewire/firewire.c user/hrs/ipv6/sys/dev/firewire/fwmem.c user/hrs/ipv6/sys/dev/firewire/fwohci_pci.c user/hrs/ipv6/sys/dev/firewire/if_fwe.c user/hrs/ipv6/sys/dev/firewire/if_fwip.c user/hrs/ipv6/sys/dev/firewire/sbp.c user/hrs/ipv6/sys/dev/firewire/sbp_targ.c user/hrs/ipv6/sys/dev/flash/mx25l.c user/hrs/ipv6/sys/dev/fxp/if_fxp.c user/hrs/ipv6/sys/dev/fxp/if_fxpreg.h user/hrs/ipv6/sys/dev/fxp/if_fxpvar.h user/hrs/ipv6/sys/dev/gem/if_gem_pci.c user/hrs/ipv6/sys/dev/gem/if_gem_sbus.c user/hrs/ipv6/sys/dev/glxsb/glxsb.c user/hrs/ipv6/sys/dev/gpio/gpiobus.c user/hrs/ipv6/sys/dev/gpio/gpioc.c user/hrs/ipv6/sys/dev/gpio/gpioiic.c user/hrs/ipv6/sys/dev/hatm/if_hatm.c user/hrs/ipv6/sys/dev/hifn/hifn7751.c user/hrs/ipv6/sys/dev/hme/if_hme_pci.c user/hrs/ipv6/sys/dev/hme/if_hme_sbus.c user/hrs/ipv6/sys/dev/hptiop/hptiop.c user/hrs/ipv6/sys/dev/hptmv/entry.c user/hrs/ipv6/sys/dev/hptmv/readme.txt user/hrs/ipv6/sys/dev/hptrr/hptrr_osm_bsd.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_amd.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_core.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_intel.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_logging.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_mips.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_mips24k.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_mod.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_piv.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_powerpc.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_ppro.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_tsc.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_uncore.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_uncore.h user/hrs/ipv6/sys/dev/hwpmc/hwpmc_x86.c user/hrs/ipv6/sys/dev/hwpmc/hwpmc_xscale.c user/hrs/ipv6/sys/dev/hwpmc/pmc_events.h user/hrs/ipv6/sys/dev/ichsmb/ichsmb_pci.c user/hrs/ipv6/sys/dev/ichwd/ichwd.c user/hrs/ipv6/sys/dev/ichwd/ichwd.h user/hrs/ipv6/sys/dev/ida/ida_pci.c user/hrs/ipv6/sys/dev/ie/if_ie.c user/hrs/ipv6/sys/dev/ieee488/ibfoo.c user/hrs/ipv6/sys/dev/ieee488/pcii.c user/hrs/ipv6/sys/dev/ieee488/upd7210.c user/hrs/ipv6/sys/dev/ieee488/upd7210.h user/hrs/ipv6/sys/dev/if_ndis/if_ndis.c user/hrs/ipv6/sys/dev/if_ndis/if_ndis_pccard.c user/hrs/ipv6/sys/dev/if_ndis/if_ndis_pci.c user/hrs/ipv6/sys/dev/if_ndis/if_ndis_usb.c user/hrs/ipv6/sys/dev/iicbus/ad7417.c user/hrs/ipv6/sys/dev/iicbus/ds1775.c user/hrs/ipv6/sys/dev/iicbus/iic.c user/hrs/ipv6/sys/dev/iicbus/iicbb.c user/hrs/ipv6/sys/dev/iicbus/iicbb_if.m user/hrs/ipv6/sys/dev/iicbus/iicbus.c user/hrs/ipv6/sys/dev/iicbus/iicbus.h user/hrs/ipv6/sys/dev/iicbus/iiconf.c user/hrs/ipv6/sys/dev/iicbus/iicsmb.c user/hrs/ipv6/sys/dev/iicbus/max6690.c user/hrs/ipv6/sys/dev/iir/iir.c user/hrs/ipv6/sys/dev/iir/iir_pci.c user/hrs/ipv6/sys/dev/ipmi/ipmi.c user/hrs/ipv6/sys/dev/ips/ips_pci.c user/hrs/ipv6/sys/dev/ipw/if_ipw.c user/hrs/ipv6/sys/dev/ipw/if_ipwvar.h user/hrs/ipv6/sys/dev/iscsi/initiator/isc_sm.c user/hrs/ipv6/sys/dev/iscsi/initiator/isc_soc.c user/hrs/ipv6/sys/dev/iscsi/initiator/isc_subr.c user/hrs/ipv6/sys/dev/iscsi/initiator/iscsi.c user/hrs/ipv6/sys/dev/iscsi/initiator/iscsi_subr.c user/hrs/ipv6/sys/dev/iscsi/initiator/iscsivar.h user/hrs/ipv6/sys/dev/isp/DriverManual.txt user/hrs/ipv6/sys/dev/isp/isp.c user/hrs/ipv6/sys/dev/isp/isp_freebsd.c user/hrs/ipv6/sys/dev/isp/isp_freebsd.h user/hrs/ipv6/sys/dev/isp/isp_pci.c user/hrs/ipv6/sys/dev/iwi/if_iwi.c user/hrs/ipv6/sys/dev/iwn/if_iwn.c user/hrs/ipv6/sys/dev/iwn/if_iwnreg.h user/hrs/ipv6/sys/dev/ixgb/if_ixgb.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe.h user/hrs/ipv6/sys/dev/ixgbe/ixgbe_82598.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe_82599.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe_api.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe_api.h user/hrs/ipv6/sys/dev/ixgbe/ixgbe_common.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe_common.h user/hrs/ipv6/sys/dev/ixgbe/ixgbe_mbx.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe_mbx.h user/hrs/ipv6/sys/dev/ixgbe/ixgbe_osdep.h user/hrs/ipv6/sys/dev/ixgbe/ixgbe_phy.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe_phy.h user/hrs/ipv6/sys/dev/ixgbe/ixgbe_type.h user/hrs/ipv6/sys/dev/ixgbe/ixgbe_vf.c user/hrs/ipv6/sys/dev/ixgbe/ixgbe_vf.h user/hrs/ipv6/sys/dev/ixgbe/ixv.c user/hrs/ipv6/sys/dev/ixgbe/ixv.h user/hrs/ipv6/sys/dev/kbd/kbd.c user/hrs/ipv6/sys/dev/ksyms/ksyms.c user/hrs/ipv6/sys/dev/le/lebuffer_sbus.c user/hrs/ipv6/sys/dev/lge/if_lge.c user/hrs/ipv6/sys/dev/lge/if_lgereg.h user/hrs/ipv6/sys/dev/lmc/if_lmc.c user/hrs/ipv6/sys/dev/malo/if_malo.c user/hrs/ipv6/sys/dev/malo/if_malo_pci.c user/hrs/ipv6/sys/dev/mca/mca_bus.c user/hrs/ipv6/sys/dev/md/md.c user/hrs/ipv6/sys/dev/mfi/mfi.c user/hrs/ipv6/sys/dev/mfi/mfi_cam.c user/hrs/ipv6/sys/dev/mfi/mfi_debug.c user/hrs/ipv6/sys/dev/mfi/mfi_disk.c user/hrs/ipv6/sys/dev/mfi/mfi_ioctl.h user/hrs/ipv6/sys/dev/mfi/mfi_linux.c user/hrs/ipv6/sys/dev/mfi/mfi_pci.c user/hrs/ipv6/sys/dev/mfi/mfireg.h user/hrs/ipv6/sys/dev/mfi/mfivar.h user/hrs/ipv6/sys/dev/mge/if_mge.c user/hrs/ipv6/sys/dev/mge/if_mgevar.h user/hrs/ipv6/sys/dev/mii/acphy.c user/hrs/ipv6/sys/dev/mii/amphy.c user/hrs/ipv6/sys/dev/mii/atphy.c user/hrs/ipv6/sys/dev/mii/axphy.c user/hrs/ipv6/sys/dev/mii/bmtphy.c user/hrs/ipv6/sys/dev/mii/brgphy.c user/hrs/ipv6/sys/dev/mii/ciphy.c user/hrs/ipv6/sys/dev/mii/e1000phy.c user/hrs/ipv6/sys/dev/mii/gentbi.c user/hrs/ipv6/sys/dev/mii/icsphy.c user/hrs/ipv6/sys/dev/mii/ip1000phy.c user/hrs/ipv6/sys/dev/mii/jmphy.c user/hrs/ipv6/sys/dev/mii/lxtphy.c user/hrs/ipv6/sys/dev/mii/mii.c user/hrs/ipv6/sys/dev/mii/miidevs user/hrs/ipv6/sys/dev/mii/miivar.h user/hrs/ipv6/sys/dev/mii/mlphy.c user/hrs/ipv6/sys/dev/mii/nsgphy.c user/hrs/ipv6/sys/dev/mii/nsphy.c user/hrs/ipv6/sys/dev/mii/nsphyter.c user/hrs/ipv6/sys/dev/mii/pnaphy.c user/hrs/ipv6/sys/dev/mii/qsphy.c user/hrs/ipv6/sys/dev/mii/rdcphy.c user/hrs/ipv6/sys/dev/mii/rgephy.c user/hrs/ipv6/sys/dev/mii/rlphy.c user/hrs/ipv6/sys/dev/mii/rlswitch.c user/hrs/ipv6/sys/dev/mii/smcphy.c user/hrs/ipv6/sys/dev/mii/tdkphy.c user/hrs/ipv6/sys/dev/mii/tlphy.c user/hrs/ipv6/sys/dev/mii/truephy.c user/hrs/ipv6/sys/dev/mii/ukphy.c user/hrs/ipv6/sys/dev/mii/xmphy.c user/hrs/ipv6/sys/dev/mlx/mlx.c user/hrs/ipv6/sys/dev/mlx/mlx_pci.c user/hrs/ipv6/sys/dev/mly/mly.c user/hrs/ipv6/sys/dev/mmc/mmc.c user/hrs/ipv6/sys/dev/mps/mpi/mpi2.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_cnfg.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_hbd.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_history.txt user/hrs/ipv6/sys/dev/mps/mpi/mpi2_init.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_ioc.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_ra.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_raid.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_sas.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_targ.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_tool.h user/hrs/ipv6/sys/dev/mps/mpi/mpi2_type.h user/hrs/ipv6/sys/dev/mps/mps.c user/hrs/ipv6/sys/dev/mps/mps_ioctl.h user/hrs/ipv6/sys/dev/mps/mps_pci.c user/hrs/ipv6/sys/dev/mps/mps_sas.c user/hrs/ipv6/sys/dev/mps/mps_table.c user/hrs/ipv6/sys/dev/mps/mps_user.c user/hrs/ipv6/sys/dev/mps/mpsvar.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_cnfg.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_fc.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_init.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_ioc.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_lan.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_raid.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_sas.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_targ.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_tool.h user/hrs/ipv6/sys/dev/mpt/mpilib/mpi_type.h user/hrs/ipv6/sys/dev/mpt/mpt.c user/hrs/ipv6/sys/dev/mpt/mpt.h user/hrs/ipv6/sys/dev/mpt/mpt_cam.c user/hrs/ipv6/sys/dev/mpt/mpt_pci.c user/hrs/ipv6/sys/dev/mpt/mpt_reg.h user/hrs/ipv6/sys/dev/msk/if_msk.c user/hrs/ipv6/sys/dev/msk/if_mskreg.h user/hrs/ipv6/sys/dev/mvs/mvs.c user/hrs/ipv6/sys/dev/mvs/mvs.h user/hrs/ipv6/sys/dev/mvs/mvs_pci.c user/hrs/ipv6/sys/dev/mvs/mvs_soc.c user/hrs/ipv6/sys/dev/mwl/if_mwl.c user/hrs/ipv6/sys/dev/mwl/if_mwlvar.h user/hrs/ipv6/sys/dev/mwl/mwlhal.c user/hrs/ipv6/sys/dev/mxge/if_mxge.c user/hrs/ipv6/sys/dev/my/if_my.c user/hrs/ipv6/sys/dev/nfe/if_nfe.c user/hrs/ipv6/sys/dev/nge/if_nge.c user/hrs/ipv6/sys/dev/nge/if_ngereg.h user/hrs/ipv6/sys/dev/nmdm/nmdm.c user/hrs/ipv6/sys/dev/null/null.c user/hrs/ipv6/sys/dev/nve/if_nve.c user/hrs/ipv6/sys/dev/nxge/include/xgehal-channel.h user/hrs/ipv6/sys/dev/nxge/include/xgehal-config.h user/hrs/ipv6/sys/dev/nxge/xgehal/xgehal-fifo-fp.c user/hrs/ipv6/sys/dev/ofw/ofw_bus_if.m user/hrs/ipv6/sys/dev/ofw/ofw_bus_subr.c user/hrs/ipv6/sys/dev/ofw/ofw_console.c user/hrs/ipv6/sys/dev/ofw/ofw_fdt.c user/hrs/ipv6/sys/dev/ofw/ofw_iicbus.c user/hrs/ipv6/sys/dev/ofw/openfirm.c user/hrs/ipv6/sys/dev/patm/if_patm_attach.c user/hrs/ipv6/sys/dev/pccard/pccard.c user/hrs/ipv6/sys/dev/pccard/pccardvar.h user/hrs/ipv6/sys/dev/pccbb/pccbb.c user/hrs/ipv6/sys/dev/pccbb/pccbb_isa.c user/hrs/ipv6/sys/dev/pccbb/pccbb_pci.c user/hrs/ipv6/sys/dev/pcf/pcf_ebus.c user/hrs/ipv6/sys/dev/pci/eisa_pci.c user/hrs/ipv6/sys/dev/pci/hostb_pci.c user/hrs/ipv6/sys/dev/pci/isa_pci.c user/hrs/ipv6/sys/dev/pci/pci.c user/hrs/ipv6/sys/dev/pci/pci_if.m user/hrs/ipv6/sys/dev/pci/pci_pci.c user/hrs/ipv6/sys/dev/pci/pci_private.h user/hrs/ipv6/sys/dev/pci/pcireg.h user/hrs/ipv6/sys/dev/pci/pcivar.h user/hrs/ipv6/sys/dev/pci/vga_pci.c user/hrs/ipv6/sys/dev/pcn/if_pcn.c user/hrs/ipv6/sys/dev/ppbus/lpbb.c user/hrs/ipv6/sys/dev/ppbus/lpt.c user/hrs/ipv6/sys/dev/ppbus/ppb_base.c user/hrs/ipv6/sys/dev/ppbus/ppb_msq.c user/hrs/ipv6/sys/dev/ppbus/ppbconf.c user/hrs/ipv6/sys/dev/ppbus/vpo.c user/hrs/ipv6/sys/dev/ppc/ppc.c user/hrs/ipv6/sys/dev/pst/pst-iop.c user/hrs/ipv6/sys/dev/pst/pst-iop.h user/hrs/ipv6/sys/dev/pst/pst-pci.c user/hrs/ipv6/sys/dev/pst/pst-raid.c user/hrs/ipv6/sys/dev/puc/puc.c user/hrs/ipv6/sys/dev/puc/puc_pccard.c user/hrs/ipv6/sys/dev/puc/puc_pci.c user/hrs/ipv6/sys/dev/puc/pucdata.c user/hrs/ipv6/sys/dev/quicc/quicc_bfe_fdt.c user/hrs/ipv6/sys/dev/quicc/quicc_core.c user/hrs/ipv6/sys/dev/ral/rt2560.c user/hrs/ipv6/sys/dev/ral/rt2661.c user/hrs/ipv6/sys/dev/random/harvest.c user/hrs/ipv6/sys/dev/random/nehemiah.c user/hrs/ipv6/sys/dev/random/probe.c user/hrs/ipv6/sys/dev/re/if_re.c user/hrs/ipv6/sys/dev/rndtest/rndtest.c user/hrs/ipv6/sys/dev/rt/if_rt.c user/hrs/ipv6/sys/dev/safe/safe.c user/hrs/ipv6/sys/dev/scc/scc_bfe_ebus.c user/hrs/ipv6/sys/dev/scc/scc_bfe_macio.c user/hrs/ipv6/sys/dev/scc/scc_bfe_quicc.c user/hrs/ipv6/sys/dev/scc/scc_bfe_sbus.c user/hrs/ipv6/sys/dev/scc/scc_core.c user/hrs/ipv6/sys/dev/sdhci/sdhci.c user/hrs/ipv6/sys/dev/sdhci/sdhci.h user/hrs/ipv6/sys/dev/sec/sec.c user/hrs/ipv6/sys/dev/sf/if_sf.c user/hrs/ipv6/sys/dev/sf/if_sfreg.h user/hrs/ipv6/sys/dev/sge/if_sge.c user/hrs/ipv6/sys/dev/siba/siba.c user/hrs/ipv6/sys/dev/siba/siba_bwn.c user/hrs/ipv6/sys/dev/siba/siba_cc.c user/hrs/ipv6/sys/dev/siba/siba_core.c user/hrs/ipv6/sys/dev/siba/siba_pcib.c user/hrs/ipv6/sys/dev/siis/siis.c user/hrs/ipv6/sys/dev/sio/sio.c user/hrs/ipv6/sys/dev/sio/sio_pci.c user/hrs/ipv6/sys/dev/sis/if_sis.c user/hrs/ipv6/sys/dev/sis/if_sisreg.h user/hrs/ipv6/sys/dev/sk/if_sk.c user/hrs/ipv6/sys/dev/smbus/smbus.c user/hrs/ipv6/sys/dev/smc/if_smc.c user/hrs/ipv6/sys/dev/sn/if_sn.c user/hrs/ipv6/sys/dev/snc/dp83932.c user/hrs/ipv6/sys/dev/sound/isa/gusc.c user/hrs/ipv6/sys/dev/sound/isa/sbc.c user/hrs/ipv6/sys/dev/sound/midi/midi.c user/hrs/ipv6/sys/dev/sound/pci/csa.c user/hrs/ipv6/sys/dev/sound/pci/csareg.h user/hrs/ipv6/sys/dev/sound/pci/ds1-fw.h user/hrs/ipv6/sys/dev/sound/pci/emu10k1.c user/hrs/ipv6/sys/dev/sound/pci/emu10kx-midi.c user/hrs/ipv6/sys/dev/sound/pci/emu10kx-pcm.c user/hrs/ipv6/sys/dev/sound/pci/emu10kx.c user/hrs/ipv6/sys/dev/sound/pci/emu10kx.h user/hrs/ipv6/sys/dev/sound/pci/envy24.c user/hrs/ipv6/sys/dev/sound/pci/envy24ht.c user/hrs/ipv6/sys/dev/sound/pci/fm801.c user/hrs/ipv6/sys/dev/sound/pci/hda/hda_reg.h user/hrs/ipv6/sys/dev/sound/pci/hda/hdac.c user/hrs/ipv6/sys/dev/sound/pci/hda/hdac.h user/hrs/ipv6/sys/dev/sound/pci/hda/hdac_private.h user/hrs/ipv6/sys/dev/sound/pci/hda/hdac_reg.h user/hrs/ipv6/sys/dev/sound/pci/maestro.c user/hrs/ipv6/sys/dev/sound/pci/maestro3.c user/hrs/ipv6/sys/dev/sound/pci/spicds.c user/hrs/ipv6/sys/dev/sound/pcm/ac97.c user/hrs/ipv6/sys/dev/sound/pcm/buffer.c user/hrs/ipv6/sys/dev/sound/pcm/buffer.h user/hrs/ipv6/sys/dev/sound/pcm/channel.c user/hrs/ipv6/sys/dev/sound/pcm/dsp.c user/hrs/ipv6/sys/dev/sound/pcm/feeder.c user/hrs/ipv6/sys/dev/sound/pcm/mixer.c user/hrs/ipv6/sys/dev/sound/pcm/sound.c user/hrs/ipv6/sys/dev/sound/usb/uaudio.c user/hrs/ipv6/sys/dev/sound/usb/uaudio.h user/hrs/ipv6/sys/dev/sound/usb/uaudioreg.h user/hrs/ipv6/sys/dev/speaker/spkr.c user/hrs/ipv6/sys/dev/spibus/spibus.c user/hrs/ipv6/sys/dev/spibus/spibusvar.h user/hrs/ipv6/sys/dev/ste/if_ste.c user/hrs/ipv6/sys/dev/ste/if_stereg.h user/hrs/ipv6/sys/dev/stge/if_stge.c user/hrs/ipv6/sys/dev/stge/if_stgereg.h user/hrs/ipv6/sys/dev/sym/sym_hipd.c user/hrs/ipv6/sys/dev/syscons/blank/blank_saver.c user/hrs/ipv6/sys/dev/syscons/fade/fade_saver.c user/hrs/ipv6/sys/dev/syscons/green/green_saver.c user/hrs/ipv6/sys/dev/syscons/logo/logo_saver.c user/hrs/ipv6/sys/dev/syscons/rain/rain_saver.c user/hrs/ipv6/sys/dev/syscons/schistory.c user/hrs/ipv6/sys/dev/syscons/scmouse.c user/hrs/ipv6/sys/dev/syscons/scterm-teken.c user/hrs/ipv6/sys/dev/syscons/snake/snake_saver.c user/hrs/ipv6/sys/dev/syscons/star/star_saver.c user/hrs/ipv6/sys/dev/syscons/syscons.c user/hrs/ipv6/sys/dev/syscons/syscons.h user/hrs/ipv6/sys/dev/syscons/warp/warp_saver.c user/hrs/ipv6/sys/dev/tdfx/tdfx_pci.c user/hrs/ipv6/sys/dev/ti/if_ti.c user/hrs/ipv6/sys/dev/ti/if_tireg.h user/hrs/ipv6/sys/dev/tl/if_tl.c user/hrs/ipv6/sys/dev/tl/if_tlreg.h user/hrs/ipv6/sys/dev/trm/trm.c user/hrs/ipv6/sys/dev/tsec/if_tsec.c user/hrs/ipv6/sys/dev/tsec/if_tsec.h user/hrs/ipv6/sys/dev/tsec/if_tsec_fdt.c user/hrs/ipv6/sys/dev/twa/tw_osl.h user/hrs/ipv6/sys/dev/twa/tw_osl_freebsd.c user/hrs/ipv6/sys/dev/twe/twe_freebsd.c user/hrs/ipv6/sys/dev/uart/uart_bus.h user/hrs/ipv6/sys/dev/uart/uart_bus_fdt.c user/hrs/ipv6/sys/dev/uart/uart_bus_pci.c user/hrs/ipv6/sys/dev/uart/uart_core.c user/hrs/ipv6/sys/dev/uart/uart_cpu_sparc64.c user/hrs/ipv6/sys/dev/uart/uart_dev_ns8250.c user/hrs/ipv6/sys/dev/uart/uart_if.m user/hrs/ipv6/sys/dev/uart/uart_subr.c user/hrs/ipv6/sys/dev/uart/uart_tty.c user/hrs/ipv6/sys/dev/ubsec/ubsec.c user/hrs/ipv6/sys/dev/usb/controller/at91dci.c user/hrs/ipv6/sys/dev/usb/controller/at91dci.h user/hrs/ipv6/sys/dev/usb/controller/at91dci_atmelarm.c user/hrs/ipv6/sys/dev/usb/controller/atmegadci.c user/hrs/ipv6/sys/dev/usb/controller/atmegadci.h user/hrs/ipv6/sys/dev/usb/controller/atmegadci_atmelarm.c user/hrs/ipv6/sys/dev/usb/controller/avr32dci.c user/hrs/ipv6/sys/dev/usb/controller/avr32dci.h user/hrs/ipv6/sys/dev/usb/controller/ehci.c user/hrs/ipv6/sys/dev/usb/controller/ehci.h user/hrs/ipv6/sys/dev/usb/controller/ehci_ixp4xx.c user/hrs/ipv6/sys/dev/usb/controller/ehci_mv.c user/hrs/ipv6/sys/dev/usb/controller/ehci_pci.c user/hrs/ipv6/sys/dev/usb/controller/musb_otg.c user/hrs/ipv6/sys/dev/usb/controller/musb_otg.h user/hrs/ipv6/sys/dev/usb/controller/musb_otg_atmelarm.c user/hrs/ipv6/sys/dev/usb/controller/ohci.c user/hrs/ipv6/sys/dev/usb/controller/ohci.h user/hrs/ipv6/sys/dev/usb/controller/ohci_atmelarm.c user/hrs/ipv6/sys/dev/usb/controller/ohci_pci.c user/hrs/ipv6/sys/dev/usb/controller/ohci_s3c24x0.c user/hrs/ipv6/sys/dev/usb/controller/uhci.c user/hrs/ipv6/sys/dev/usb/controller/uhci.h user/hrs/ipv6/sys/dev/usb/controller/uhci_pci.c user/hrs/ipv6/sys/dev/usb/controller/usb_controller.c user/hrs/ipv6/sys/dev/usb/controller/uss820dci.c user/hrs/ipv6/sys/dev/usb/controller/uss820dci.h user/hrs/ipv6/sys/dev/usb/controller/uss820dci_atmelarm.c user/hrs/ipv6/sys/dev/usb/controller/xhci.c user/hrs/ipv6/sys/dev/usb/controller/xhci.h user/hrs/ipv6/sys/dev/usb/controller/xhci_pci.c user/hrs/ipv6/sys/dev/usb/controller/xhcireg.h user/hrs/ipv6/sys/dev/usb/input/atp.c user/hrs/ipv6/sys/dev/usb/input/uep.c user/hrs/ipv6/sys/dev/usb/input/uhid.c user/hrs/ipv6/sys/dev/usb/input/ukbd.c user/hrs/ipv6/sys/dev/usb/input/ums.c user/hrs/ipv6/sys/dev/usb/misc/udbp.c user/hrs/ipv6/sys/dev/usb/misc/ufm.c user/hrs/ipv6/sys/dev/usb/net/if_aue.c user/hrs/ipv6/sys/dev/usb/net/if_axe.c user/hrs/ipv6/sys/dev/usb/net/if_axereg.h user/hrs/ipv6/sys/dev/usb/net/if_cdce.c user/hrs/ipv6/sys/dev/usb/net/if_cue.c user/hrs/ipv6/sys/dev/usb/net/if_ipheth.c user/hrs/ipv6/sys/dev/usb/net/if_kue.c user/hrs/ipv6/sys/dev/usb/net/if_mos.c user/hrs/ipv6/sys/dev/usb/net/if_mosreg.h user/hrs/ipv6/sys/dev/usb/net/if_rue.c user/hrs/ipv6/sys/dev/usb/net/if_udav.c user/hrs/ipv6/sys/dev/usb/net/if_usie.c user/hrs/ipv6/sys/dev/usb/net/uhso.c user/hrs/ipv6/sys/dev/usb/net/usb_ethernet.c user/hrs/ipv6/sys/dev/usb/net/usb_ethernet.h user/hrs/ipv6/sys/dev/usb/quirk/usb_quirk.c user/hrs/ipv6/sys/dev/usb/serial/u3g.c user/hrs/ipv6/sys/dev/usb/serial/ubsa.c user/hrs/ipv6/sys/dev/usb/serial/ubser.c user/hrs/ipv6/sys/dev/usb/serial/uchcom.c user/hrs/ipv6/sys/dev/usb/serial/ucycom.c user/hrs/ipv6/sys/dev/usb/serial/ufoma.c user/hrs/ipv6/sys/dev/usb/serial/uftdi.c user/hrs/ipv6/sys/dev/usb/serial/ulpt.c user/hrs/ipv6/sys/dev/usb/serial/umcs.c user/hrs/ipv6/sys/dev/usb/serial/umodem.c user/hrs/ipv6/sys/dev/usb/serial/umoscom.c user/hrs/ipv6/sys/dev/usb/serial/uplcom.c user/hrs/ipv6/sys/dev/usb/serial/usb_serial.c user/hrs/ipv6/sys/dev/usb/serial/usb_serial.h user/hrs/ipv6/sys/dev/usb/serial/uslcom.c user/hrs/ipv6/sys/dev/usb/serial/uvisor.c user/hrs/ipv6/sys/dev/usb/serial/uvscom.c user/hrs/ipv6/sys/dev/usb/storage/umass.c user/hrs/ipv6/sys/dev/usb/storage/urio.c user/hrs/ipv6/sys/dev/usb/storage/ustorage_fs.c user/hrs/ipv6/sys/dev/usb/template/usb_template.c user/hrs/ipv6/sys/dev/usb/template/usb_template_kbd.c user/hrs/ipv6/sys/dev/usb/template/usb_template_modem.c user/hrs/ipv6/sys/dev/usb/template/usb_template_mouse.c user/hrs/ipv6/sys/dev/usb/usb.h user/hrs/ipv6/sys/dev/usb/usb_bus.h user/hrs/ipv6/sys/dev/usb/usb_busdma.c user/hrs/ipv6/sys/dev/usb/usb_compat_linux.c user/hrs/ipv6/sys/dev/usb/usb_controller.h user/hrs/ipv6/sys/dev/usb/usb_dev.c user/hrs/ipv6/sys/dev/usb/usb_device.c user/hrs/ipv6/sys/dev/usb/usb_generic.c user/hrs/ipv6/sys/dev/usb/usb_handle_request.c user/hrs/ipv6/sys/dev/usb/usb_hid.c user/hrs/ipv6/sys/dev/usb/usb_hub.c user/hrs/ipv6/sys/dev/usb/usb_if.m user/hrs/ipv6/sys/dev/usb/usb_ioctl.h user/hrs/ipv6/sys/dev/usb/usb_msctest.c user/hrs/ipv6/sys/dev/usb/usb_process.c user/hrs/ipv6/sys/dev/usb/usb_request.c user/hrs/ipv6/sys/dev/usb/usb_request.h user/hrs/ipv6/sys/dev/usb/usb_transfer.c user/hrs/ipv6/sys/dev/usb/usb_transfer.h user/hrs/ipv6/sys/dev/usb/usb_util.c user/hrs/ipv6/sys/dev/usb/usb_util.h user/hrs/ipv6/sys/dev/usb/usbdevs user/hrs/ipv6/sys/dev/usb/usbdi.h user/hrs/ipv6/sys/dev/usb/usbhid.h user/hrs/ipv6/sys/dev/usb/wlan/if_rum.c user/hrs/ipv6/sys/dev/usb/wlan/if_run.c user/hrs/ipv6/sys/dev/usb/wlan/if_uath.c user/hrs/ipv6/sys/dev/usb/wlan/if_upgt.c user/hrs/ipv6/sys/dev/usb/wlan/if_ural.c user/hrs/ipv6/sys/dev/usb/wlan/if_urtw.c user/hrs/ipv6/sys/dev/usb/wlan/if_zyd.c user/hrs/ipv6/sys/dev/vge/if_vge.c user/hrs/ipv6/sys/dev/vkbd/vkbd.c user/hrs/ipv6/sys/dev/vr/if_vr.c user/hrs/ipv6/sys/dev/vr/if_vrreg.h user/hrs/ipv6/sys/dev/vte/if_vte.c user/hrs/ipv6/sys/dev/vx/if_vx.c user/hrs/ipv6/sys/dev/vxge/include/vxgehal-config.h user/hrs/ipv6/sys/dev/vxge/include/vxgehal-ll.h user/hrs/ipv6/sys/dev/vxge/vxge-osdep.h user/hrs/ipv6/sys/dev/vxge/vxge.c user/hrs/ipv6/sys/dev/vxge/vxgehal/vxgehal-ring.c user/hrs/ipv6/sys/dev/wb/if_wb.c user/hrs/ipv6/sys/dev/wb/if_wbreg.h user/hrs/ipv6/sys/dev/wds/wd7000.c user/hrs/ipv6/sys/dev/wi/if_wi.c user/hrs/ipv6/sys/dev/wpi/if_wpi.c user/hrs/ipv6/sys/dev/xe/if_xe.c user/hrs/ipv6/sys/dev/xen/balloon/balloon.c user/hrs/ipv6/sys/dev/xen/blkback/blkback.c user/hrs/ipv6/sys/dev/xen/blkfront/blkfront.c user/hrs/ipv6/sys/dev/xen/blkfront/block.h user/hrs/ipv6/sys/dev/xen/console/console.c user/hrs/ipv6/sys/dev/xen/control/control.c user/hrs/ipv6/sys/dev/xen/netback/netback.c user/hrs/ipv6/sys/dev/xen/netfront/netfront.c user/hrs/ipv6/sys/dev/xen/pcifront/pcifront.c user/hrs/ipv6/sys/dev/xen/xenpci/evtchn.c user/hrs/ipv6/sys/dev/xl/if_xl.c user/hrs/ipv6/sys/dev/xl/if_xlreg.h user/hrs/ipv6/sys/fs/cd9660/cd9660_vfsops.c user/hrs/ipv6/sys/fs/cd9660/cd9660_vnops.c user/hrs/ipv6/sys/fs/coda/coda_subr.c user/hrs/ipv6/sys/fs/devfs/devfs.h user/hrs/ipv6/sys/fs/devfs/devfs_devs.c user/hrs/ipv6/sys/fs/devfs/devfs_rule.c user/hrs/ipv6/sys/fs/devfs/devfs_vfsops.c user/hrs/ipv6/sys/fs/devfs/devfs_vnops.c user/hrs/ipv6/sys/fs/ext2fs/ext2_alloc.c user/hrs/ipv6/sys/fs/ext2fs/ext2_balloc.c user/hrs/ipv6/sys/fs/ext2fs/ext2_bmap.c user/hrs/ipv6/sys/fs/ext2fs/ext2_dinode.h user/hrs/ipv6/sys/fs/ext2fs/ext2_extern.h user/hrs/ipv6/sys/fs/ext2fs/ext2_inode.c user/hrs/ipv6/sys/fs/ext2fs/ext2_inode_cnv.c user/hrs/ipv6/sys/fs/ext2fs/ext2_lookup.c user/hrs/ipv6/sys/fs/ext2fs/ext2_subr.c user/hrs/ipv6/sys/fs/ext2fs/ext2_vfsops.c user/hrs/ipv6/sys/fs/ext2fs/ext2_vnops.c user/hrs/ipv6/sys/fs/ext2fs/ext2fs.h user/hrs/ipv6/sys/fs/ext2fs/fs.h user/hrs/ipv6/sys/fs/ext2fs/inode.h user/hrs/ipv6/sys/fs/fdescfs/fdesc_vfsops.c user/hrs/ipv6/sys/fs/fifofs/fifo_vnops.c user/hrs/ipv6/sys/fs/hpfs/hpfs_vfsops.c user/hrs/ipv6/sys/fs/msdosfs/msdosfs_conv.c user/hrs/ipv6/sys/fs/msdosfs/msdosfs_denode.c user/hrs/ipv6/sys/fs/msdosfs/msdosfs_fat.c user/hrs/ipv6/sys/fs/msdosfs/msdosfs_lookup.c user/hrs/ipv6/sys/fs/msdosfs/msdosfs_vfsops.c user/hrs/ipv6/sys/fs/msdosfs/msdosfs_vnops.c user/hrs/ipv6/sys/fs/nfs/nfs_commonkrpc.c user/hrs/ipv6/sys/fs/nfs/nfs_commonport.c user/hrs/ipv6/sys/fs/nfs/nfs_commonsubs.c user/hrs/ipv6/sys/fs/nfs/nfs_var.h user/hrs/ipv6/sys/fs/nfs/nfsclstate.h user/hrs/ipv6/sys/fs/nfs/nfsport.h user/hrs/ipv6/sys/fs/nfsclient/nfs_clbio.c user/hrs/ipv6/sys/fs/nfsclient/nfs_clkrpc.c user/hrs/ipv6/sys/fs/nfsclient/nfs_clnode.c user/hrs/ipv6/sys/fs/nfsclient/nfs_clport.c user/hrs/ipv6/sys/fs/nfsclient/nfs_clrpcops.c user/hrs/ipv6/sys/fs/nfsclient/nfs_clstate.c user/hrs/ipv6/sys/fs/nfsclient/nfs_clsubs.c user/hrs/ipv6/sys/fs/nfsclient/nfs_clvfsops.c user/hrs/ipv6/sys/fs/nfsclient/nfs_clvnops.c user/hrs/ipv6/sys/fs/nfsclient/nfsmount.h user/hrs/ipv6/sys/fs/nfsclient/nfsnode.h user/hrs/ipv6/sys/fs/nfsserver/nfs_nfsdcache.c user/hrs/ipv6/sys/fs/nfsserver/nfs_nfsdport.c user/hrs/ipv6/sys/fs/nfsserver/nfs_nfsdstate.c user/hrs/ipv6/sys/fs/nfsserver/nfs_nfsdsubs.c user/hrs/ipv6/sys/fs/ntfs/ntfs.h user/hrs/ipv6/sys/fs/ntfs/ntfs_compr.c user/hrs/ipv6/sys/fs/ntfs/ntfs_subr.c user/hrs/ipv6/sys/fs/ntfs/ntfs_subr.h user/hrs/ipv6/sys/fs/ntfs/ntfs_vfsops.c user/hrs/ipv6/sys/fs/ntfs/ntfs_vnops.c user/hrs/ipv6/sys/fs/nullfs/null_subr.c user/hrs/ipv6/sys/fs/nullfs/null_vfsops.c user/hrs/ipv6/sys/fs/nullfs/null_vnops.c user/hrs/ipv6/sys/fs/nwfs/nwfs_io.c user/hrs/ipv6/sys/fs/nwfs/nwfs_mount.h user/hrs/ipv6/sys/fs/nwfs/nwfs_vfsops.c user/hrs/ipv6/sys/fs/nwfs/nwfs_vnops.c user/hrs/ipv6/sys/fs/portalfs/portal_vfsops.c user/hrs/ipv6/sys/fs/portalfs/portal_vnops.c user/hrs/ipv6/sys/fs/procfs/procfs.c user/hrs/ipv6/sys/fs/procfs/procfs_ctl.c user/hrs/ipv6/sys/fs/procfs/procfs_ioctl.c user/hrs/ipv6/sys/fs/procfs/procfs_status.c user/hrs/ipv6/sys/fs/pseudofs/pseudofs.c user/hrs/ipv6/sys/fs/pseudofs/pseudofs.h user/hrs/ipv6/sys/fs/pseudofs/pseudofs_fileno.c user/hrs/ipv6/sys/fs/pseudofs/pseudofs_internal.h user/hrs/ipv6/sys/fs/pseudofs/pseudofs_vncache.c user/hrs/ipv6/sys/fs/pseudofs/pseudofs_vnops.c user/hrs/ipv6/sys/fs/smbfs/smbfs.h user/hrs/ipv6/sys/fs/smbfs/smbfs_io.c user/hrs/ipv6/sys/fs/smbfs/smbfs_node.c user/hrs/ipv6/sys/fs/smbfs/smbfs_smb.c user/hrs/ipv6/sys/fs/smbfs/smbfs_subr.c user/hrs/ipv6/sys/fs/smbfs/smbfs_vfsops.c user/hrs/ipv6/sys/fs/smbfs/smbfs_vnops.c user/hrs/ipv6/sys/fs/tmpfs/tmpfs.h user/hrs/ipv6/sys/fs/tmpfs/tmpfs_subr.c user/hrs/ipv6/sys/fs/tmpfs/tmpfs_vfsops.c user/hrs/ipv6/sys/fs/tmpfs/tmpfs_vnops.c user/hrs/ipv6/sys/fs/udf/udf_vnops.c user/hrs/ipv6/sys/fs/unionfs/union_subr.c user/hrs/ipv6/sys/fs/unionfs/union_vfsops.c user/hrs/ipv6/sys/fs/unionfs/union_vnops.c user/hrs/ipv6/sys/gdb/gdb_cons.c user/hrs/ipv6/sys/gdb/gdb_main.c user/hrs/ipv6/sys/geom/cache/g_cache.c user/hrs/ipv6/sys/geom/concat/g_concat.c user/hrs/ipv6/sys/geom/concat/g_concat.h user/hrs/ipv6/sys/geom/eli/g_eli.c user/hrs/ipv6/sys/geom/eli/g_eli.h user/hrs/ipv6/sys/geom/gate/g_gate.c user/hrs/ipv6/sys/geom/geom_bsd.c user/hrs/ipv6/sys/geom/geom_disk.c user/hrs/ipv6/sys/geom/geom_event.c user/hrs/ipv6/sys/geom/geom_mbr.c user/hrs/ipv6/sys/geom/geom_pc98.c user/hrs/ipv6/sys/geom/geom_vfs.c user/hrs/ipv6/sys/geom/journal/g_journal.c user/hrs/ipv6/sys/geom/mirror/g_mirror.c user/hrs/ipv6/sys/geom/mountver/g_mountver.c user/hrs/ipv6/sys/geom/multipath/g_multipath.c user/hrs/ipv6/sys/geom/multipath/g_multipath.h user/hrs/ipv6/sys/geom/nop/g_nop.c user/hrs/ipv6/sys/geom/part/g_part.c user/hrs/ipv6/sys/geom/part/g_part.h user/hrs/ipv6/sys/geom/part/g_part_apm.c user/hrs/ipv6/sys/geom/part/g_part_bsd.c user/hrs/ipv6/sys/geom/part/g_part_ebr.c user/hrs/ipv6/sys/geom/part/g_part_gpt.c user/hrs/ipv6/sys/geom/part/g_part_mbr.c user/hrs/ipv6/sys/geom/part/g_part_vtoc8.c user/hrs/ipv6/sys/geom/raid/md_intel.c user/hrs/ipv6/sys/geom/raid/md_nvidia.c user/hrs/ipv6/sys/geom/raid/md_promise.c user/hrs/ipv6/sys/geom/raid/tr_raid1.c user/hrs/ipv6/sys/geom/raid/tr_raid1e.c user/hrs/ipv6/sys/geom/raid3/g_raid3.c user/hrs/ipv6/sys/geom/sched/gs_rr.c user/hrs/ipv6/sys/geom/shsec/g_shsec.c user/hrs/ipv6/sys/geom/stripe/g_stripe.c user/hrs/ipv6/sys/geom/uzip/g_uzip.c user/hrs/ipv6/sys/geom/vinum/geom_vinum.c user/hrs/ipv6/sys/geom/virstor/g_virstor.c user/hrs/ipv6/sys/geom/zero/g_zero.c user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_fs.h user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_fs_i.h user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_fs_sb.h user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_hashes.c user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_inode.c user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_item_ops.c user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_mount.h user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_namei.c user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_prints.c user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_stree.c user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_vfsops.c user/hrs/ipv6/sys/gnu/fs/reiserfs/reiserfs_vnops.c user/hrs/ipv6/sys/gnu/fs/xfs/FreeBSD/support/debug.c user/hrs/ipv6/sys/gnu/fs/xfs/FreeBSD/xfs_mountops.c user/hrs/ipv6/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c user/hrs/ipv6/sys/gnu/fs/xfs/xfs_vfsops.c user/hrs/ipv6/sys/i386/acpica/acpi_wakeup.c user/hrs/ipv6/sys/i386/conf/GENERIC user/hrs/ipv6/sys/i386/conf/GENERIC.hints user/hrs/ipv6/sys/i386/conf/NOTES user/hrs/ipv6/sys/i386/conf/PAE user/hrs/ipv6/sys/i386/conf/XBOX user/hrs/ipv6/sys/i386/conf/XEN user/hrs/ipv6/sys/i386/i386/exception.s user/hrs/ipv6/sys/i386/i386/identcpu.c user/hrs/ipv6/sys/i386/i386/initcpu.c user/hrs/ipv6/sys/i386/i386/locore.s user/hrs/ipv6/sys/i386/i386/machdep.c user/hrs/ipv6/sys/i386/i386/mp_machdep.c user/hrs/ipv6/sys/i386/i386/pmap.c user/hrs/ipv6/sys/i386/i386/sys_machdep.c user/hrs/ipv6/sys/i386/i386/trap.c user/hrs/ipv6/sys/i386/i386/vm86.c user/hrs/ipv6/sys/i386/ibcs2/coff.h user/hrs/ipv6/sys/i386/ibcs2/ibcs2_fcntl.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_ioctl.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_ipc.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_isc.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_isc_sysent.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_misc.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_other.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_proto.h user/hrs/ipv6/sys/i386/ibcs2/ibcs2_signal.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_socksys.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_stat.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_syscall.h user/hrs/ipv6/sys/i386/ibcs2/ibcs2_sysent.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_sysi86.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_xenix.c user/hrs/ipv6/sys/i386/ibcs2/ibcs2_xenix.h user/hrs/ipv6/sys/i386/ibcs2/ibcs2_xenix_sysent.c user/hrs/ipv6/sys/i386/ibcs2/imgact_coff.c user/hrs/ipv6/sys/i386/ibcs2/syscalls.master user/hrs/ipv6/sys/i386/include/_limits.h user/hrs/ipv6/sys/i386/include/_stdint.h user/hrs/ipv6/sys/i386/include/_types.h user/hrs/ipv6/sys/i386/include/apicvar.h user/hrs/ipv6/sys/i386/include/asm.h user/hrs/ipv6/sys/i386/include/endian.h user/hrs/ipv6/sys/i386/include/float.h user/hrs/ipv6/sys/i386/include/ieeefp.h user/hrs/ipv6/sys/i386/include/intr_machdep.h user/hrs/ipv6/sys/i386/include/npx.h user/hrs/ipv6/sys/i386/include/pcaudioio.h user/hrs/ipv6/sys/i386/include/pmc_mdep.h user/hrs/ipv6/sys/i386/include/proc.h user/hrs/ipv6/sys/i386/include/psl.h user/hrs/ipv6/sys/i386/include/ptrace.h user/hrs/ipv6/sys/i386/include/reg.h user/hrs/ipv6/sys/i386/include/segments.h user/hrs/ipv6/sys/i386/include/setjmp.h user/hrs/ipv6/sys/i386/include/signal.h user/hrs/ipv6/sys/i386/include/specialreg.h user/hrs/ipv6/sys/i386/include/stdarg.h user/hrs/ipv6/sys/i386/include/sysarch.h user/hrs/ipv6/sys/i386/include/trap.h user/hrs/ipv6/sys/i386/include/ucontext.h user/hrs/ipv6/sys/i386/include/vm.h user/hrs/ipv6/sys/i386/include/vmparam.h user/hrs/ipv6/sys/i386/include/xen/xenpmap.h user/hrs/ipv6/sys/i386/include/xen/xenvar.h user/hrs/ipv6/sys/i386/isa/npx.c user/hrs/ipv6/sys/i386/linux/imgact_linux.c user/hrs/ipv6/sys/i386/linux/linux.h user/hrs/ipv6/sys/i386/linux/linux_dummy.c user/hrs/ipv6/sys/i386/linux/linux_machdep.c user/hrs/ipv6/sys/i386/linux/linux_proto.h user/hrs/ipv6/sys/i386/linux/linux_syscall.h user/hrs/ipv6/sys/i386/linux/linux_syscalls.c user/hrs/ipv6/sys/i386/linux/linux_sysent.c user/hrs/ipv6/sys/i386/linux/linux_systrace_args.c user/hrs/ipv6/sys/i386/linux/linux_sysvec.c user/hrs/ipv6/sys/i386/linux/syscalls.master user/hrs/ipv6/sys/i386/xbox/xboxfb.c user/hrs/ipv6/sys/i386/xen/mp_machdep.c user/hrs/ipv6/sys/i386/xen/pmap.c user/hrs/ipv6/sys/ia64/conf/GENERIC user/hrs/ipv6/sys/ia64/conf/SKI user/hrs/ipv6/sys/ia64/ia32/ia32_reg.c user/hrs/ipv6/sys/ia64/ia32/ia32_signal.c user/hrs/ipv6/sys/ia64/ia32/ia32_trap.c user/hrs/ipv6/sys/ia64/ia64/busdma_machdep.c user/hrs/ipv6/sys/ia64/ia64/machdep.c user/hrs/ipv6/sys/ia64/ia64/mca.c user/hrs/ipv6/sys/ia64/ia64/pmap.c user/hrs/ipv6/sys/ia64/ia64/sapic.c user/hrs/ipv6/sys/ia64/ia64/ssc.c user/hrs/ipv6/sys/ia64/ia64/sscdisk.c user/hrs/ipv6/sys/ia64/ia64/trap.c user/hrs/ipv6/sys/ia64/ia64/uma_machdep.c user/hrs/ipv6/sys/ia64/ia64/unwind.c user/hrs/ipv6/sys/ia64/ia64/vm_machdep.c user/hrs/ipv6/sys/ia64/include/_types.h user/hrs/ipv6/sys/ia64/include/float.h user/hrs/ipv6/sys/ia64/include/ieeefp.h user/hrs/ipv6/sys/ia64/include/proc.h user/hrs/ipv6/sys/ia64/include/reg.h user/hrs/ipv6/sys/isa/vga_isa.c user/hrs/ipv6/sys/kern/imgact_elf.c user/hrs/ipv6/sys/kern/imgact_gzip.c user/hrs/ipv6/sys/kern/init_main.c user/hrs/ipv6/sys/kern/init_sysent.c user/hrs/ipv6/sys/kern/kern_acct.c user/hrs/ipv6/sys/kern/kern_clock.c user/hrs/ipv6/sys/kern/kern_clocksource.c user/hrs/ipv6/sys/kern/kern_conf.c user/hrs/ipv6/sys/kern/kern_cons.c user/hrs/ipv6/sys/kern/kern_context.c user/hrs/ipv6/sys/kern/kern_cpu.c user/hrs/ipv6/sys/kern/kern_cpuset.c user/hrs/ipv6/sys/kern/kern_ctf.c user/hrs/ipv6/sys/kern/kern_descrip.c user/hrs/ipv6/sys/kern/kern_dtrace.c user/hrs/ipv6/sys/kern/kern_environment.c user/hrs/ipv6/sys/kern/kern_et.c user/hrs/ipv6/sys/kern/kern_event.c user/hrs/ipv6/sys/kern/kern_exec.c user/hrs/ipv6/sys/kern/kern_exit.c user/hrs/ipv6/sys/kern/kern_fail.c user/hrs/ipv6/sys/kern/kern_fork.c user/hrs/ipv6/sys/kern/kern_gzio.c user/hrs/ipv6/sys/kern/kern_intr.c user/hrs/ipv6/sys/kern/kern_jail.c user/hrs/ipv6/sys/kern/kern_kthread.c user/hrs/ipv6/sys/kern/kern_ktr.c user/hrs/ipv6/sys/kern/kern_ktrace.c user/hrs/ipv6/sys/kern/kern_linker.c user/hrs/ipv6/sys/kern/kern_lock.c user/hrs/ipv6/sys/kern/kern_lockf.c user/hrs/ipv6/sys/kern/kern_loginclass.c user/hrs/ipv6/sys/kern/kern_malloc.c user/hrs/ipv6/sys/kern/kern_module.c user/hrs/ipv6/sys/kern/kern_mutex.c user/hrs/ipv6/sys/kern/kern_ntptime.c user/hrs/ipv6/sys/kern/kern_pmc.c user/hrs/ipv6/sys/kern/kern_poll.c user/hrs/ipv6/sys/kern/kern_proc.c user/hrs/ipv6/sys/kern/kern_prot.c user/hrs/ipv6/sys/kern/kern_racct.c user/hrs/ipv6/sys/kern/kern_rctl.c user/hrs/ipv6/sys/kern/kern_resource.c user/hrs/ipv6/sys/kern/kern_rmlock.c user/hrs/ipv6/sys/kern/kern_rwlock.c user/hrs/ipv6/sys/kern/kern_sdt.c user/hrs/ipv6/sys/kern/kern_shutdown.c user/hrs/ipv6/sys/kern/kern_sig.c user/hrs/ipv6/sys/kern/kern_switch.c user/hrs/ipv6/sys/kern/kern_sx.c user/hrs/ipv6/sys/kern/kern_synch.c user/hrs/ipv6/sys/kern/kern_sysctl.c user/hrs/ipv6/sys/kern/kern_tc.c user/hrs/ipv6/sys/kern/kern_thr.c user/hrs/ipv6/sys/kern/kern_thread.c user/hrs/ipv6/sys/kern/kern_time.c user/hrs/ipv6/sys/kern/kern_timeout.c user/hrs/ipv6/sys/kern/kern_umtx.c user/hrs/ipv6/sys/kern/kern_uuid.c user/hrs/ipv6/sys/kern/link_elf.c user/hrs/ipv6/sys/kern/link_elf_obj.c user/hrs/ipv6/sys/kern/makesyscalls.sh user/hrs/ipv6/sys/kern/p1003_1b.c user/hrs/ipv6/sys/kern/sched_4bsd.c user/hrs/ipv6/sys/kern/sched_ule.c user/hrs/ipv6/sys/kern/subr_acl_nfs4.c user/hrs/ipv6/sys/kern/subr_acl_posix1e.c user/hrs/ipv6/sys/kern/subr_blist.c user/hrs/ipv6/sys/kern/subr_bus.c user/hrs/ipv6/sys/kern/subr_devstat.c user/hrs/ipv6/sys/kern/subr_firmware.c user/hrs/ipv6/sys/kern/subr_hash.c user/hrs/ipv6/sys/kern/subr_hints.c user/hrs/ipv6/sys/kern/subr_kdb.c user/hrs/ipv6/sys/kern/subr_kobj.c user/hrs/ipv6/sys/kern/subr_lock.c user/hrs/ipv6/sys/kern/subr_log.c user/hrs/ipv6/sys/kern/subr_mchain.c user/hrs/ipv6/sys/kern/subr_msgbuf.c user/hrs/ipv6/sys/kern/subr_pcpu.c user/hrs/ipv6/sys/kern/subr_prf.c user/hrs/ipv6/sys/kern/subr_prof.c user/hrs/ipv6/sys/kern/subr_rman.c user/hrs/ipv6/sys/kern/subr_rtc.c user/hrs/ipv6/sys/kern/subr_scanf.c user/hrs/ipv6/sys/kern/subr_sleepqueue.c user/hrs/ipv6/sys/kern/subr_smp.c user/hrs/ipv6/sys/kern/subr_stack.c user/hrs/ipv6/sys/kern/subr_taskqueue.c user/hrs/ipv6/sys/kern/subr_trap.c user/hrs/ipv6/sys/kern/subr_turnstile.c user/hrs/ipv6/sys/kern/subr_uio.c user/hrs/ipv6/sys/kern/subr_witness.c user/hrs/ipv6/sys/kern/sys_capability.c user/hrs/ipv6/sys/kern/sys_generic.c user/hrs/ipv6/sys/kern/sys_pipe.c user/hrs/ipv6/sys/kern/sys_procdesc.c user/hrs/ipv6/sys/kern/sys_process.c user/hrs/ipv6/sys/kern/syscalls.c user/hrs/ipv6/sys/kern/syscalls.master user/hrs/ipv6/sys/kern/systrace_args.c user/hrs/ipv6/sys/kern/sysv_msg.c user/hrs/ipv6/sys/kern/sysv_sem.c user/hrs/ipv6/sys/kern/sysv_shm.c user/hrs/ipv6/sys/kern/tty.c user/hrs/ipv6/sys/kern/tty_info.c user/hrs/ipv6/sys/kern/tty_inq.c user/hrs/ipv6/sys/kern/tty_pts.c user/hrs/ipv6/sys/kern/tty_ttydisc.c user/hrs/ipv6/sys/kern/uipc_domain.c user/hrs/ipv6/sys/kern/uipc_mbuf.c user/hrs/ipv6/sys/kern/uipc_mqueue.c user/hrs/ipv6/sys/kern/uipc_sem.c user/hrs/ipv6/sys/kern/uipc_shm.c user/hrs/ipv6/sys/kern/uipc_sockbuf.c user/hrs/ipv6/sys/kern/uipc_socket.c user/hrs/ipv6/sys/kern/uipc_syscalls.c user/hrs/ipv6/sys/kern/uipc_usrreq.c user/hrs/ipv6/sys/kern/vfs_acl.c user/hrs/ipv6/sys/kern/vfs_aio.c user/hrs/ipv6/sys/kern/vfs_bio.c user/hrs/ipv6/sys/kern/vfs_cache.c user/hrs/ipv6/sys/kern/vfs_cluster.c user/hrs/ipv6/sys/kern/vfs_default.c user/hrs/ipv6/sys/kern/vfs_extattr.c user/hrs/ipv6/sys/kern/vfs_init.c user/hrs/ipv6/sys/kern/vfs_lookup.c user/hrs/ipv6/sys/kern/vfs_mount.c user/hrs/ipv6/sys/kern/vfs_mountroot.c user/hrs/ipv6/sys/kern/vfs_subr.c user/hrs/ipv6/sys/kern/vfs_syscalls.c user/hrs/ipv6/sys/kern/vfs_vnops.c user/hrs/ipv6/sys/kern/vnode_if.src user/hrs/ipv6/sys/kgssapi/gss_impl.c user/hrs/ipv6/sys/kgssapi/krb5/krb5_mech.c user/hrs/ipv6/sys/libkern/crc32.c user/hrs/ipv6/sys/libkern/fnmatch.c user/hrs/ipv6/sys/libkern/iconv.c user/hrs/ipv6/sys/mips/adm5120/adm5120_machdep.c user/hrs/ipv6/sys/mips/adm5120/admpci.c user/hrs/ipv6/sys/mips/adm5120/console.c user/hrs/ipv6/sys/mips/adm5120/std.adm5120 user/hrs/ipv6/sys/mips/alchemy/alchemy_machdep.c user/hrs/ipv6/sys/mips/alchemy/std.alchemy user/hrs/ipv6/sys/mips/atheros/apb.c user/hrs/ipv6/sys/mips/atheros/ar71xx_chip.c user/hrs/ipv6/sys/mips/atheros/ar71xx_chip.h user/hrs/ipv6/sys/mips/atheros/ar71xx_cpudef.h user/hrs/ipv6/sys/mips/atheros/ar71xx_ehci.c user/hrs/ipv6/sys/mips/atheros/ar71xx_gpio.c user/hrs/ipv6/sys/mips/atheros/ar71xx_machdep.c user/hrs/ipv6/sys/mips/atheros/ar71xx_ohci.c user/hrs/ipv6/sys/mips/atheros/ar71xx_pci.c user/hrs/ipv6/sys/mips/atheros/ar71xxreg.h user/hrs/ipv6/sys/mips/atheros/ar724x_chip.c user/hrs/ipv6/sys/mips/atheros/ar724x_pci.c user/hrs/ipv6/sys/mips/atheros/ar91xx_chip.c user/hrs/ipv6/sys/mips/atheros/files.ar71xx user/hrs/ipv6/sys/mips/atheros/if_arge.c user/hrs/ipv6/sys/mips/atheros/std.ar71xx user/hrs/ipv6/sys/mips/cavium/asm_octeon.S user/hrs/ipv6/sys/mips/cavium/ciu.c user/hrs/ipv6/sys/mips/cavium/cryptocteon/cavium_crypto.c user/hrs/ipv6/sys/mips/cavium/cvmx_config.h user/hrs/ipv6/sys/mips/cavium/files.octeon1 user/hrs/ipv6/sys/mips/cavium/if_octm.c user/hrs/ipv6/sys/mips/cavium/obio.c user/hrs/ipv6/sys/mips/cavium/octe/ethernet-common.c user/hrs/ipv6/sys/mips/cavium/octe/ethernet-common.h user/hrs/ipv6/sys/mips/cavium/octe/ethernet-rgmii.c user/hrs/ipv6/sys/mips/cavium/octe/ethernet-rx.c user/hrs/ipv6/sys/mips/cavium/octe/ethernet-sgmii.c user/hrs/ipv6/sys/mips/cavium/octe/ethernet-spi.c user/hrs/ipv6/sys/mips/cavium/octe/ethernet-xaui.c user/hrs/ipv6/sys/mips/cavium/octe/ethernet.c user/hrs/ipv6/sys/mips/cavium/octe/wrapper-cvmx-includes.h user/hrs/ipv6/sys/mips/cavium/octeon_ds1337.c user/hrs/ipv6/sys/mips/cavium/octeon_ebt3000_cf.c user/hrs/ipv6/sys/mips/cavium/octeon_machdep.c user/hrs/ipv6/sys/mips/cavium/octeon_mp.c user/hrs/ipv6/sys/mips/cavium/octeon_pcmap_regs.h user/hrs/ipv6/sys/mips/cavium/octeon_wdog.c user/hrs/ipv6/sys/mips/cavium/octopci.c user/hrs/ipv6/sys/mips/cavium/octopci_bus_space.c user/hrs/ipv6/sys/mips/cavium/std.octeon1 user/hrs/ipv6/sys/mips/cavium/uart_dev_oct16550.c user/hrs/ipv6/sys/mips/cavium/usb/octusb.c user/hrs/ipv6/sys/mips/cavium/usb/octusb.h user/hrs/ipv6/sys/mips/cavium/usb/octusb_octeon.c user/hrs/ipv6/sys/mips/conf/AR91XX_BASE user/hrs/ipv6/sys/mips/conf/AR91XX_BASE.hints user/hrs/ipv6/sys/mips/conf/MALTA user/hrs/ipv6/sys/mips/conf/MALTA64 user/hrs/ipv6/sys/mips/conf/OCTEON1 user/hrs/ipv6/sys/mips/conf/PB92 user/hrs/ipv6/sys/mips/conf/RT305X user/hrs/ipv6/sys/mips/conf/SWARM user/hrs/ipv6/sys/mips/conf/SWARM64 user/hrs/ipv6/sys/mips/conf/SWARM64_SMP user/hrs/ipv6/sys/mips/conf/SWARM_SMP user/hrs/ipv6/sys/mips/conf/TP-WN1043ND user/hrs/ipv6/sys/mips/conf/TP-WN1043ND.hints user/hrs/ipv6/sys/mips/conf/XLP user/hrs/ipv6/sys/mips/conf/XLP64 user/hrs/ipv6/sys/mips/conf/XLPN32 user/hrs/ipv6/sys/mips/conf/XLR user/hrs/ipv6/sys/mips/conf/XLR64 user/hrs/ipv6/sys/mips/conf/XLRN32 user/hrs/ipv6/sys/mips/idt/idt_machdep.c user/hrs/ipv6/sys/mips/idt/idtpci.c user/hrs/ipv6/sys/mips/idt/if_kr.c user/hrs/ipv6/sys/mips/idt/std.idt user/hrs/ipv6/sys/mips/include/_bus.h user/hrs/ipv6/sys/mips/include/_stdint.h user/hrs/ipv6/sys/mips/include/_types.h user/hrs/ipv6/sys/mips/include/asm.h user/hrs/ipv6/sys/mips/include/bus.h user/hrs/ipv6/sys/mips/include/cache.h user/hrs/ipv6/sys/mips/include/cpu.h user/hrs/ipv6/sys/mips/include/cpufunc.h user/hrs/ipv6/sys/mips/include/cpuregs.h user/hrs/ipv6/sys/mips/include/db_machdep.h user/hrs/ipv6/sys/mips/include/elf.h user/hrs/ipv6/sys/mips/include/float.h user/hrs/ipv6/sys/mips/include/frame.h user/hrs/ipv6/sys/mips/include/hwfunc.h user/hrs/ipv6/sys/mips/include/ieeefp.h user/hrs/ipv6/sys/mips/include/intr_machdep.h user/hrs/ipv6/sys/mips/include/locore.h user/hrs/ipv6/sys/mips/include/md_var.h user/hrs/ipv6/sys/mips/include/mips_opcode.h user/hrs/ipv6/sys/mips/include/param.h user/hrs/ipv6/sys/mips/include/pmap.h user/hrs/ipv6/sys/mips/include/pmc_mdep.h user/hrs/ipv6/sys/mips/include/proc.h user/hrs/ipv6/sys/mips/include/reg.h user/hrs/ipv6/sys/mips/include/sigframe.h user/hrs/ipv6/sys/mips/include/trap.h user/hrs/ipv6/sys/mips/include/ucontext.h user/hrs/ipv6/sys/mips/include/vm.h user/hrs/ipv6/sys/mips/include/vmparam.h user/hrs/ipv6/sys/mips/malta/gt.c user/hrs/ipv6/sys/mips/malta/gt_pci.c user/hrs/ipv6/sys/mips/malta/malta_machdep.c user/hrs/ipv6/sys/mips/malta/std.malta user/hrs/ipv6/sys/mips/mips/bus_space_generic.c user/hrs/ipv6/sys/mips/mips/busdma_machdep.c user/hrs/ipv6/sys/mips/mips/cache.c user/hrs/ipv6/sys/mips/mips/cache_mipsNN.c user/hrs/ipv6/sys/mips/mips/cpu.c user/hrs/ipv6/sys/mips/mips/db_disasm.c user/hrs/ipv6/sys/mips/mips/db_trace.c user/hrs/ipv6/sys/mips/mips/elf_machdep.c user/hrs/ipv6/sys/mips/mips/exception.S user/hrs/ipv6/sys/mips/mips/gdb_machdep.c user/hrs/ipv6/sys/mips/mips/genassym.c user/hrs/ipv6/sys/mips/mips/intr_machdep.c user/hrs/ipv6/sys/mips/mips/locore.S user/hrs/ipv6/sys/mips/mips/machdep.c user/hrs/ipv6/sys/mips/mips/mem.c user/hrs/ipv6/sys/mips/mips/mpboot.S user/hrs/ipv6/sys/mips/mips/nexus.c user/hrs/ipv6/sys/mips/mips/pm_machdep.c user/hrs/ipv6/sys/mips/mips/pmap.c user/hrs/ipv6/sys/mips/mips/support.S user/hrs/ipv6/sys/mips/mips/swtch.S user/hrs/ipv6/sys/mips/mips/sys_machdep.c user/hrs/ipv6/sys/mips/mips/tick.c user/hrs/ipv6/sys/mips/mips/trap.c user/hrs/ipv6/sys/mips/mips/vm_machdep.c user/hrs/ipv6/sys/mips/nlm/board.c user/hrs/ipv6/sys/mips/nlm/board.h user/hrs/ipv6/sys/mips/nlm/bus_space_rmi.c user/hrs/ipv6/sys/mips/nlm/cms.c user/hrs/ipv6/sys/mips/nlm/files.xlp user/hrs/ipv6/sys/mips/nlm/hal/bridge.h user/hrs/ipv6/sys/mips/nlm/hal/cop2.h user/hrs/ipv6/sys/mips/nlm/hal/cpucontrol.h user/hrs/ipv6/sys/mips/nlm/hal/fmn.c user/hrs/ipv6/sys/mips/nlm/hal/fmn.h user/hrs/ipv6/sys/mips/nlm/hal/haldefs.h user/hrs/ipv6/sys/mips/nlm/hal/iomap.h user/hrs/ipv6/sys/mips/nlm/hal/mips-extns.h user/hrs/ipv6/sys/mips/nlm/hal/mmu.h user/hrs/ipv6/sys/mips/nlm/hal/pcibus.h user/hrs/ipv6/sys/mips/nlm/hal/pic.h user/hrs/ipv6/sys/mips/nlm/hal/sys.h user/hrs/ipv6/sys/mips/nlm/hal/uart.h user/hrs/ipv6/sys/mips/nlm/intr_machdep.c user/hrs/ipv6/sys/mips/nlm/mpreset.S user/hrs/ipv6/sys/mips/nlm/msgring.h user/hrs/ipv6/sys/mips/nlm/std.xlp user/hrs/ipv6/sys/mips/nlm/tick.c user/hrs/ipv6/sys/mips/nlm/uart_cpu_xlp.c user/hrs/ipv6/sys/mips/nlm/usb_init.c user/hrs/ipv6/sys/mips/nlm/xlp.h user/hrs/ipv6/sys/mips/nlm/xlp_machdep.c user/hrs/ipv6/sys/mips/nlm/xlp_pci.c user/hrs/ipv6/sys/mips/rmi/dev/nlge/if_nlge.c user/hrs/ipv6/sys/mips/rmi/dev/sec/rmisec.c user/hrs/ipv6/sys/mips/rmi/tick.c user/hrs/ipv6/sys/mips/rmi/xlr_machdep.c user/hrs/ipv6/sys/mips/rmi/xlr_pci.c user/hrs/ipv6/sys/mips/rmi/xls_ehci.c user/hrs/ipv6/sys/mips/rt305x/rt305x_dotg.c user/hrs/ipv6/sys/mips/rt305x/rt305x_machdep.c user/hrs/ipv6/sys/mips/rt305x/rt305x_sysctl.c user/hrs/ipv6/sys/mips/rt305x/std.rt305x user/hrs/ipv6/sys/mips/sentry5/s5_machdep.c user/hrs/ipv6/sys/mips/sentry5/std.sentry5 user/hrs/ipv6/sys/mips/sibyte/sb_machdep.c user/hrs/ipv6/sys/modules/Makefile user/hrs/ipv6/sys/modules/acpi/acpi/Makefile user/hrs/ipv6/sys/modules/aic7xxx/ahc/ahc_pci/Makefile user/hrs/ipv6/sys/modules/aic7xxx/ahd/Makefile user/hrs/ipv6/sys/modules/asr/Makefile user/hrs/ipv6/sys/modules/ath/Makefile user/hrs/ipv6/sys/modules/ath_ahb/Makefile user/hrs/ipv6/sys/modules/ath_pci/Makefile user/hrs/ipv6/sys/modules/bios/smapi/Makefile user/hrs/ipv6/sys/modules/cam/Makefile user/hrs/ipv6/sys/modules/ce/Makefile user/hrs/ipv6/sys/modules/cxgbe/Makefile user/hrs/ipv6/sys/modules/cyclic/Makefile user/hrs/ipv6/sys/modules/drm/Makefile user/hrs/ipv6/sys/modules/drm/r128/Makefile user/hrs/ipv6/sys/modules/drm/radeon/Makefile user/hrs/ipv6/sys/modules/drm/via/Makefile user/hrs/ipv6/sys/modules/dtrace/Makefile user/hrs/ipv6/sys/modules/dtrace/dtrace/Makefile user/hrs/ipv6/sys/modules/esp/Makefile user/hrs/ipv6/sys/modules/fxp/Makefile user/hrs/ipv6/sys/modules/geom/geom_part/Makefile user/hrs/ipv6/sys/modules/hwpmc/Makefile user/hrs/ipv6/sys/modules/ipdivert/Makefile user/hrs/ipv6/sys/modules/ipfilter/Makefile user/hrs/ipv6/sys/modules/ipfw/Makefile user/hrs/ipv6/sys/modules/iscsi/initiator/Makefile user/hrs/ipv6/sys/modules/ixgbe/Makefile user/hrs/ipv6/sys/modules/kgssapi/Makefile user/hrs/ipv6/sys/modules/kgssapi_krb5/Makefile user/hrs/ipv6/sys/modules/libiconv/Makefile user/hrs/ipv6/sys/modules/libmchain/Makefile user/hrs/ipv6/sys/modules/linux/Makefile user/hrs/ipv6/sys/modules/mfi/Makefile user/hrs/ipv6/sys/modules/mii/Makefile user/hrs/ipv6/sys/modules/mlx4/Makefile user/hrs/ipv6/sys/modules/mlx4ib/Makefile user/hrs/ipv6/sys/modules/mlxen/Makefile user/hrs/ipv6/sys/modules/mps/Makefile user/hrs/ipv6/sys/modules/mthca/Makefile user/hrs/ipv6/sys/modules/netgraph/ipfw/Makefile user/hrs/ipv6/sys/modules/netgraph/netflow/Makefile user/hrs/ipv6/sys/modules/nve/Makefile user/hrs/ipv6/sys/modules/nxge/Makefile user/hrs/ipv6/sys/modules/pfsync/Makefile user/hrs/ipv6/sys/modules/ralfw/Makefile user/hrs/ipv6/sys/modules/random/Makefile user/hrs/ipv6/sys/modules/scc/Makefile user/hrs/ipv6/sys/modules/sound/driver/Makefile user/hrs/ipv6/sys/modules/sound/driver/emu10k1/Makefile user/hrs/ipv6/sys/modules/sound/driver/emu10kx/Makefile user/hrs/ipv6/sys/modules/sound/driver/hda/Makefile user/hrs/ipv6/sys/modules/splash/Makefile user/hrs/ipv6/sys/modules/usb/Makefile user/hrs/ipv6/sys/modules/usb/rue/Makefile user/hrs/ipv6/sys/modules/wi/Makefile user/hrs/ipv6/sys/modules/wlan/Makefile user/hrs/ipv6/sys/modules/xfs/Makefile user/hrs/ipv6/sys/modules/xl/Makefile user/hrs/ipv6/sys/modules/zfs/Makefile user/hrs/ipv6/sys/net/bpf.c user/hrs/ipv6/sys/net/bpf.h user/hrs/ipv6/sys/net/bpf_buffer.c user/hrs/ipv6/sys/net/bpf_buffer.h user/hrs/ipv6/sys/net/bpf_zerocopy.c user/hrs/ipv6/sys/net/bpf_zerocopy.h user/hrs/ipv6/sys/net/bpfdesc.h user/hrs/ipv6/sys/net/bridgestp.c user/hrs/ipv6/sys/net/bridgestp.h user/hrs/ipv6/sys/net/flowtable.c user/hrs/ipv6/sys/net/ieee8023ad_lacp.c user/hrs/ipv6/sys/net/if.c user/hrs/ipv6/sys/net/if.h user/hrs/ipv6/sys/net/if_arcsubr.c user/hrs/ipv6/sys/net/if_atmsubr.c user/hrs/ipv6/sys/net/if_bridge.c user/hrs/ipv6/sys/net/if_clone.c user/hrs/ipv6/sys/net/if_clone.h user/hrs/ipv6/sys/net/if_enc.c user/hrs/ipv6/sys/net/if_epair.c user/hrs/ipv6/sys/net/if_ethersubr.c user/hrs/ipv6/sys/net/if_faith.c user/hrs/ipv6/sys/net/if_fwsubr.c user/hrs/ipv6/sys/net/if_gif.c user/hrs/ipv6/sys/net/if_gre.c user/hrs/ipv6/sys/net/if_iso88025subr.c user/hrs/ipv6/sys/net/if_lagg.c user/hrs/ipv6/sys/net/if_lagg.h user/hrs/ipv6/sys/net/if_llatbl.c user/hrs/ipv6/sys/net/if_llatbl.h user/hrs/ipv6/sys/net/if_media.h user/hrs/ipv6/sys/net/if_mib.c user/hrs/ipv6/sys/net/if_spppfr.c user/hrs/ipv6/sys/net/if_spppsubr.c user/hrs/ipv6/sys/net/if_stf.c user/hrs/ipv6/sys/net/if_tap.c user/hrs/ipv6/sys/net/if_tun.c user/hrs/ipv6/sys/net/if_types.h user/hrs/ipv6/sys/net/if_var.h user/hrs/ipv6/sys/net/if_vlan.c user/hrs/ipv6/sys/net/if_vlan_var.h user/hrs/ipv6/sys/net/netisr.c user/hrs/ipv6/sys/net/radix.h user/hrs/ipv6/sys/net/raw_cb.c user/hrs/ipv6/sys/net/raw_cb.h user/hrs/ipv6/sys/net/raw_usrreq.c user/hrs/ipv6/sys/net/route.c user/hrs/ipv6/sys/net/route.h user/hrs/ipv6/sys/net/rtsock.c user/hrs/ipv6/sys/net/vnet.c user/hrs/ipv6/sys/net/zlib.h user/hrs/ipv6/sys/net80211/ieee80211.c user/hrs/ipv6/sys/net80211/ieee80211.h user/hrs/ipv6/sys/net80211/ieee80211_acl.c user/hrs/ipv6/sys/net80211/ieee80211_action.c user/hrs/ipv6/sys/net80211/ieee80211_alq.c user/hrs/ipv6/sys/net80211/ieee80211_alq.h user/hrs/ipv6/sys/net80211/ieee80211_ddb.c user/hrs/ipv6/sys/net80211/ieee80211_dfs.c user/hrs/ipv6/sys/net80211/ieee80211_dfs.h user/hrs/ipv6/sys/net80211/ieee80211_freebsd.c user/hrs/ipv6/sys/net80211/ieee80211_hostap.c user/hrs/ipv6/sys/net80211/ieee80211_ht.c user/hrs/ipv6/sys/net80211/ieee80211_ht.h user/hrs/ipv6/sys/net80211/ieee80211_hwmp.c user/hrs/ipv6/sys/net80211/ieee80211_input.c user/hrs/ipv6/sys/net80211/ieee80211_ioctl.c user/hrs/ipv6/sys/net80211/ieee80211_ioctl.h user/hrs/ipv6/sys/net80211/ieee80211_mesh.c user/hrs/ipv6/sys/net80211/ieee80211_mesh.h user/hrs/ipv6/sys/net80211/ieee80211_node.c user/hrs/ipv6/sys/net80211/ieee80211_node.h user/hrs/ipv6/sys/net80211/ieee80211_output.c user/hrs/ipv6/sys/net80211/ieee80211_power.c user/hrs/ipv6/sys/net80211/ieee80211_proto.c user/hrs/ipv6/sys/net80211/ieee80211_proto.h user/hrs/ipv6/sys/net80211/ieee80211_radiotap.c user/hrs/ipv6/sys/net80211/ieee80211_radiotap.h user/hrs/ipv6/sys/net80211/ieee80211_regdomain.c user/hrs/ipv6/sys/net80211/ieee80211_scan.c user/hrs/ipv6/sys/net80211/ieee80211_scan.h user/hrs/ipv6/sys/net80211/ieee80211_sta.c user/hrs/ipv6/sys/net80211/ieee80211_superg.c user/hrs/ipv6/sys/net80211/ieee80211_tdma.c user/hrs/ipv6/sys/net80211/ieee80211_var.h user/hrs/ipv6/sys/netatalk/aarp.c user/hrs/ipv6/sys/netatalk/at_control.c user/hrs/ipv6/sys/netgraph/atm/ng_atm.c user/hrs/ipv6/sys/netgraph/atm/ngatmbase.c user/hrs/ipv6/sys/netgraph/atm/uni/ng_uni.c user/hrs/ipv6/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c user/hrs/ipv6/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c user/hrs/ipv6/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c user/hrs/ipv6/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c user/hrs/ipv6/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c user/hrs/ipv6/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c user/hrs/ipv6/sys/netgraph/netflow/netflow.c user/hrs/ipv6/sys/netgraph/netflow/ng_netflow.c user/hrs/ipv6/sys/netgraph/netflow/ng_netflow.h user/hrs/ipv6/sys/netgraph/netgraph.h user/hrs/ipv6/sys/netgraph/ng_async.c user/hrs/ipv6/sys/netgraph/ng_atmllc.c user/hrs/ipv6/sys/netgraph/ng_base.c user/hrs/ipv6/sys/netgraph/ng_bpf.c user/hrs/ipv6/sys/netgraph/ng_bridge.c user/hrs/ipv6/sys/netgraph/ng_cisco.c user/hrs/ipv6/sys/netgraph/ng_cisco.h user/hrs/ipv6/sys/netgraph/ng_deflate.c user/hrs/ipv6/sys/netgraph/ng_device.c user/hrs/ipv6/sys/netgraph/ng_fec.c user/hrs/ipv6/sys/netgraph/ng_gif_demux.c user/hrs/ipv6/sys/netgraph/ng_hub.c user/hrs/ipv6/sys/netgraph/ng_iface.c user/hrs/ipv6/sys/netgraph/ng_ipfw.c user/hrs/ipv6/sys/netgraph/ng_ksocket.c user/hrs/ipv6/sys/netgraph/ng_l2tp.c user/hrs/ipv6/sys/netgraph/ng_mppc.c user/hrs/ipv6/sys/netgraph/ng_parse.c user/hrs/ipv6/sys/netgraph/ng_ppp.c user/hrs/ipv6/sys/netgraph/ng_pppoe.c user/hrs/ipv6/sys/netgraph/ng_pred1.c user/hrs/ipv6/sys/netgraph/ng_sample.c user/hrs/ipv6/sys/netgraph/ng_socket.c user/hrs/ipv6/sys/netgraph/ng_socketvar.h user/hrs/ipv6/sys/netgraph/ng_source.c user/hrs/ipv6/sys/netgraph/ng_sppp.c user/hrs/ipv6/sys/netgraph/ng_tag.c user/hrs/ipv6/sys/netgraph/ng_vlan.c user/hrs/ipv6/sys/netgraph/ng_vlan.h user/hrs/ipv6/sys/netinet/accf_http.c user/hrs/ipv6/sys/netinet/icmp6.h user/hrs/ipv6/sys/netinet/if_ether.c user/hrs/ipv6/sys/netinet/if_ether.h user/hrs/ipv6/sys/netinet/igmp.c user/hrs/ipv6/sys/netinet/in.c user/hrs/ipv6/sys/netinet/in.h user/hrs/ipv6/sys/netinet/in_debug.c user/hrs/ipv6/sys/netinet/in_mcast.c user/hrs/ipv6/sys/netinet/in_pcb.c user/hrs/ipv6/sys/netinet/in_pcb.h user/hrs/ipv6/sys/netinet/in_proto.c user/hrs/ipv6/sys/netinet/in_var.h user/hrs/ipv6/sys/netinet/ip_carp.c user/hrs/ipv6/sys/netinet/ip_carp.h user/hrs/ipv6/sys/netinet/ip_divert.c user/hrs/ipv6/sys/netinet/ip_fw.h user/hrs/ipv6/sys/netinet/ip_gre.c user/hrs/ipv6/sys/netinet/ip_icmp.c user/hrs/ipv6/sys/netinet/ip_input.c user/hrs/ipv6/sys/netinet/ip_ipsec.c user/hrs/ipv6/sys/netinet/ip_mroute.c user/hrs/ipv6/sys/netinet/ip_output.c user/hrs/ipv6/sys/netinet/ip_var.h user/hrs/ipv6/sys/netinet/ipfw/dn_heap.c user/hrs/ipv6/sys/netinet/ipfw/dn_sched_qfq.c user/hrs/ipv6/sys/netinet/ipfw/dummynet.txt user/hrs/ipv6/sys/netinet/ipfw/ip_dn_io.c user/hrs/ipv6/sys/netinet/ipfw/ip_fw2.c user/hrs/ipv6/sys/netinet/ipfw/ip_fw_dynamic.c user/hrs/ipv6/sys/netinet/ipfw/ip_fw_log.c user/hrs/ipv6/sys/netinet/ipfw/ip_fw_nat.c user/hrs/ipv6/sys/netinet/ipfw/ip_fw_pfil.c user/hrs/ipv6/sys/netinet/ipfw/ip_fw_private.h user/hrs/ipv6/sys/netinet/ipfw/ip_fw_sockopt.c user/hrs/ipv6/sys/netinet/ipfw/ip_fw_table.c user/hrs/ipv6/sys/netinet/libalias/alias_sctp.c user/hrs/ipv6/sys/netinet/raw_ip.c user/hrs/ipv6/sys/netinet/sctp.h user/hrs/ipv6/sys/netinet/sctp_asconf.c user/hrs/ipv6/sys/netinet/sctp_asconf.h user/hrs/ipv6/sys/netinet/sctp_auth.c user/hrs/ipv6/sys/netinet/sctp_auth.h user/hrs/ipv6/sys/netinet/sctp_bsd_addr.c user/hrs/ipv6/sys/netinet/sctp_bsd_addr.h user/hrs/ipv6/sys/netinet/sctp_cc_functions.c user/hrs/ipv6/sys/netinet/sctp_constants.h user/hrs/ipv6/sys/netinet/sctp_crc32.h user/hrs/ipv6/sys/netinet/sctp_dtrace_declare.h user/hrs/ipv6/sys/netinet/sctp_dtrace_define.h user/hrs/ipv6/sys/netinet/sctp_header.h user/hrs/ipv6/sys/netinet/sctp_indata.c user/hrs/ipv6/sys/netinet/sctp_indata.h user/hrs/ipv6/sys/netinet/sctp_input.c user/hrs/ipv6/sys/netinet/sctp_input.h user/hrs/ipv6/sys/netinet/sctp_os.h user/hrs/ipv6/sys/netinet/sctp_os_bsd.h user/hrs/ipv6/sys/netinet/sctp_output.c user/hrs/ipv6/sys/netinet/sctp_output.h user/hrs/ipv6/sys/netinet/sctp_pcb.c user/hrs/ipv6/sys/netinet/sctp_pcb.h user/hrs/ipv6/sys/netinet/sctp_peeloff.c user/hrs/ipv6/sys/netinet/sctp_peeloff.h user/hrs/ipv6/sys/netinet/sctp_ss_functions.c user/hrs/ipv6/sys/netinet/sctp_structs.h user/hrs/ipv6/sys/netinet/sctp_sysctl.c user/hrs/ipv6/sys/netinet/sctp_sysctl.h user/hrs/ipv6/sys/netinet/sctp_timer.c user/hrs/ipv6/sys/netinet/sctp_timer.h user/hrs/ipv6/sys/netinet/sctp_uio.h user/hrs/ipv6/sys/netinet/sctp_usrreq.c user/hrs/ipv6/sys/netinet/sctp_var.h user/hrs/ipv6/sys/netinet/sctputil.c user/hrs/ipv6/sys/netinet/sctputil.h user/hrs/ipv6/sys/netinet/tcp.h user/hrs/ipv6/sys/netinet/tcp_hostcache.c user/hrs/ipv6/sys/netinet/tcp_input.c user/hrs/ipv6/sys/netinet/tcp_output.c user/hrs/ipv6/sys/netinet/tcp_reass.c user/hrs/ipv6/sys/netinet/tcp_seq.h user/hrs/ipv6/sys/netinet/tcp_subr.c user/hrs/ipv6/sys/netinet/tcp_syncache.c user/hrs/ipv6/sys/netinet/tcp_timer.c user/hrs/ipv6/sys/netinet/tcp_timer.h user/hrs/ipv6/sys/netinet/tcp_timewait.c user/hrs/ipv6/sys/netinet/tcp_usrreq.c user/hrs/ipv6/sys/netinet/tcp_var.h user/hrs/ipv6/sys/netinet/udp_usrreq.c user/hrs/ipv6/sys/netinet/udp_var.h user/hrs/ipv6/sys/netinet6/icmp6.c user/hrs/ipv6/sys/netinet6/in6.c user/hrs/ipv6/sys/netinet6/in6.h user/hrs/ipv6/sys/netinet6/in6_gif.c user/hrs/ipv6/sys/netinet6/in6_ifattach.c user/hrs/ipv6/sys/netinet6/in6_mcast.c user/hrs/ipv6/sys/netinet6/in6_pcb.c user/hrs/ipv6/sys/netinet6/in6_proto.c user/hrs/ipv6/sys/netinet6/in6_rmx.c user/hrs/ipv6/sys/netinet6/in6_src.c user/hrs/ipv6/sys/netinet6/in6_var.h user/hrs/ipv6/sys/netinet6/ip6_forward.c user/hrs/ipv6/sys/netinet6/ip6_input.c user/hrs/ipv6/sys/netinet6/ip6_ipsec.c user/hrs/ipv6/sys/netinet6/ip6_mroute.c user/hrs/ipv6/sys/netinet6/ip6_output.c user/hrs/ipv6/sys/netinet6/ip6_var.h user/hrs/ipv6/sys/netinet6/mld6.c user/hrs/ipv6/sys/netinet6/nd6.c user/hrs/ipv6/sys/netinet6/nd6.h user/hrs/ipv6/sys/netinet6/nd6_nbr.c user/hrs/ipv6/sys/netinet6/nd6_rtr.c user/hrs/ipv6/sys/netinet6/raw_ip6.c user/hrs/ipv6/sys/netinet6/scope6_var.h user/hrs/ipv6/sys/netinet6/sctp6_usrreq.c user/hrs/ipv6/sys/netinet6/sctp6_var.h user/hrs/ipv6/sys/netinet6/send.c user/hrs/ipv6/sys/netipsec/ipsec_output.c user/hrs/ipv6/sys/netipsec/key.c user/hrs/ipv6/sys/netipsec/xform_ah.c user/hrs/ipv6/sys/netipsec/xform_esp.c user/hrs/ipv6/sys/netipsec/xform_ipip.c user/hrs/ipv6/sys/netipx/ipx.c user/hrs/ipv6/sys/netipx/ipx_proto.c user/hrs/ipv6/sys/netipx/spx_reass.c user/hrs/ipv6/sys/netncp/ncp_lib.h user/hrs/ipv6/sys/netsmb/smb_conn.c user/hrs/ipv6/sys/netsmb/smb_conn.h user/hrs/ipv6/sys/netsmb/smb_rq.c user/hrs/ipv6/sys/netsmb/smb_smb.c user/hrs/ipv6/sys/netsmb/smb_subr.c user/hrs/ipv6/sys/nfs/bootp_subr.c user/hrs/ipv6/sys/nfs/nfs_lock.c user/hrs/ipv6/sys/nfs/nfs_nfssvc.c user/hrs/ipv6/sys/nfsclient/nfs_bio.c user/hrs/ipv6/sys/nfsclient/nfs_krpc.c user/hrs/ipv6/sys/nfsclient/nfs_subs.c user/hrs/ipv6/sys/nfsclient/nfs_vfsops.c user/hrs/ipv6/sys/nfsclient/nfs_vnops.c user/hrs/ipv6/sys/nfsclient/nfsm_subs.h user/hrs/ipv6/sys/nfsclient/nfsmount.h user/hrs/ipv6/sys/nfsclient/nfsnode.h user/hrs/ipv6/sys/nfsserver/nfs_serv.c user/hrs/ipv6/sys/nlm/nlm_prot_impl.c user/hrs/ipv6/sys/ofed/drivers/infiniband/core/addr.c user/hrs/ipv6/sys/ofed/drivers/infiniband/core/cma.c user/hrs/ipv6/sys/ofed/drivers/infiniband/core/fmr_pool.c user/hrs/ipv6/sys/ofed/drivers/infiniband/core/local_sa.c user/hrs/ipv6/sys/ofed/drivers/infiniband/core/notice.c user/hrs/ipv6/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c user/hrs/ipv6/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c user/hrs/ipv6/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c user/hrs/ipv6/sys/ofed/drivers/infiniband/ulp/sdp/Kconfig user/hrs/ipv6/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c user/hrs/ipv6/sys/ofed/drivers/net/mlx4/en_frag.c user/hrs/ipv6/sys/ofed/drivers/net/mlx4/en_netdev.c user/hrs/ipv6/sys/ofed/drivers/net/mlx4/en_port.c user/hrs/ipv6/sys/ofed/drivers/net/mlx4/en_port.h user/hrs/ipv6/sys/ofed/drivers/net/mlx4/en_rx.c user/hrs/ipv6/sys/ofed/include/asm/types.h user/hrs/ipv6/sys/ofed/include/linux/in.h user/hrs/ipv6/sys/ofed/include/linux/in6.h user/hrs/ipv6/sys/ofed/include/linux/io.h user/hrs/ipv6/sys/ofed/include/linux/linux_idr.c user/hrs/ipv6/sys/ofed/include/linux/linux_radix.c user/hrs/ipv6/sys/ofed/include/linux/page.h user/hrs/ipv6/sys/ofed/include/linux/types.h user/hrs/ipv6/sys/ofed/include/net/ip.h user/hrs/ipv6/sys/ofed/include/net/ipv6.h user/hrs/ipv6/sys/pc98/cbus/scterm-sck.c user/hrs/ipv6/sys/pc98/cbus/scvtb.c user/hrs/ipv6/sys/pc98/cbus/sio.c user/hrs/ipv6/sys/pc98/conf/GENERIC user/hrs/ipv6/sys/pc98/include/_limits.h user/hrs/ipv6/sys/pc98/include/_stdint.h user/hrs/ipv6/sys/pc98/include/_types.h user/hrs/ipv6/sys/pc98/include/endian.h user/hrs/ipv6/sys/pc98/include/float.h user/hrs/ipv6/sys/pc98/include/md_var.h user/hrs/ipv6/sys/pc98/include/psl.h user/hrs/ipv6/sys/pc98/include/ptrace.h user/hrs/ipv6/sys/pc98/include/reg.h user/hrs/ipv6/sys/pc98/include/setjmp.h user/hrs/ipv6/sys/pc98/include/specialreg.h user/hrs/ipv6/sys/pc98/include/stdarg.h user/hrs/ipv6/sys/pc98/include/sysarch.h user/hrs/ipv6/sys/pc98/include/trap.h user/hrs/ipv6/sys/pc98/pc98/machdep.c user/hrs/ipv6/sys/pc98/pc98/pc98_machdep.h user/hrs/ipv6/sys/pci/if_rl.c user/hrs/ipv6/sys/pci/if_rlreg.h user/hrs/ipv6/sys/pci/intpm.c user/hrs/ipv6/sys/pci/viapm.c user/hrs/ipv6/sys/powerpc/aim/locore32.S user/hrs/ipv6/sys/powerpc/aim/locore64.S user/hrs/ipv6/sys/powerpc/aim/machdep.c user/hrs/ipv6/sys/powerpc/aim/mmu_oea.c user/hrs/ipv6/sys/powerpc/aim/mmu_oea64.c user/hrs/ipv6/sys/powerpc/aim/moea64_native.c user/hrs/ipv6/sys/powerpc/aim/mp_cpudep.c user/hrs/ipv6/sys/powerpc/aim/nexus.c user/hrs/ipv6/sys/powerpc/aim/slb.c user/hrs/ipv6/sys/powerpc/aim/swtch64.S user/hrs/ipv6/sys/powerpc/aim/trap.c user/hrs/ipv6/sys/powerpc/aim/trap_subr32.S user/hrs/ipv6/sys/powerpc/aim/trap_subr64.S user/hrs/ipv6/sys/powerpc/aim/uma_machdep.c user/hrs/ipv6/sys/powerpc/booke/machdep.c user/hrs/ipv6/sys/powerpc/booke/platform_bare.c user/hrs/ipv6/sys/powerpc/booke/pmap.c user/hrs/ipv6/sys/powerpc/booke/trap.c user/hrs/ipv6/sys/powerpc/conf/DEFAULTS user/hrs/ipv6/sys/powerpc/conf/GENERIC user/hrs/ipv6/sys/powerpc/conf/GENERIC64 user/hrs/ipv6/sys/powerpc/conf/MPC85XX user/hrs/ipv6/sys/powerpc/fpu/fpu_emu.c user/hrs/ipv6/sys/powerpc/include/_stdint.h user/hrs/ipv6/sys/powerpc/include/_types.h user/hrs/ipv6/sys/powerpc/include/asm.h user/hrs/ipv6/sys/powerpc/include/cpu.h user/hrs/ipv6/sys/powerpc/include/endian.h user/hrs/ipv6/sys/powerpc/include/float.h user/hrs/ipv6/sys/powerpc/include/ieeefp.h user/hrs/ipv6/sys/powerpc/include/pcpu.h user/hrs/ipv6/sys/powerpc/include/pmap.h user/hrs/ipv6/sys/powerpc/include/pmc_mdep.h user/hrs/ipv6/sys/powerpc/include/proc.h user/hrs/ipv6/sys/powerpc/include/profile.h user/hrs/ipv6/sys/powerpc/include/spr.h user/hrs/ipv6/sys/powerpc/include/trap.h user/hrs/ipv6/sys/powerpc/include/trap_aim.h user/hrs/ipv6/sys/powerpc/include/trap_booke.h user/hrs/ipv6/sys/powerpc/include/vm.h user/hrs/ipv6/sys/powerpc/include/vmparam.h user/hrs/ipv6/sys/powerpc/mambo/mambo.c user/hrs/ipv6/sys/powerpc/mambo/mambo_console.c user/hrs/ipv6/sys/powerpc/mpc85xx/nexus.c user/hrs/ipv6/sys/powerpc/mpc85xx/pci_fdt.c user/hrs/ipv6/sys/powerpc/ofw/ofw_cpu.c user/hrs/ipv6/sys/powerpc/ofw/ofw_machdep.c user/hrs/ipv6/sys/powerpc/ofw/ofw_pcib_pci.c user/hrs/ipv6/sys/powerpc/ofw/ofw_pcibus.c user/hrs/ipv6/sys/powerpc/ofw/ofw_real.c user/hrs/ipv6/sys/powerpc/ofw/ofw_syscons.c user/hrs/ipv6/sys/powerpc/ofw/ofwcall64.S user/hrs/ipv6/sys/powerpc/ofw/rtas.c user/hrs/ipv6/sys/powerpc/powermac/cpcht.c user/hrs/ipv6/sys/powerpc/powermac/cuda.c user/hrs/ipv6/sys/powerpc/powermac/dbdma.c user/hrs/ipv6/sys/powerpc/powermac/fcu.c user/hrs/ipv6/sys/powerpc/powermac/grackle.c user/hrs/ipv6/sys/powerpc/powermac/gracklevar.h user/hrs/ipv6/sys/powerpc/powermac/macio.c user/hrs/ipv6/sys/powerpc/powermac/platform_powermac.c user/hrs/ipv6/sys/powerpc/powermac/pmu.c user/hrs/ipv6/sys/powerpc/powermac/pmuvar.h user/hrs/ipv6/sys/powerpc/powermac/powermac_thermal.c user/hrs/ipv6/sys/powerpc/powermac/smu.c user/hrs/ipv6/sys/powerpc/powermac/smusat.c user/hrs/ipv6/sys/powerpc/powermac/uninorth.c user/hrs/ipv6/sys/powerpc/powermac/uninorthpci.c user/hrs/ipv6/sys/powerpc/powermac/uninorthvar.h user/hrs/ipv6/sys/powerpc/powermac/windtunnel.c user/hrs/ipv6/sys/powerpc/powerpc/atomic.S user/hrs/ipv6/sys/powerpc/powerpc/bus_machdep.c user/hrs/ipv6/sys/powerpc/powerpc/busdma_machdep.c user/hrs/ipv6/sys/powerpc/powerpc/exec_machdep.c user/hrs/ipv6/sys/powerpc/powerpc/genassym.c user/hrs/ipv6/sys/powerpc/powerpc/intr_machdep.c user/hrs/ipv6/sys/powerpc/powerpc/iommu_if.m user/hrs/ipv6/sys/powerpc/powerpc/platform.c user/hrs/ipv6/sys/powerpc/powerpc/pmap_dispatch.c user/hrs/ipv6/sys/powerpc/powerpc/setjmp.S user/hrs/ipv6/sys/powerpc/ps3/ehci_ps3.c user/hrs/ipv6/sys/powerpc/ps3/ohci_ps3.c user/hrs/ipv6/sys/powerpc/ps3/platform_ps3.c user/hrs/ipv6/sys/powerpc/ps3/ps3-hv-asm.awk user/hrs/ipv6/sys/powerpc/ps3/ps3-hvcall.S user/hrs/ipv6/sys/powerpc/ps3/ps3-hvcall.h user/hrs/ipv6/sys/powerpc/ps3/ps3-hvcall.master user/hrs/ipv6/sys/powerpc/ps3/ps3_syscons.c user/hrs/ipv6/sys/powerpc/ps3/ps3bus.c user/hrs/ipv6/sys/powerpc/ps3/ps3cdrom.c user/hrs/ipv6/sys/powerpc/ps3/ps3disk.c user/hrs/ipv6/sys/powerpc/ps3/ps3pic.c user/hrs/ipv6/sys/rpc/clnt_dg.c user/hrs/ipv6/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c user/hrs/ipv6/sys/security/audit/audit.c user/hrs/ipv6/sys/security/audit/audit_pipe.c user/hrs/ipv6/sys/security/audit/audit_syscalls.c user/hrs/ipv6/sys/security/mac/mac_framework.c user/hrs/ipv6/sys/security/mac/mac_net.c user/hrs/ipv6/sys/security/mac/mac_syscalls.c user/hrs/ipv6/sys/security/mac_biba/mac_biba.c user/hrs/ipv6/sys/security/mac_bsdextended/mac_bsdextended.c user/hrs/ipv6/sys/security/mac_ifoff/mac_ifoff.c user/hrs/ipv6/sys/security/mac_lomac/mac_lomac.c user/hrs/ipv6/sys/security/mac_mls/mac_mls.c user/hrs/ipv6/sys/security/mac_partition/mac_partition.c user/hrs/ipv6/sys/security/mac_portacl/mac_portacl.c user/hrs/ipv6/sys/security/mac_seeotheruids/mac_seeotheruids.c user/hrs/ipv6/sys/security/mac_stub/mac_stub.c user/hrs/ipv6/sys/security/mac_test/mac_test.c user/hrs/ipv6/sys/sparc64/central/central.c user/hrs/ipv6/sys/sparc64/conf/DEFAULTS user/hrs/ipv6/sys/sparc64/conf/GENERIC user/hrs/ipv6/sys/sparc64/ebus/ebus.c user/hrs/ipv6/sys/sparc64/ebus/epic.c user/hrs/ipv6/sys/sparc64/fhc/fhc.c user/hrs/ipv6/sys/sparc64/include/_types.h user/hrs/ipv6/sys/sparc64/include/asmacros.h user/hrs/ipv6/sys/sparc64/include/atomic.h user/hrs/ipv6/sys/sparc64/include/bus.h user/hrs/ipv6/sys/sparc64/include/bus_dma.h user/hrs/ipv6/sys/sparc64/include/bus_private.h user/hrs/ipv6/sys/sparc64/include/clock.h user/hrs/ipv6/sys/sparc64/include/cpu.h user/hrs/ipv6/sys/sparc64/include/endian.h user/hrs/ipv6/sys/sparc64/include/float.h user/hrs/ipv6/sys/sparc64/include/ieeefp.h user/hrs/ipv6/sys/sparc64/include/md_var.h user/hrs/ipv6/sys/sparc64/include/ofw_machdep.h user/hrs/ipv6/sys/sparc64/include/pcpu.h user/hrs/ipv6/sys/sparc64/include/proc.h user/hrs/ipv6/sys/sparc64/include/vmparam.h user/hrs/ipv6/sys/sparc64/pci/apb.c user/hrs/ipv6/sys/sparc64/pci/fire.c user/hrs/ipv6/sys/sparc64/pci/firereg.h user/hrs/ipv6/sys/sparc64/pci/firevar.h user/hrs/ipv6/sys/sparc64/pci/ofw_pcib.c user/hrs/ipv6/sys/sparc64/pci/ofw_pcib_subr.c user/hrs/ipv6/sys/sparc64/pci/ofw_pcibus.c user/hrs/ipv6/sys/sparc64/pci/psycho.c user/hrs/ipv6/sys/sparc64/pci/psychovar.h user/hrs/ipv6/sys/sparc64/pci/sbbc.c user/hrs/ipv6/sys/sparc64/pci/schizo.c user/hrs/ipv6/sys/sparc64/pci/schizovar.h user/hrs/ipv6/sys/sparc64/sbus/dma_sbus.c user/hrs/ipv6/sys/sparc64/sbus/lsi64854.c user/hrs/ipv6/sys/sparc64/sbus/lsi64854var.h user/hrs/ipv6/sys/sparc64/sbus/sbus.c user/hrs/ipv6/sys/sparc64/sparc64/ata_machdep.c user/hrs/ipv6/sys/sparc64/sparc64/bus_machdep.c user/hrs/ipv6/sys/sparc64/sparc64/cache.c user/hrs/ipv6/sys/sparc64/sparc64/clock.c user/hrs/ipv6/sys/sparc64/sparc64/eeprom.c user/hrs/ipv6/sys/sparc64/sparc64/exception.S user/hrs/ipv6/sys/sparc64/sparc64/genassym.c user/hrs/ipv6/sys/sparc64/sparc64/identcpu.c user/hrs/ipv6/sys/sparc64/sparc64/intr_machdep.c user/hrs/ipv6/sys/sparc64/sparc64/iommu.c user/hrs/ipv6/sys/sparc64/sparc64/jbusppm.c user/hrs/ipv6/sys/sparc64/sparc64/machdep.c user/hrs/ipv6/sys/sparc64/sparc64/nexus.c user/hrs/ipv6/sys/sparc64/sparc64/ofw_machdep.c user/hrs/ipv6/sys/sparc64/sparc64/pmap.c user/hrs/ipv6/sys/sparc64/sparc64/rtc.c user/hrs/ipv6/sys/sparc64/sparc64/sc_machdep.c user/hrs/ipv6/sys/sparc64/sparc64/schppm.c user/hrs/ipv6/sys/sparc64/sparc64/ssm.c user/hrs/ipv6/sys/sparc64/sparc64/support.S user/hrs/ipv6/sys/sparc64/sparc64/swtch.S user/hrs/ipv6/sys/sparc64/sparc64/sys_machdep.c user/hrs/ipv6/sys/sparc64/sparc64/tick.c user/hrs/ipv6/sys/sparc64/sparc64/trap.c user/hrs/ipv6/sys/sparc64/sparc64/upa.c user/hrs/ipv6/sys/sparc64/sparc64/vm_machdep.c user/hrs/ipv6/sys/sys/_null.h user/hrs/ipv6/sys/sys/_umtx.h user/hrs/ipv6/sys/sys/ata.h user/hrs/ipv6/sys/sys/buf.h user/hrs/ipv6/sys/sys/bus.h user/hrs/ipv6/sys/sys/bus_dma.h user/hrs/ipv6/sys/sys/cdefs.h user/hrs/ipv6/sys/sys/cdrio.h user/hrs/ipv6/sys/sys/conf.h user/hrs/ipv6/sys/sys/cons.h user/hrs/ipv6/sys/sys/consio.h user/hrs/ipv6/sys/sys/copyright.h user/hrs/ipv6/sys/sys/cpuset.h user/hrs/ipv6/sys/sys/diskmbr.h user/hrs/ipv6/sys/sys/dvdio.h user/hrs/ipv6/sys/sys/elf_common.h user/hrs/ipv6/sys/sys/event.h user/hrs/ipv6/sys/sys/fcntl.h user/hrs/ipv6/sys/sys/file.h user/hrs/ipv6/sys/sys/gpt.h user/hrs/ipv6/sys/sys/iconv.h user/hrs/ipv6/sys/sys/imgact_elf.h user/hrs/ipv6/sys/sys/jail.h user/hrs/ipv6/sys/sys/kdb.h user/hrs/ipv6/sys/sys/kobj.h user/hrs/ipv6/sys/sys/ktrace.h user/hrs/ipv6/sys/sys/libkern.h user/hrs/ipv6/sys/sys/lock.h user/hrs/ipv6/sys/sys/lockmgr.h user/hrs/ipv6/sys/sys/malloc.h user/hrs/ipv6/sys/sys/mbuf.h user/hrs/ipv6/sys/sys/mchain.h user/hrs/ipv6/sys/sys/mdioctl.h user/hrs/ipv6/sys/sys/mman.h user/hrs/ipv6/sys/sys/mount.h user/hrs/ipv6/sys/sys/msgbuf.h user/hrs/ipv6/sys/sys/mutex.h user/hrs/ipv6/sys/sys/namei.h user/hrs/ipv6/sys/sys/param.h user/hrs/ipv6/sys/sys/pipe.h user/hrs/ipv6/sys/sys/pmc.h user/hrs/ipv6/sys/sys/pmckern.h user/hrs/ipv6/sys/sys/pmclog.h user/hrs/ipv6/sys/sys/posix4.h user/hrs/ipv6/sys/sys/proc.h user/hrs/ipv6/sys/sys/ptrace.h user/hrs/ipv6/sys/sys/racct.h user/hrs/ipv6/sys/sys/resource.h user/hrs/ipv6/sys/sys/resourcevar.h user/hrs/ipv6/sys/sys/rman.h user/hrs/ipv6/sys/sys/rmlock.h user/hrs/ipv6/sys/sys/rwlock.h user/hrs/ipv6/sys/sys/sched.h user/hrs/ipv6/sys/sys/sdt.h user/hrs/ipv6/sys/sys/signal.h user/hrs/ipv6/sys/sys/signalvar.h user/hrs/ipv6/sys/sys/socket.h user/hrs/ipv6/sys/sys/sockio.h user/hrs/ipv6/sys/sys/stack.h user/hrs/ipv6/sys/sys/stdint.h user/hrs/ipv6/sys/sys/sx.h user/hrs/ipv6/sys/sys/syscall.h user/hrs/ipv6/sys/sys/syscall.mk user/hrs/ipv6/sys/sys/syscallsubr.h user/hrs/ipv6/sys/sys/sysctl.h user/hrs/ipv6/sys/sys/sysent.h user/hrs/ipv6/sys/sys/sysproto.h user/hrs/ipv6/sys/sys/systm.h user/hrs/ipv6/sys/sys/taskqueue.h user/hrs/ipv6/sys/sys/timepps.h user/hrs/ipv6/sys/sys/ttycom.h user/hrs/ipv6/sys/sys/ttydefaults.h user/hrs/ipv6/sys/sys/types.h user/hrs/ipv6/sys/sys/ucontext.h user/hrs/ipv6/sys/sys/uio.h user/hrs/ipv6/sys/sys/umtx.h user/hrs/ipv6/sys/sys/unistd.h user/hrs/ipv6/sys/sys/user.h user/hrs/ipv6/sys/sys/vnode.h user/hrs/ipv6/sys/teken/demo/Makefile user/hrs/ipv6/sys/teken/libteken/Symbol.map user/hrs/ipv6/sys/teken/stress/teken_stress.c user/hrs/ipv6/sys/teken/teken_subr.h user/hrs/ipv6/sys/tools/makeobjops.awk user/hrs/ipv6/sys/tools/vnode_if.awk user/hrs/ipv6/sys/ufs/ffs/ffs_alloc.c user/hrs/ipv6/sys/ufs/ffs/ffs_balloc.c user/hrs/ipv6/sys/ufs/ffs/ffs_extern.h user/hrs/ipv6/sys/ufs/ffs/ffs_inode.c user/hrs/ipv6/sys/ufs/ffs/ffs_rawread.c user/hrs/ipv6/sys/ufs/ffs/ffs_snapshot.c user/hrs/ipv6/sys/ufs/ffs/ffs_softdep.c user/hrs/ipv6/sys/ufs/ffs/ffs_vfsops.c user/hrs/ipv6/sys/ufs/ffs/ffs_vnops.c user/hrs/ipv6/sys/ufs/ffs/fs.h user/hrs/ipv6/sys/ufs/ufs/dinode.h user/hrs/ipv6/sys/ufs/ufs/extattr.h user/hrs/ipv6/sys/ufs/ufs/inode.h user/hrs/ipv6/sys/ufs/ufs/ufs_acl.c user/hrs/ipv6/sys/ufs/ufs/ufs_dirhash.c user/hrs/ipv6/sys/ufs/ufs/ufs_extattr.c user/hrs/ipv6/sys/ufs/ufs/ufs_lookup.c user/hrs/ipv6/sys/ufs/ufs/ufs_quota.c user/hrs/ipv6/sys/ufs/ufs/ufs_vnops.c user/hrs/ipv6/sys/vm/device_pager.c user/hrs/ipv6/sys/vm/memguard.c user/hrs/ipv6/sys/vm/memguard.h user/hrs/ipv6/sys/vm/redzone.c user/hrs/ipv6/sys/vm/swap_pager.c user/hrs/ipv6/sys/vm/uma.h user/hrs/ipv6/sys/vm/uma_core.c user/hrs/ipv6/sys/vm/vm_contig.c user/hrs/ipv6/sys/vm/vm_extern.h user/hrs/ipv6/sys/vm/vm_fault.c user/hrs/ipv6/sys/vm/vm_glue.c user/hrs/ipv6/sys/vm/vm_kern.c user/hrs/ipv6/sys/vm/vm_map.c user/hrs/ipv6/sys/vm/vm_map.h user/hrs/ipv6/sys/vm/vm_meter.c user/hrs/ipv6/sys/vm/vm_mmap.c user/hrs/ipv6/sys/vm/vm_object.c user/hrs/ipv6/sys/vm/vm_object.h user/hrs/ipv6/sys/vm/vm_page.c user/hrs/ipv6/sys/vm/vm_page.h user/hrs/ipv6/sys/vm/vm_pageout.c user/hrs/ipv6/sys/vm/vm_pageout.h user/hrs/ipv6/sys/vm/vm_pager.c user/hrs/ipv6/sys/vm/vm_pager.h user/hrs/ipv6/sys/vm/vm_phys.c user/hrs/ipv6/sys/vm/vm_phys.h user/hrs/ipv6/sys/vm/vm_reserv.c user/hrs/ipv6/sys/vm/vm_reserv.h user/hrs/ipv6/sys/vm/vm_unix.c user/hrs/ipv6/sys/vm/vnode_pager.c user/hrs/ipv6/sys/vm/vnode_pager.h user/hrs/ipv6/sys/x86/acpica/acpi_apm.c user/hrs/ipv6/sys/x86/acpica/madt.c user/hrs/ipv6/sys/x86/acpica/srat.c user/hrs/ipv6/sys/x86/bios/vpd.c user/hrs/ipv6/sys/x86/cpufreq/p4tcc.c user/hrs/ipv6/sys/x86/include/mca.h user/hrs/ipv6/sys/x86/isa/atpic.c user/hrs/ipv6/sys/x86/isa/icu.h user/hrs/ipv6/sys/x86/isa/isa_dma.c user/hrs/ipv6/sys/x86/pci/pci_bus.c user/hrs/ipv6/sys/x86/pci/qpi.c user/hrs/ipv6/sys/x86/x86/busdma_machdep.c user/hrs/ipv6/sys/x86/x86/io_apic.c user/hrs/ipv6/sys/x86/x86/local_apic.c user/hrs/ipv6/sys/x86/x86/mca.c user/hrs/ipv6/sys/x86/x86/mptable_pci.c user/hrs/ipv6/sys/xen/evtchn/evtchn_dev.c user/hrs/ipv6/sys/xen/interface/io/blkif.h user/hrs/ipv6/sys/xen/interface/io/netif.h user/hrs/ipv6/sys/xen/xenbus/xenbusb.c user/hrs/ipv6/sys/xen/xenbus/xenbusb_back.c user/hrs/ipv6/sys/xen/xenbus/xenbusb_front.c user/hrs/ipv6/sys/xen/xenbus/xenbusvar.h user/hrs/ipv6/sys/xen/xenstore/xenstore.c user/hrs/ipv6/tools/KSE/ksetest/kse_threads_test.c user/hrs/ipv6/tools/build/mk/OptionalObsoleteFiles.inc user/hrs/ipv6/tools/build/options/WITHOUT_UTMPX user/hrs/ipv6/tools/debugscripts/gdbinit.i386 user/hrs/ipv6/tools/debugscripts/kld_deb.py user/hrs/ipv6/tools/kerneldoc/subsys/common-Doxyfile user/hrs/ipv6/tools/make_libdeps.sh user/hrs/ipv6/tools/regression/README user/hrs/ipv6/tools/regression/bin/sh/builtins/cd1.0 user/hrs/ipv6/tools/regression/bin/sh/builtins/getopts1.0 user/hrs/ipv6/tools/regression/bin/test/regress.sh user/hrs/ipv6/tools/regression/doat/doat.c user/hrs/ipv6/tools/regression/fifo/fifo_io/fifo_io.c user/hrs/ipv6/tools/regression/fifo/fifo_misc/fifo_misc.c user/hrs/ipv6/tools/regression/file/dup/dup.c user/hrs/ipv6/tools/regression/geom_eli/resize.t user/hrs/ipv6/tools/regression/kthread/kld/kthrdlk.c user/hrs/ipv6/tools/regression/lib/libc/gen/Makefile user/hrs/ipv6/tools/regression/lib/libc/nss/README user/hrs/ipv6/tools/regression/lib/libc/stdio/test-printfloat.c user/hrs/ipv6/tools/regression/lib/msun/Makefile user/hrs/ipv6/tools/regression/lib/msun/test-fma.c user/hrs/ipv6/tools/regression/lib/msun/test-logarithm.c user/hrs/ipv6/tools/regression/lib/msun/test-nearbyint.c user/hrs/ipv6/tools/regression/lib/msun/test-next.c user/hrs/ipv6/tools/regression/lib/msun/test-rem.c user/hrs/ipv6/tools/regression/msdosfs/msdosfstest-3.sh user/hrs/ipv6/tools/regression/msdosfs/msdosfstest-4.sh user/hrs/ipv6/tools/regression/msdosfs/msdosfstest-5.sh user/hrs/ipv6/tools/regression/msdosfs/msdosfstest-6.sh user/hrs/ipv6/tools/regression/nfsmmap/Makefile user/hrs/ipv6/tools/regression/nfsmmap/README user/hrs/ipv6/tools/regression/pipe/pipe-fstatbug.c user/hrs/ipv6/tools/regression/pipe/pipe-reverse.c user/hrs/ipv6/tools/regression/pipe/pipe-wraparound.c user/hrs/ipv6/tools/regression/pjdfstest/tests/chown/00.t user/hrs/ipv6/tools/regression/priv/priv_cred.c user/hrs/ipv6/tools/regression/pthread/mutex_isowned_np/mutex_isowned_np.c user/hrs/ipv6/tools/regression/sbin/Makefile user/hrs/ipv6/tools/regression/security/cap_test/cap_test_capmode.c user/hrs/ipv6/tools/regression/security/open_to_operation/open_to_operation.c user/hrs/ipv6/tools/regression/sockets/unix_passfd/unix_passfd.c user/hrs/ipv6/tools/regression/usr.bin/env/regress-sb.rb user/hrs/ipv6/tools/regression/usr.bin/make/README user/hrs/ipv6/tools/regression/usr.bin/make/variables/modifier_M/Makefile user/hrs/ipv6/tools/regression/usr.bin/make/variables/modifier_M/expected.stdout.1 user/hrs/ipv6/tools/regression/usr.bin/sed/math.sed user/hrs/ipv6/tools/regression/usr.sbin/newsyslog/regress.sh user/hrs/ipv6/tools/test/README user/hrs/ipv6/tools/test/posixshm/shm_test.c user/hrs/ipv6/tools/test/testfloat/systemBugs.txt (contents, props changed) user/hrs/ipv6/tools/test/testfloat/testfloat-source.txt (contents, props changed) user/hrs/ipv6/tools/test/testfloat/testfloat.txt (contents, props changed) user/hrs/ipv6/tools/tools/README user/hrs/ipv6/tools/tools/ansify/ansify.pl user/hrs/ipv6/tools/tools/ath/Makefile user/hrs/ipv6/tools/tools/ath/ath_ee_v14_print/ath_ee_v14_print.c user/hrs/ipv6/tools/tools/ath/athdecode/main.c user/hrs/ipv6/tools/tools/ath/athradar/athradar.c user/hrs/ipv6/tools/tools/ath/athrd/athrd.1 user/hrs/ipv6/tools/tools/ath/athstats/athstats.c user/hrs/ipv6/tools/tools/ath/athstats/statfoo.c user/hrs/ipv6/tools/tools/ath/athstats/statfoo.h user/hrs/ipv6/tools/tools/ath/common/dumpregs_5416.c user/hrs/ipv6/tools/tools/bus_autoconf/bus_autoconf.c user/hrs/ipv6/tools/tools/bus_autoconf/bus_usb.c user/hrs/ipv6/tools/tools/cd2dvd/cd2dvd.sh user/hrs/ipv6/tools/tools/cxgbetool/cxgbetool.c user/hrs/ipv6/tools/tools/ether_reflect/ether_reflect.1 user/hrs/ipv6/tools/tools/genericize/genericize.pl user/hrs/ipv6/tools/tools/hcomp/hcomp.pl user/hrs/ipv6/tools/tools/mtxstat/mtxstat.pl user/hrs/ipv6/tools/tools/nanobsd/gateworks/common user/hrs/ipv6/tools/tools/nanobsd/pcengines/Files/root/.cshrc user/hrs/ipv6/tools/tools/net80211/wesside/wesside/wesside.c user/hrs/ipv6/tools/tools/net80211/wlaninject/README user/hrs/ipv6/tools/tools/net80211/wlanstats/wlanstats.c user/hrs/ipv6/tools/tools/netrate/netblast/netblast.c user/hrs/ipv6/tools/tools/netrate/netreceive/netreceive.c user/hrs/ipv6/tools/tools/netrate/netsend/netsend.c user/hrs/ipv6/tools/tools/netrate/tcpp/tcpp_client.c user/hrs/ipv6/tools/tools/prstats/prstats.pl user/hrs/ipv6/tools/tools/sysbuild/README user/hrs/ipv6/tools/tools/sysbuild/sysbuild.sh user/hrs/ipv6/tools/tools/tinybsd/README user/hrs/ipv6/tools/tools/vimage/vimage.8 user/hrs/ipv6/tools/tools/whereintheworld/whereintheworld.pl user/hrs/ipv6/usr.bin/Makefile user/hrs/ipv6/usr.bin/ar/ar.1 user/hrs/ipv6/usr.bin/ar/ar.c user/hrs/ipv6/usr.bin/at/Makefile user/hrs/ipv6/usr.bin/at/at.c user/hrs/ipv6/usr.bin/at/parsetime.c user/hrs/ipv6/usr.bin/banner/banner.c user/hrs/ipv6/usr.bin/bc/bc.1 user/hrs/ipv6/usr.bin/bc/bc.library user/hrs/ipv6/usr.bin/bc/bc.y user/hrs/ipv6/usr.bin/brandelf/brandelf.c user/hrs/ipv6/usr.bin/bsdiff/bsdiff/bsdiff.1 user/hrs/ipv6/usr.bin/bsdiff/bsdiff/bsdiff.c user/hrs/ipv6/usr.bin/c99/c99.c user/hrs/ipv6/usr.bin/calendar/Makefile user/hrs/ipv6/usr.bin/calendar/calendar.1 user/hrs/ipv6/usr.bin/calendar/calendar.c user/hrs/ipv6/usr.bin/calendar/calendars/calendar.birthday user/hrs/ipv6/usr.bin/calendar/calendars/calendar.freebsd user/hrs/ipv6/usr.bin/calendar/calendars/calendar.history user/hrs/ipv6/usr.bin/calendar/calendars/calendar.music user/hrs/ipv6/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.all user/hrs/ipv6/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.praznici user/hrs/ipv6/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.all user/hrs/ipv6/usr.bin/calendar/io.c user/hrs/ipv6/usr.bin/calendar/parsedata.c user/hrs/ipv6/usr.bin/cap_mkdb/cap_mkdb.c user/hrs/ipv6/usr.bin/catman/catman.c user/hrs/ipv6/usr.bin/checknr/checknr.c user/hrs/ipv6/usr.bin/chkey/chkey.c user/hrs/ipv6/usr.bin/chpass/chpass.h user/hrs/ipv6/usr.bin/chpass/table.c user/hrs/ipv6/usr.bin/chpass/util.c user/hrs/ipv6/usr.bin/cksum/cksum.c user/hrs/ipv6/usr.bin/clang/Makefile user/hrs/ipv6/usr.bin/clang/clang/Makefile user/hrs/ipv6/usr.bin/clang/clang/clang.1 user/hrs/ipv6/usr.bin/clang/tblgen/Makefile user/hrs/ipv6/usr.bin/clang/tblgen/tblgen.1 user/hrs/ipv6/usr.bin/cmp/extern.h user/hrs/ipv6/usr.bin/col/col.c user/hrs/ipv6/usr.bin/colcrt/colcrt.c user/hrs/ipv6/usr.bin/column/column.c user/hrs/ipv6/usr.bin/comm/comm.1 user/hrs/ipv6/usr.bin/comm/comm.c user/hrs/ipv6/usr.bin/compile_et/Makefile user/hrs/ipv6/usr.bin/compress/compress.c user/hrs/ipv6/usr.bin/compress/doc/NOTES user/hrs/ipv6/usr.bin/compress/zopen.c user/hrs/ipv6/usr.bin/cpio/Makefile user/hrs/ipv6/usr.bin/cpio/test/Makefile user/hrs/ipv6/usr.bin/cpuset/cpuset.c user/hrs/ipv6/usr.bin/csplit/csplit.c user/hrs/ipv6/usr.bin/csup/Makefile user/hrs/ipv6/usr.bin/csup/auth.c user/hrs/ipv6/usr.bin/csup/cpasswd.1 user/hrs/ipv6/usr.bin/csup/csup.1 user/hrs/ipv6/usr.bin/csup/diff.c user/hrs/ipv6/usr.bin/csup/fixups.c user/hrs/ipv6/usr.bin/csup/misc.c user/hrs/ipv6/usr.bin/csup/misc.h user/hrs/ipv6/usr.bin/csup/mux.c user/hrs/ipv6/usr.bin/csup/proto.c user/hrs/ipv6/usr.bin/csup/rcsfile.c user/hrs/ipv6/usr.bin/csup/updater.c user/hrs/ipv6/usr.bin/cut/cut.c user/hrs/ipv6/usr.bin/dc/Makefile user/hrs/ipv6/usr.bin/dc/bcode.c user/hrs/ipv6/usr.bin/dc/dc.c user/hrs/ipv6/usr.bin/du/du.1 user/hrs/ipv6/usr.bin/du/du.c user/hrs/ipv6/usr.bin/elfdump/elfdump.c user/hrs/ipv6/usr.bin/enigma/enigma.c user/hrs/ipv6/usr.bin/expand/expand.c user/hrs/ipv6/usr.bin/fetch/fetch.1 user/hrs/ipv6/usr.bin/fetch/fetch.c user/hrs/ipv6/usr.bin/find/find.1 user/hrs/ipv6/usr.bin/find/ls.c user/hrs/ipv6/usr.bin/find/main.c user/hrs/ipv6/usr.bin/finger/Makefile user/hrs/ipv6/usr.bin/finger/finger.c user/hrs/ipv6/usr.bin/finger/lprint.c user/hrs/ipv6/usr.bin/fold/fold.c user/hrs/ipv6/usr.bin/fstat/fstat.1 user/hrs/ipv6/usr.bin/fstat/fstat.c user/hrs/ipv6/usr.bin/fstat/fuser.1 user/hrs/ipv6/usr.bin/fstat/fuser.c user/hrs/ipv6/usr.bin/gencat/gencat.c user/hrs/ipv6/usr.bin/getent/getent.c user/hrs/ipv6/usr.bin/gprof/aout.c user/hrs/ipv6/usr.bin/gprof/arcs.c user/hrs/ipv6/usr.bin/grep/Makefile user/hrs/ipv6/usr.bin/grep/file.c user/hrs/ipv6/usr.bin/grep/grep.c user/hrs/ipv6/usr.bin/grep/grep.h user/hrs/ipv6/usr.bin/grep/util.c user/hrs/ipv6/usr.bin/gzip/Makefile user/hrs/ipv6/usr.bin/gzip/gzip.1 user/hrs/ipv6/usr.bin/gzip/gzip.c user/hrs/ipv6/usr.bin/gzip/zuncompress.c user/hrs/ipv6/usr.bin/hexdump/conv.c user/hrs/ipv6/usr.bin/hexdump/display.c user/hrs/ipv6/usr.bin/hexdump/hexdump.1 user/hrs/ipv6/usr.bin/hexdump/hexdump.c user/hrs/ipv6/usr.bin/hexdump/hexsyntax.c user/hrs/ipv6/usr.bin/hexdump/od.1 user/hrs/ipv6/usr.bin/hexdump/parse.c user/hrs/ipv6/usr.bin/id/id.c user/hrs/ipv6/usr.bin/indent/indent.1 user/hrs/ipv6/usr.bin/indent/indent.c user/hrs/ipv6/usr.bin/indent/io.c user/hrs/ipv6/usr.bin/ipcrm/ipcrm.1 user/hrs/ipv6/usr.bin/ipcs/ipc.c user/hrs/ipv6/usr.bin/ipcs/ipc.h user/hrs/ipv6/usr.bin/join/join.c user/hrs/ipv6/usr.bin/jot/jot.1 user/hrs/ipv6/usr.bin/kdump/Makefile user/hrs/ipv6/usr.bin/kdump/kdump.1 user/hrs/ipv6/usr.bin/kdump/kdump.c user/hrs/ipv6/usr.bin/kdump/mkioctls user/hrs/ipv6/usr.bin/kdump/mksubr user/hrs/ipv6/usr.bin/killall/killall.1 user/hrs/ipv6/usr.bin/ktrace/Makefile user/hrs/ipv6/usr.bin/ktrace/ktrace.1 user/hrs/ipv6/usr.bin/ktrace/ktrace.c user/hrs/ipv6/usr.bin/ktrace/ktrace.h user/hrs/ipv6/usr.bin/ktrace/subr.c user/hrs/ipv6/usr.bin/lam/lam.c user/hrs/ipv6/usr.bin/last/Makefile user/hrs/ipv6/usr.bin/last/last.1 user/hrs/ipv6/usr.bin/last/last.c user/hrs/ipv6/usr.bin/leave/Makefile user/hrs/ipv6/usr.bin/lex/NEWS user/hrs/ipv6/usr.bin/lex/flex.skl user/hrs/ipv6/usr.bin/lex/flexdef.h user/hrs/ipv6/usr.bin/lex/main.c user/hrs/ipv6/usr.bin/lex/tblcmp.c user/hrs/ipv6/usr.bin/limits/limits.1 user/hrs/ipv6/usr.bin/limits/limits.c user/hrs/ipv6/usr.bin/locale/locale.1 user/hrs/ipv6/usr.bin/locate/locate/fastfind.c user/hrs/ipv6/usr.bin/locate/locate/locate.c user/hrs/ipv6/usr.bin/locate/locate/util.c user/hrs/ipv6/usr.bin/lock/lock.c user/hrs/ipv6/usr.bin/lockf/lockf.1 user/hrs/ipv6/usr.bin/logger/logger.c user/hrs/ipv6/usr.bin/login/login_fbtab.c user/hrs/ipv6/usr.bin/logins/logins.1 user/hrs/ipv6/usr.bin/logins/logins.c user/hrs/ipv6/usr.bin/look/Makefile user/hrs/ipv6/usr.bin/look/look.c user/hrs/ipv6/usr.bin/lzmainfo/Makefile user/hrs/ipv6/usr.bin/m4/Makefile user/hrs/ipv6/usr.bin/m4/eval.c user/hrs/ipv6/usr.bin/m4/expr.c user/hrs/ipv6/usr.bin/m4/extern.h user/hrs/ipv6/usr.bin/m4/gnum4.c user/hrs/ipv6/usr.bin/m4/look.c user/hrs/ipv6/usr.bin/m4/m4.1 user/hrs/ipv6/usr.bin/m4/main.c user/hrs/ipv6/usr.bin/m4/mdef.h user/hrs/ipv6/usr.bin/m4/misc.c user/hrs/ipv6/usr.bin/m4/pathnames.h user/hrs/ipv6/usr.bin/m4/stdd.h user/hrs/ipv6/usr.bin/m4/trace.c user/hrs/ipv6/usr.bin/mail/cmd1.c user/hrs/ipv6/usr.bin/mail/edit.c user/hrs/ipv6/usr.bin/mail/extern.h user/hrs/ipv6/usr.bin/mail/head.c user/hrs/ipv6/usr.bin/mail/lex.c user/hrs/ipv6/usr.bin/mail/main.c user/hrs/ipv6/usr.bin/mail/util.c user/hrs/ipv6/usr.bin/make/GNode.h user/hrs/ipv6/usr.bin/make/Makefile user/hrs/ipv6/usr.bin/make/arch.c user/hrs/ipv6/usr.bin/make/buf.c user/hrs/ipv6/usr.bin/make/for.c user/hrs/ipv6/usr.bin/make/globals.h user/hrs/ipv6/usr.bin/make/job.c user/hrs/ipv6/usr.bin/make/main.c user/hrs/ipv6/usr.bin/make/make.1 user/hrs/ipv6/usr.bin/make/str.c user/hrs/ipv6/usr.bin/make/var.c user/hrs/ipv6/usr.bin/man/man.conf.5 user/hrs/ipv6/usr.bin/man/man.sh user/hrs/ipv6/usr.bin/ministat/ministat.1 user/hrs/ipv6/usr.bin/ministat/ministat.c user/hrs/ipv6/usr.bin/mkesdb/Makefile.inc user/hrs/ipv6/usr.bin/mt/mt.c user/hrs/ipv6/usr.bin/ncal/ncal.c user/hrs/ipv6/usr.bin/ncplist/Makefile user/hrs/ipv6/usr.bin/ncplist/ncplist.c user/hrs/ipv6/usr.bin/ncplogin/ncplogin.c user/hrs/ipv6/usr.bin/netstat/if.c user/hrs/ipv6/usr.bin/netstat/inet.c user/hrs/ipv6/usr.bin/netstat/inet6.c user/hrs/ipv6/usr.bin/netstat/ipx.c user/hrs/ipv6/usr.bin/netstat/netgraph.c user/hrs/ipv6/usr.bin/netstat/route.c user/hrs/ipv6/usr.bin/netstat/sctp.c user/hrs/ipv6/usr.bin/newgrp/newgrp.c user/hrs/ipv6/usr.bin/nl/Makefile user/hrs/ipv6/usr.bin/nl/nl.c user/hrs/ipv6/usr.bin/paste/paste.c user/hrs/ipv6/usr.bin/pr/extern.h user/hrs/ipv6/usr.bin/pr/pr.c user/hrs/ipv6/usr.bin/printf/printf.1 user/hrs/ipv6/usr.bin/printf/printf.c user/hrs/ipv6/usr.bin/procstat/Makefile user/hrs/ipv6/usr.bin/procstat/procstat.1 user/hrs/ipv6/usr.bin/procstat/procstat.c user/hrs/ipv6/usr.bin/procstat/procstat.h user/hrs/ipv6/usr.bin/procstat/procstat_args.c user/hrs/ipv6/usr.bin/procstat/procstat_bin.c user/hrs/ipv6/usr.bin/procstat/procstat_cred.c user/hrs/ipv6/usr.bin/procstat/procstat_files.c user/hrs/ipv6/usr.bin/procstat/procstat_vm.c user/hrs/ipv6/usr.bin/quota/quota.c user/hrs/ipv6/usr.bin/rctl/rctl.8 user/hrs/ipv6/usr.bin/rlogin/rlogin.c user/hrs/ipv6/usr.bin/rpcgen/rpc_main.c user/hrs/ipv6/usr.bin/rpcgen/rpc_svcout.c user/hrs/ipv6/usr.bin/rpcgen/rpcgen.1 user/hrs/ipv6/usr.bin/rpcinfo/rpcinfo.c user/hrs/ipv6/usr.bin/rs/rs.c user/hrs/ipv6/usr.bin/ruptime/Makefile user/hrs/ipv6/usr.bin/ruptime/ruptime.c user/hrs/ipv6/usr.bin/rusers/rusers.c user/hrs/ipv6/usr.bin/rwall/rwall.c user/hrs/ipv6/usr.bin/rwho/Makefile user/hrs/ipv6/usr.bin/rwho/rwho.c user/hrs/ipv6/usr.bin/script/script.1 user/hrs/ipv6/usr.bin/script/script.c user/hrs/ipv6/usr.bin/sed/sed.1 user/hrs/ipv6/usr.bin/seq/seq.c user/hrs/ipv6/usr.bin/setchannel/setchannel.1 user/hrs/ipv6/usr.bin/sockstat/sockstat.1 user/hrs/ipv6/usr.bin/sockstat/sockstat.c user/hrs/ipv6/usr.bin/split/split.c user/hrs/ipv6/usr.bin/systat/cmds.c user/hrs/ipv6/usr.bin/systat/cmdtab.c user/hrs/ipv6/usr.bin/systat/devs.c user/hrs/ipv6/usr.bin/systat/fetch.c user/hrs/ipv6/usr.bin/systat/icmp.c user/hrs/ipv6/usr.bin/systat/icmp6.c user/hrs/ipv6/usr.bin/systat/ifcmds.c user/hrs/ipv6/usr.bin/systat/ifstat.c user/hrs/ipv6/usr.bin/systat/iostat.c user/hrs/ipv6/usr.bin/systat/ip.c user/hrs/ipv6/usr.bin/systat/keyboard.c user/hrs/ipv6/usr.bin/systat/mode.c user/hrs/ipv6/usr.bin/systat/mode.h user/hrs/ipv6/usr.bin/systat/netcmds.c user/hrs/ipv6/usr.bin/systat/netstat.c user/hrs/ipv6/usr.bin/systat/pigs.c user/hrs/ipv6/usr.bin/systat/systat.h user/hrs/ipv6/usr.bin/systat/tcp.c user/hrs/ipv6/usr.bin/systat/vmstat.c user/hrs/ipv6/usr.bin/tail/forward.c user/hrs/ipv6/usr.bin/tail/tail.c user/hrs/ipv6/usr.bin/talk/ctl.c user/hrs/ipv6/usr.bin/talk/ctl_transact.c user/hrs/ipv6/usr.bin/talk/get_names.c user/hrs/ipv6/usr.bin/talk/init_disp.c user/hrs/ipv6/usr.bin/talk/invite.c user/hrs/ipv6/usr.bin/talk/talk.h user/hrs/ipv6/usr.bin/tar/Makefile user/hrs/ipv6/usr.bin/tar/test/Makefile user/hrs/ipv6/usr.bin/tcopy/tcopy.c user/hrs/ipv6/usr.bin/tee/tee.c user/hrs/ipv6/usr.bin/tftp/main.c user/hrs/ipv6/usr.bin/tftp/tftp.1 user/hrs/ipv6/usr.bin/tip/tip/tip.c user/hrs/ipv6/usr.bin/tip/tip/tip.h user/hrs/ipv6/usr.bin/tip/tip/tipout.c user/hrs/ipv6/usr.bin/top/machine.c user/hrs/ipv6/usr.bin/top/top.local.1 user/hrs/ipv6/usr.bin/touch/touch.1 user/hrs/ipv6/usr.bin/touch/touch.c user/hrs/ipv6/usr.bin/tr/Makefile user/hrs/ipv6/usr.bin/tr/cset.c user/hrs/ipv6/usr.bin/tr/str.c user/hrs/ipv6/usr.bin/tr/tr.1 user/hrs/ipv6/usr.bin/tr/tr.c user/hrs/ipv6/usr.bin/truss/Makefile user/hrs/ipv6/usr.bin/truss/amd64-linux32.c user/hrs/ipv6/usr.bin/truss/extern.h user/hrs/ipv6/usr.bin/truss/i386-linux.c user/hrs/ipv6/usr.bin/truss/main.c user/hrs/ipv6/usr.bin/truss/setup.c user/hrs/ipv6/usr.bin/truss/syscalls.c user/hrs/ipv6/usr.bin/tset/map.c user/hrs/ipv6/usr.bin/tset/term.c user/hrs/ipv6/usr.bin/tset/wrterm.c user/hrs/ipv6/usr.bin/tsort/tsort.c user/hrs/ipv6/usr.bin/ul/ul.c user/hrs/ipv6/usr.bin/uname/uname.c user/hrs/ipv6/usr.bin/unexpand/unexpand.c user/hrs/ipv6/usr.bin/unifdef/unifdef.1 user/hrs/ipv6/usr.bin/unifdef/unifdef.c user/hrs/ipv6/usr.bin/uniq/uniq.c user/hrs/ipv6/usr.bin/units/units.1 user/hrs/ipv6/usr.bin/units/units.c user/hrs/ipv6/usr.bin/unzip/unzip.1 user/hrs/ipv6/usr.bin/unzip/unzip.c user/hrs/ipv6/usr.bin/usbhidaction/usbhidaction.1 user/hrs/ipv6/usr.bin/usbhidaction/usbhidaction.c user/hrs/ipv6/usr.bin/usbhidctl/usbhid.c user/hrs/ipv6/usr.bin/usbhidctl/usbhidctl.1 user/hrs/ipv6/usr.bin/uuencode/uuencode.c user/hrs/ipv6/usr.bin/vacation/Makefile user/hrs/ipv6/usr.bin/vgrind/extern.h user/hrs/ipv6/usr.bin/vgrind/vfontedpr.c user/hrs/ipv6/usr.bin/vgrind/vgrindefs.5 user/hrs/ipv6/usr.bin/vis/vis.c user/hrs/ipv6/usr.bin/vmstat/vmstat.c user/hrs/ipv6/usr.bin/w/w.c user/hrs/ipv6/usr.bin/wall/wall.1 user/hrs/ipv6/usr.bin/wall/wall.c user/hrs/ipv6/usr.bin/wc/wc.c user/hrs/ipv6/usr.bin/whereis/pathnames.h user/hrs/ipv6/usr.bin/whereis/whereis.c user/hrs/ipv6/usr.bin/which/which.c user/hrs/ipv6/usr.bin/who/who.1 user/hrs/ipv6/usr.bin/who/who.c user/hrs/ipv6/usr.bin/whois/whois.c user/hrs/ipv6/usr.bin/write/write.1 user/hrs/ipv6/usr.bin/write/write.c user/hrs/ipv6/usr.bin/xargs/xargs.1 user/hrs/ipv6/usr.bin/xargs/xargs.c user/hrs/ipv6/usr.bin/xinstall/xinstall.c user/hrs/ipv6/usr.bin/xlint/Makefile.inc user/hrs/ipv6/usr.bin/xlint/lint1/decl.c user/hrs/ipv6/usr.bin/xlint/lint1/emit1.c user/hrs/ipv6/usr.bin/xlint/lint1/func.c user/hrs/ipv6/usr.bin/xlint/lint1/mem1.c user/hrs/ipv6/usr.bin/xlint/lint2/chk.c user/hrs/ipv6/usr.bin/xlint/lint2/read.c user/hrs/ipv6/usr.bin/xlint/xlint/xlint.c user/hrs/ipv6/usr.bin/xstr/xstr.c user/hrs/ipv6/usr.bin/xzdec/Makefile user/hrs/ipv6/usr.bin/yacc/NEW_FEATURES user/hrs/ipv6/usr.bin/yacc/reader.c user/hrs/ipv6/usr.sbin/IPXrouted/sap_input.c user/hrs/ipv6/usr.sbin/IPXrouted/sap_tables.c user/hrs/ipv6/usr.sbin/IPXrouted/tables.c user/hrs/ipv6/usr.sbin/Makefile user/hrs/ipv6/usr.sbin/Makefile.arm user/hrs/ipv6/usr.sbin/Makefile.mips user/hrs/ipv6/usr.sbin/ac/ac.8 user/hrs/ipv6/usr.sbin/acpi/Makefile.inc user/hrs/ipv6/usr.sbin/acpi/acpiconf/acpiconf.8 user/hrs/ipv6/usr.sbin/acpi/acpidb/Makefile user/hrs/ipv6/usr.sbin/acpi/acpidb/acpidb.c user/hrs/ipv6/usr.sbin/acpi/iasl/Makefile user/hrs/ipv6/usr.sbin/adduser/adduser.conf.5 user/hrs/ipv6/usr.sbin/adduser/adduser.sh user/hrs/ipv6/usr.sbin/amd/Makefile.inc user/hrs/ipv6/usr.sbin/apm/apm.c user/hrs/ipv6/usr.sbin/apmd/apmd.8 user/hrs/ipv6/usr.sbin/arp/arp.4 user/hrs/ipv6/usr.sbin/arp/arp.c user/hrs/ipv6/usr.sbin/bluetooth/ath3kfw/ath3kfw.8 user/hrs/ipv6/usr.sbin/bluetooth/bt3cfw/bt3cfw.c user/hrs/ipv6/usr.sbin/bluetooth/btpand/event.h user/hrs/ipv6/usr.sbin/bluetooth/hccontrol/host_controller_baseband.c user/hrs/ipv6/usr.sbin/bluetooth/sdpd/server.c user/hrs/ipv6/usr.sbin/boot0cfg/Makefile user/hrs/ipv6/usr.sbin/boot0cfg/boot0cfg.8 user/hrs/ipv6/usr.sbin/boot0cfg/boot0cfg.c user/hrs/ipv6/usr.sbin/bootparamd/bootparamd/Makefile user/hrs/ipv6/usr.sbin/bootparamd/bootparamd/README user/hrs/ipv6/usr.sbin/bootparamd/bootparamd/bootparamd.8 user/hrs/ipv6/usr.sbin/bootparamd/bootparamd/bootparamd.c user/hrs/ipv6/usr.sbin/bootparamd/callbootd/Makefile user/hrs/ipv6/usr.sbin/bootparamd/callbootd/callbootd.c user/hrs/ipv6/usr.sbin/bsdinstall/bsdinstall.8 user/hrs/ipv6/usr.sbin/bsdinstall/distextract/distextract.c user/hrs/ipv6/usr.sbin/bsdinstall/distfetch/distfetch.c user/hrs/ipv6/usr.sbin/bsdinstall/partedit/diskeditor.c user/hrs/ipv6/usr.sbin/bsdinstall/partedit/gpart_ops.c user/hrs/ipv6/usr.sbin/bsdinstall/partedit/part_wizard.c user/hrs/ipv6/usr.sbin/bsdinstall/partedit/partedit.c user/hrs/ipv6/usr.sbin/bsdinstall/partedit/partedit.h user/hrs/ipv6/usr.sbin/bsdinstall/partedit/partedit_powerpc.c user/hrs/ipv6/usr.sbin/bsdinstall/scripts/auto user/hrs/ipv6/usr.sbin/bsdinstall/scripts/keymap user/hrs/ipv6/usr.sbin/bsdinstall/scripts/netconfig user/hrs/ipv6/usr.sbin/bsdinstall/scripts/netconfig_ipv4 user/hrs/ipv6/usr.sbin/bsdinstall/scripts/services user/hrs/ipv6/usr.sbin/bsdinstall/scripts/wlanconfig user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_addrs.c user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_if.c user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_port.c user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_sys.c user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_device_tbl.c user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_diskstorage_tbl.c user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_scalars.c user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_snmp.h user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_storage_tbl.c user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_tree.def user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_netgraph/snmp_netgraph.3 user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_wlan/BEGEMOT-WIRELESS-MIB.txt user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_wlan/snmp_wlan.3 user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h user/hrs/ipv6/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_tree.def user/hrs/ipv6/usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.1 user/hrs/ipv6/usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.c user/hrs/ipv6/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpmap.c user/hrs/ipv6/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.c user/hrs/ipv6/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.h user/hrs/ipv6/usr.sbin/burncd/burncd.8 user/hrs/ipv6/usr.sbin/burncd/burncd.c user/hrs/ipv6/usr.sbin/cdcontrol/cdcontrol.1 user/hrs/ipv6/usr.sbin/cdcontrol/cdcontrol.c user/hrs/ipv6/usr.sbin/chkgrp/chkgrp.8 user/hrs/ipv6/usr.sbin/chkgrp/chkgrp.c user/hrs/ipv6/usr.sbin/chown/chown.c user/hrs/ipv6/usr.sbin/chroot/chroot.c user/hrs/ipv6/usr.sbin/config/config.8 user/hrs/ipv6/usr.sbin/config/main.c user/hrs/ipv6/usr.sbin/config/mkmakefile.c user/hrs/ipv6/usr.sbin/cpucontrol/Makefile user/hrs/ipv6/usr.sbin/cpucontrol/cpucontrol.c user/hrs/ipv6/usr.sbin/crashinfo/crashinfo.sh user/hrs/ipv6/usr.sbin/cron/cron/do_command.c user/hrs/ipv6/usr.sbin/cron/crontab/crontab.5 user/hrs/ipv6/usr.sbin/cron/crontab/crontab.c user/hrs/ipv6/usr.sbin/cron/doc/CHANGES user/hrs/ipv6/usr.sbin/cron/doc/MAIL user/hrs/ipv6/usr.sbin/cron/lib/entry.c user/hrs/ipv6/usr.sbin/crunch/crunchide/Makefile user/hrs/ipv6/usr.sbin/ctm/ctm_dequeue/ctm_dequeue.c user/hrs/ipv6/usr.sbin/daemon/daemon.8 user/hrs/ipv6/usr.sbin/daemon/daemon.c user/hrs/ipv6/usr.sbin/dconschat/dconschat.c user/hrs/ipv6/usr.sbin/devinfo/devinfo.c user/hrs/ipv6/usr.sbin/diskinfo/diskinfo.c user/hrs/ipv6/usr.sbin/edquota/edquota.8 user/hrs/ipv6/usr.sbin/edquota/edquota.c user/hrs/ipv6/usr.sbin/faithd/faithd.8 user/hrs/ipv6/usr.sbin/faithd/prefix.c user/hrs/ipv6/usr.sbin/fdread/fdread.c user/hrs/ipv6/usr.sbin/fdwrite/fdwrite.1 user/hrs/ipv6/usr.sbin/freebsd-update/freebsd-update.8 user/hrs/ipv6/usr.sbin/freebsd-update/freebsd-update.sh user/hrs/ipv6/usr.sbin/fwcontrol/fwcontrol.8 user/hrs/ipv6/usr.sbin/fwcontrol/fwcontrol.c user/hrs/ipv6/usr.sbin/fwcontrol/fwmpegts.c user/hrs/ipv6/usr.sbin/gpioctl/gpioctl.8 user/hrs/ipv6/usr.sbin/gssd/Makefile user/hrs/ipv6/usr.sbin/i2c/i2c.8 user/hrs/ipv6/usr.sbin/i2c/i2c.c user/hrs/ipv6/usr.sbin/ifmcstat/ifmcstat.8 user/hrs/ipv6/usr.sbin/ifmcstat/ifmcstat.c user/hrs/ipv6/usr.sbin/inetd/builtins.c user/hrs/ipv6/usr.sbin/inetd/inetd.c user/hrs/ipv6/usr.sbin/iostat/iostat.c user/hrs/ipv6/usr.sbin/ipfwpcap/ipfwpcap.c user/hrs/ipv6/usr.sbin/jail/jail.8 user/hrs/ipv6/usr.sbin/jail/jail.c user/hrs/ipv6/usr.sbin/jls/jls.c user/hrs/ipv6/usr.sbin/kbdcontrol/kbdcontrol.c user/hrs/ipv6/usr.sbin/kbdcontrol/lex.h user/hrs/ipv6/usr.sbin/kbdcontrol/lex.l user/hrs/ipv6/usr.sbin/kbdmap/kbdmap.c user/hrs/ipv6/usr.sbin/keyserv/Makefile user/hrs/ipv6/usr.sbin/keyserv/crypt_server.c user/hrs/ipv6/usr.sbin/keyserv/keyserv.c user/hrs/ipv6/usr.sbin/kgmon/kgmon.c user/hrs/ipv6/usr.sbin/kldxref/kldxref.8 user/hrs/ipv6/usr.sbin/lmcconfig/lmcconfig.8 user/hrs/ipv6/usr.sbin/lpr/common_source/rmjob.c user/hrs/ipv6/usr.sbin/lpr/filters/lpf.c user/hrs/ipv6/usr.sbin/lpr/lpc/cmds.c user/hrs/ipv6/usr.sbin/lpr/lpc/lpc.c user/hrs/ipv6/usr.sbin/lpr/lpd/printjob.c user/hrs/ipv6/usr.sbin/lpr/lpr/printcap.5 user/hrs/ipv6/usr.sbin/lpr/pac/pac.c user/hrs/ipv6/usr.sbin/makefs/cd9660.c user/hrs/ipv6/usr.sbin/makefs/cd9660.h user/hrs/ipv6/usr.sbin/makefs/cd9660/cd9660_eltorito.c user/hrs/ipv6/usr.sbin/makefs/cd9660/cd9660_write.c user/hrs/ipv6/usr.sbin/makefs/cd9660/iso9660_rrip.c user/hrs/ipv6/usr.sbin/makefs/ffs.c user/hrs/ipv6/usr.sbin/makefs/ffs.h user/hrs/ipv6/usr.sbin/makefs/ffs/ffs_extern.h user/hrs/ipv6/usr.sbin/makefs/ffs/ffs_subr.c user/hrs/ipv6/usr.sbin/makefs/ffs/mkfs.c user/hrs/ipv6/usr.sbin/makefs/makefs.8 user/hrs/ipv6/usr.sbin/makefs/makefs.c user/hrs/ipv6/usr.sbin/makefs/makefs.h user/hrs/ipv6/usr.sbin/makefs/walk.c user/hrs/ipv6/usr.sbin/memcontrol/memcontrol.c user/hrs/ipv6/usr.sbin/mergemaster/mergemaster.8 user/hrs/ipv6/usr.sbin/mergemaster/mergemaster.sh user/hrs/ipv6/usr.sbin/mfiutil/mfi_config.c user/hrs/ipv6/usr.sbin/mfiutil/mfi_drive.c user/hrs/ipv6/usr.sbin/mfiutil/mfi_evt.c user/hrs/ipv6/usr.sbin/mfiutil/mfi_show.c user/hrs/ipv6/usr.sbin/mfiutil/mfiutil.8 user/hrs/ipv6/usr.sbin/mixer/mixer.c user/hrs/ipv6/usr.sbin/mlxcontrol/interface.c user/hrs/ipv6/usr.sbin/mount_portalfs/cred.c user/hrs/ipv6/usr.sbin/mount_portalfs/mount_portalfs.c user/hrs/ipv6/usr.sbin/mount_portalfs/pt_pipe.c user/hrs/ipv6/usr.sbin/mount_portalfs/pt_tcplisten.c user/hrs/ipv6/usr.sbin/mountd/exports.5 user/hrs/ipv6/usr.sbin/mountd/mountd.c user/hrs/ipv6/usr.sbin/moused/moused.c user/hrs/ipv6/usr.sbin/mptable/mptable.c user/hrs/ipv6/usr.sbin/mptutil/mpt_cam.c user/hrs/ipv6/usr.sbin/mptutil/mpt_config.c user/hrs/ipv6/usr.sbin/mptutil/mptutil.8 user/hrs/ipv6/usr.sbin/mtest/mtest.8 user/hrs/ipv6/usr.sbin/mtree/mtree.5 user/hrs/ipv6/usr.sbin/mtree/spec.c user/hrs/ipv6/usr.sbin/ndiscvt/Makefile user/hrs/ipv6/usr.sbin/ndiscvt/inf-token.l user/hrs/ipv6/usr.sbin/newsyslog/newsyslog.c user/hrs/ipv6/usr.sbin/newsyslog/newsyslog.conf.5 user/hrs/ipv6/usr.sbin/nfsd/nfsv4.4 user/hrs/ipv6/usr.sbin/nscd/protocol.h user/hrs/ipv6/usr.sbin/ntp/doc/ntp-keygen.8 user/hrs/ipv6/usr.sbin/ntp/doc/ntp.conf.5 user/hrs/ipv6/usr.sbin/ntp/doc/ntpdate.8 user/hrs/ipv6/usr.sbin/pc-sysinstall/backend-partmanager/create-part.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend-partmanager/delete-part.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend-query/disk-list.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend-query/sys-mem.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-cleanup.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-disk.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-extractimage.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-localize.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-mountdisk.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-networking.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-newfs.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-parse.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions-unmount.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/functions.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/parseconfig.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/backend/startautoinstall.sh user/hrs/ipv6/usr.sbin/pc-sysinstall/examples/README user/hrs/ipv6/usr.sbin/pciconf/pciconf.8 user/hrs/ipv6/usr.sbin/pciconf/pciconf.c user/hrs/ipv6/usr.sbin/periodic/periodic.sh user/hrs/ipv6/usr.sbin/pkg_install/README user/hrs/ipv6/usr.sbin/pkg_install/add/add.h user/hrs/ipv6/usr.sbin/pkg_install/add/extract.c user/hrs/ipv6/usr.sbin/pkg_install/add/futil.c user/hrs/ipv6/usr.sbin/pkg_install/add/main.c user/hrs/ipv6/usr.sbin/pkg_install/add/perform.c user/hrs/ipv6/usr.sbin/pkg_install/add/pkg_add.1 user/hrs/ipv6/usr.sbin/pkg_install/create/create.h user/hrs/ipv6/usr.sbin/pkg_install/create/main.c user/hrs/ipv6/usr.sbin/pkg_install/create/perform.c user/hrs/ipv6/usr.sbin/pkg_install/create/pkg_create.1 user/hrs/ipv6/usr.sbin/pkg_install/create/pl.c user/hrs/ipv6/usr.sbin/pkg_install/delete/delete.h user/hrs/ipv6/usr.sbin/pkg_install/delete/main.c user/hrs/ipv6/usr.sbin/pkg_install/delete/perform.c user/hrs/ipv6/usr.sbin/pkg_install/delete/pkg_delete.1 user/hrs/ipv6/usr.sbin/pkg_install/info/info.h user/hrs/ipv6/usr.sbin/pkg_install/info/main.c user/hrs/ipv6/usr.sbin/pkg_install/info/perform.c user/hrs/ipv6/usr.sbin/pkg_install/info/show.c user/hrs/ipv6/usr.sbin/pkg_install/lib/deps.c user/hrs/ipv6/usr.sbin/pkg_install/lib/exec.c user/hrs/ipv6/usr.sbin/pkg_install/lib/file.c user/hrs/ipv6/usr.sbin/pkg_install/lib/global.c user/hrs/ipv6/usr.sbin/pkg_install/lib/lib.h user/hrs/ipv6/usr.sbin/pkg_install/lib/match.c user/hrs/ipv6/usr.sbin/pkg_install/lib/msg.c user/hrs/ipv6/usr.sbin/pkg_install/lib/pen.c user/hrs/ipv6/usr.sbin/pkg_install/lib/plist.c user/hrs/ipv6/usr.sbin/pkg_install/lib/str.c user/hrs/ipv6/usr.sbin/pkg_install/lib/url.c user/hrs/ipv6/usr.sbin/pkg_install/lib/version.c user/hrs/ipv6/usr.sbin/pkg_install/updating/main.c user/hrs/ipv6/usr.sbin/pkg_install/updating/pathnames.h user/hrs/ipv6/usr.sbin/pkg_install/updating/pkg_updating.1 user/hrs/ipv6/usr.sbin/pkg_install/version/main.c user/hrs/ipv6/usr.sbin/pkg_install/version/perform.c user/hrs/ipv6/usr.sbin/pkg_install/version/version.h user/hrs/ipv6/usr.sbin/pmccontrol/pmccontrol.c user/hrs/ipv6/usr.sbin/pmcstat/pmcpl_calltree.c user/hrs/ipv6/usr.sbin/pmcstat/pmcpl_gprof.c user/hrs/ipv6/usr.sbin/pmcstat/pmcstat.8 user/hrs/ipv6/usr.sbin/pmcstat/pmcstat.c user/hrs/ipv6/usr.sbin/pmcstat/pmcstat_log.c user/hrs/ipv6/usr.sbin/portsnap/portsnap/portsnap.sh user/hrs/ipv6/usr.sbin/powerd/powerd.c user/hrs/ipv6/usr.sbin/ppp/auth.c user/hrs/ipv6/usr.sbin/ppp/cbcp.c user/hrs/ipv6/usr.sbin/ppp/chat.h user/hrs/ipv6/usr.sbin/ppp/command.c user/hrs/ipv6/usr.sbin/ppp/iface.c user/hrs/ipv6/usr.sbin/ppp/lqr.c user/hrs/ipv6/usr.sbin/ppp/mp.c user/hrs/ipv6/usr.sbin/ppp/physical.c user/hrs/ipv6/usr.sbin/ppp/ppp.8.m4 user/hrs/ipv6/usr.sbin/ppp/vjcomp.c user/hrs/ipv6/usr.sbin/pstat/pstat.c user/hrs/ipv6/usr.sbin/pw/cpdir.c user/hrs/ipv6/usr.sbin/pw/pw.8 user/hrs/ipv6/usr.sbin/pw/pw_user.c user/hrs/ipv6/usr.sbin/pwd_mkdb/pwd_mkdb.c user/hrs/ipv6/usr.sbin/quotaon/quotaon.c user/hrs/ipv6/usr.sbin/rarpd/rarpd.c user/hrs/ipv6/usr.sbin/rip6query/rip6query.c user/hrs/ipv6/usr.sbin/rmt/rmt.c user/hrs/ipv6/usr.sbin/route6d/Makefile user/hrs/ipv6/usr.sbin/route6d/route6d.8 user/hrs/ipv6/usr.sbin/route6d/route6d.c user/hrs/ipv6/usr.sbin/rpc.lockd/Makefile user/hrs/ipv6/usr.sbin/rpc.lockd/kern.c user/hrs/ipv6/usr.sbin/rpc.lockd/lockd_lock.c user/hrs/ipv6/usr.sbin/rpc.statd/Makefile user/hrs/ipv6/usr.sbin/rpc.yppasswdd/Makefile user/hrs/ipv6/usr.sbin/rpc.yppasswdd/yppasswdd_server.c user/hrs/ipv6/usr.sbin/rpc.ypupdated/Makefile user/hrs/ipv6/usr.sbin/rpc.ypupdated/yp_dbupdate.c user/hrs/ipv6/usr.sbin/rpc.ypxfrd/Makefile user/hrs/ipv6/usr.sbin/rpcbind/check_bound.c user/hrs/ipv6/usr.sbin/rpcbind/rpcbind.c user/hrs/ipv6/usr.sbin/rtadvd/config.c user/hrs/ipv6/usr.sbin/rtadvd/rtadvd.8 user/hrs/ipv6/usr.sbin/rtadvd/rtadvd.c user/hrs/ipv6/usr.sbin/rtadvd/rtadvd.conf.5 user/hrs/ipv6/usr.sbin/rtprio/rtprio.c user/hrs/ipv6/usr.sbin/rtsold/rtsold.8 user/hrs/ipv6/usr.sbin/rtsold/rtsold.c user/hrs/ipv6/usr.sbin/rwhod/rwhod.c user/hrs/ipv6/usr.sbin/sa/db.c user/hrs/ipv6/usr.sbin/sade/Makefile user/hrs/ipv6/usr.sbin/sade/devices.c user/hrs/ipv6/usr.sbin/sade/disks.c user/hrs/ipv6/usr.sbin/sade/dmenu.c user/hrs/ipv6/usr.sbin/sade/install.c user/hrs/ipv6/usr.sbin/sade/label.c user/hrs/ipv6/usr.sbin/sade/main.c user/hrs/ipv6/usr.sbin/sade/menus.c user/hrs/ipv6/usr.sbin/sade/misc.c user/hrs/ipv6/usr.sbin/sade/msg.c user/hrs/ipv6/usr.sbin/sade/sade.h user/hrs/ipv6/usr.sbin/sade/system.c user/hrs/ipv6/usr.sbin/sade/variable.c user/hrs/ipv6/usr.sbin/sendmail/Makefile user/hrs/ipv6/usr.sbin/setfib/setfib.1 user/hrs/ipv6/usr.sbin/snapinfo/snapinfo.c user/hrs/ipv6/usr.sbin/spray/spray.c user/hrs/ipv6/usr.sbin/syslogd/syslogd.8 user/hrs/ipv6/usr.sbin/tcpdump/tcpdump/tcpdump.1 user/hrs/ipv6/usr.sbin/timed/timed/CHANGES user/hrs/ipv6/usr.sbin/timed/timed/correct.c user/hrs/ipv6/usr.sbin/timed/timed/globals.h user/hrs/ipv6/usr.sbin/timed/timed/networkdelta.c user/hrs/ipv6/usr.sbin/timed/timed/readmsg.c user/hrs/ipv6/usr.sbin/timed/timed/timed.8 user/hrs/ipv6/usr.sbin/timed/timed/timed.c user/hrs/ipv6/usr.sbin/timed/timedc/cmds.c user/hrs/ipv6/usr.sbin/timed/timedc/timedc.c user/hrs/ipv6/usr.sbin/tzsetup/Makefile user/hrs/ipv6/usr.sbin/tzsetup/tzsetup.8 user/hrs/ipv6/usr.sbin/tzsetup/tzsetup.c user/hrs/ipv6/usr.sbin/uhsoctl/uhsoctl.c user/hrs/ipv6/usr.sbin/usbdump/usbdump.8 user/hrs/ipv6/usr.sbin/usbdump/usbdump.c user/hrs/ipv6/usr.sbin/vidcontrol/decode.c user/hrs/ipv6/usr.sbin/vidcontrol/vidcontrol.c user/hrs/ipv6/usr.sbin/vipw/vipw.8 user/hrs/ipv6/usr.sbin/wake/wake.c user/hrs/ipv6/usr.sbin/watch/watch.c user/hrs/ipv6/usr.sbin/wlandebug/wlandebug.8 user/hrs/ipv6/usr.sbin/wlconfig/wlconfig.8 user/hrs/ipv6/usr.sbin/wpa/hostapd/driver_freebsd.c user/hrs/ipv6/usr.sbin/wpa/hostapd/hostapd.8 user/hrs/ipv6/usr.sbin/wpa/wpa_supplicant/Makefile user/hrs/ipv6/usr.sbin/yp_mkdb/yp_mkdb.c user/hrs/ipv6/usr.sbin/ypbind/ypbind.c user/hrs/ipv6/usr.sbin/yppush/Makefile user/hrs/ipv6/usr.sbin/ypserv/Makefile user/hrs/ipv6/usr.sbin/ypserv/yp_access.c user/hrs/ipv6/usr.sbin/ypserv/yp_main.c user/hrs/ipv6/usr.sbin/ypserv/ypserv.8 Directory Properties: user/hrs/ipv6/ (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/ (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PDESC_ZERO.badlib.exe (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_FUNC.badfunc.exe (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_LIB.libdash.exe (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_NAME.alldash.exe (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_NAME.badname.exe (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_NAME.globdash.exe (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_OFF.toobig.exe (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.coverage.exe (props changed) user/hrs/ipv6/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.emptystack.exe (props changed) user/hrs/ipv6/contrib/bind9/ (props changed) user/hrs/ipv6/contrib/binutils/ (props changed) user/hrs/ipv6/contrib/bzip2/ (props changed) user/hrs/ipv6/contrib/com_err/ (props changed) user/hrs/ipv6/contrib/compiler-rt/ (props changed) user/hrs/ipv6/contrib/dialog/ (props changed) user/hrs/ipv6/contrib/ee/ (props changed) user/hrs/ipv6/contrib/expat/ (props changed) user/hrs/ipv6/contrib/file/ (props changed) user/hrs/ipv6/contrib/gcc/ (props changed) user/hrs/ipv6/contrib/gdb/ (props changed) user/hrs/ipv6/contrib/gdtoa/ (props changed) user/hrs/ipv6/contrib/gnu-sort/ (props changed) user/hrs/ipv6/contrib/groff/ (props changed) user/hrs/ipv6/contrib/less/ (props changed) user/hrs/ipv6/contrib/libarchive/cpio/ (props changed) user/hrs/ipv6/contrib/libarchive/libarchive/ (props changed) user/hrs/ipv6/contrib/libarchive/libarchive_fe/ (props changed) user/hrs/ipv6/contrib/libarchive/tar/ (props changed) user/hrs/ipv6/contrib/libpcap/ (props changed) user/hrs/ipv6/contrib/libstdc++/ (props changed) user/hrs/ipv6/contrib/llvm/ (props changed) user/hrs/ipv6/contrib/llvm/tools/clang/ (props changed) user/hrs/ipv6/contrib/ncurses/ (props changed) user/hrs/ipv6/contrib/netcat/ (props changed) user/hrs/ipv6/contrib/ntp/ (props changed) user/hrs/ipv6/contrib/one-true-awk/ (props changed) user/hrs/ipv6/contrib/openbsm/ (props changed) user/hrs/ipv6/contrib/openpam/ (props changed) user/hrs/ipv6/contrib/openresolv/ (props changed) user/hrs/ipv6/contrib/pf/ (props changed) user/hrs/ipv6/contrib/sendmail/ (props changed) user/hrs/ipv6/contrib/tcpdump/ (props changed) user/hrs/ipv6/contrib/tcsh/ (props changed) user/hrs/ipv6/contrib/tcsh/nls/greek/set24 (props changed) user/hrs/ipv6/contrib/tcsh/nls/ja/set24 (props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set21 (props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set24 (props changed) user/hrs/ipv6/contrib/tcsh/nls/russian/set3 (props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set21 (props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set24 (props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set3 (props changed) user/hrs/ipv6/contrib/tcsh/nls/ukrainian/set4 (props changed) user/hrs/ipv6/contrib/tnftp/ (props changed) user/hrs/ipv6/contrib/top/ (props changed) user/hrs/ipv6/contrib/top/install-sh (props changed) user/hrs/ipv6/contrib/tzcode/stdtime/ (props changed) user/hrs/ipv6/contrib/tzcode/zic/ (props changed) user/hrs/ipv6/contrib/tzdata/ (props changed) user/hrs/ipv6/contrib/wpa/ (props changed) user/hrs/ipv6/contrib/xz/ (props changed) user/hrs/ipv6/crypto/heimdal/ (props changed) user/hrs/ipv6/crypto/heimdal/ChangeLog.1998 (props changed) user/hrs/ipv6/crypto/heimdal/ChangeLog.1999 (props changed) user/hrs/ipv6/crypto/heimdal/ChangeLog.2000 (props changed) user/hrs/ipv6/crypto/heimdal/ChangeLog.2001 (props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/ftp_var.h (props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftp/pathnames.h (props changed) user/hrs/ipv6/crypto/heimdal/appl/ftp/ftpd/pathnames.h (props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/README.ORIG (props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/arpa/telnet.h (props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/libtelnet/misc.h (props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet.state (props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/defines.h (props changed) user/hrs/ipv6/crypto/heimdal/appl/telnet/telnet/types.h (props changed) user/hrs/ipv6/crypto/heimdal/lib/hx509/ref/pkcs11.h (props changed) user/hrs/ipv6/crypto/heimdal/lib/kadm5/kadm5-protos.h (props changed) user/hrs/ipv6/crypto/openssh/ (props changed) user/hrs/ipv6/crypto/openssh/bufec.c (props changed) user/hrs/ipv6/crypto/openssh/kexecdh.c (props changed) user/hrs/ipv6/crypto/openssh/kexecdhc.c (props changed) user/hrs/ipv6/crypto/openssh/kexecdhs.c (props changed) user/hrs/ipv6/crypto/openssh/openbsd-compat/charclass.h (props changed) user/hrs/ipv6/crypto/openssh/openbsd-compat/sha2.c (props changed) user/hrs/ipv6/crypto/openssh/openbsd-compat/sha2.h (props changed) user/hrs/ipv6/crypto/openssh/openbsd-compat/strptime.c (props changed) user/hrs/ipv6/crypto/openssh/openbsd-compat/timingsafe_bcmp.c (props changed) user/hrs/ipv6/crypto/openssh/ssh-ecdsa.c (props changed) user/hrs/ipv6/crypto/openssl/ (props changed) user/hrs/ipv6/gnu/lib/ (props changed) user/hrs/ipv6/gnu/usr.bin/binutils/ (props changed) user/hrs/ipv6/gnu/usr.bin/cc/cc_tools/ (props changed) user/hrs/ipv6/gnu/usr.bin/gdb/ (props changed) user/hrs/ipv6/lib/libc/ (props changed) user/hrs/ipv6/lib/libc/stdtime/ (props changed) user/hrs/ipv6/lib/libutil/ (props changed) user/hrs/ipv6/lib/libz/ (props changed) user/hrs/ipv6/sbin/ (props changed) user/hrs/ipv6/sbin/ipfw/ (props changed) user/hrs/ipv6/share/man/man4/ (props changed) user/hrs/ipv6/share/mk/bsd.arch.inc.mk (props changed) user/hrs/ipv6/share/zoneinfo/ (props changed) user/hrs/ipv6/sys/ (props changed) user/hrs/ipv6/sys/amd64/include/xen/ (props changed) user/hrs/ipv6/sys/boot/ (props changed) user/hrs/ipv6/sys/boot/i386/efi/ (props changed) user/hrs/ipv6/sys/boot/ia64/efi/ (props changed) user/hrs/ipv6/sys/boot/ia64/ski/ (props changed) user/hrs/ipv6/sys/boot/powerpc/boot1.chrp/ (props changed) user/hrs/ipv6/sys/boot/powerpc/ofw/ (props changed) user/hrs/ipv6/sys/cddl/contrib/opensolaris/ (props changed) user/hrs/ipv6/sys/conf/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/common/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/compiler/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/debugger/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/disassembler/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/dispatcher/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/events/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/executer/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/hardware/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/namespace/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/parser/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/resources/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/tables/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/components/utilities/ (props changed) user/hrs/ipv6/sys/contrib/dev/acpica/include/ (props changed) user/hrs/ipv6/sys/contrib/octeon-sdk/ (props changed) user/hrs/ipv6/sys/contrib/pf/ (props changed) user/hrs/ipv6/sys/contrib/x86emu/ (props changed) user/hrs/ipv6/tools/build/options/WITHOUT_GPIO (props changed) user/hrs/ipv6/tools/build/options/WITH_OFED (props changed) user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_pci (props changed) user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_sound (props changed) user/hrs/ipv6/tools/kerneldoc/subsys/Doxyfile-dev_usb (props changed) user/hrs/ipv6/tools/test/testfloat/testfloat-history.txt (props changed) user/hrs/ipv6/usr.bin/calendar/ (props changed) user/hrs/ipv6/usr.bin/csup/ (props changed) user/hrs/ipv6/usr.bin/procstat/ (props changed) user/hrs/ipv6/usr.sbin/ndiscvt/ (props changed) user/hrs/ipv6/usr.sbin/rtadvd/ (props changed) user/hrs/ipv6/usr.sbin/rtsold/ (props changed) user/hrs/ipv6/usr.sbin/zic/ (props changed) Modified: user/hrs/ipv6/COPYRIGHT ============================================================================== --- user/hrs/ipv6/COPYRIGHT Wed Apr 18 17:44:05 2012 (r234427) +++ user/hrs/ipv6/COPYRIGHT Wed Apr 18 18:11:32 2012 (r234428) @@ -4,7 +4,7 @@ The compilation of software known as FreeBSD is distributed under the following terms: -Copyright (c) 1992-2011 The FreeBSD Project. All rights reserved. +Copyright (c) 1992-2012 The FreeBSD Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions Modified: user/hrs/ipv6/MAINTAINERS ============================================================================== --- user/hrs/ipv6/MAINTAINERS Wed Apr 18 17:44:05 2012 (r234427) +++ user/hrs/ipv6/MAINTAINERS Wed Apr 18 18:11:32 2012 (r234428) @@ -123,9 +123,8 @@ 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 +isci(4) jimharris Pre-commit review requested. Following are the entries from the Makefiles, and a few other sources. Please remove stale entries from both their origin, and this file. Modified: user/hrs/ipv6/Makefile ============================================================================== --- user/hrs/ipv6/Makefile Wed Apr 18 17:44:05 2012 (r234427) +++ user/hrs/ipv6/Makefile Wed Apr 18 18:11:32 2012 (r234428) @@ -18,13 +18,14 @@ # reinstallkernel.debug # kernel - buildkernel + installkernel. # kernel-toolchain - Builds the subset of world necessary to build a kernel +# kernel-toolchains - Build kernel-toolchain for all universe targets. # doxygen - Build API documentation of the kernel, needs doxygen. # update - Convenient way to update your source tree(s). # check-old - List obsolete directories/files/libraries. # check-old-dirs - List obsolete directories. # check-old-files - List obsolete files. # check-old-libs - List obsolete libraries. -# delete-old - Delete obsolete directories/files/libraries. +# delete-old - Delete obsolete directories/files. # delete-old-dirs - Delete obsolete directories. # delete-old-files - Delete obsolete files. # delete-old-libs - Delete obsolete libraries. @@ -131,20 +132,19 @@ _MAKE= PATH=${PATH} ${BINMAKE} -f Makefi # Guess machine architecture from machine type, and vice versa. .if !defined(TARGET_ARCH) && defined(TARGET) -_TARGET_ARCH= ${TARGET:S/pc98/i386/:S/mips/mipsel/} +_TARGET_ARCH= ${TARGET:S/pc98/i386/} .elif !defined(TARGET) && defined(TARGET_ARCH) && \ ${TARGET_ARCH} != ${MACHINE_ARCH} -_TARGET= ${TARGET_ARCH:C/mips.*e[lb]/mips/:C/armeb/arm/} +_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/} .endif -# Legacy names, for a transition period mips:mips -> mipsel:mips +# Legacy names, for another transition period mips:mips(n32|64)?eb -> mips:mips\1 .if defined(TARGET) && defined(TARGET_ARCH) && \ - ${TARGET_ARCH} == "mips" && ${TARGET} == "mips" -.warning "TARGET_ARCH of mips is deprecated in favor of mipsel or mipseb" -.if defined(TARGET_BIG_ENDIAN) -_TARGET_ARCH=mipseb -.else -_TARGET_ARCH=mipsel + ${TARGET} == "mips" && ${TARGET_ARCH:Mmips*eb} +_TARGET_ARCH= ${TARGET_ARCH:C/eb$//} +.warning "TARGET_ARCH of ${TARGET_ARCH} is deprecated in favor of ${_TARGET_ARCH}" .endif +.if defined(TARGET) && ${TARGET} == "mips" && defined(TARGET_BIG_ENDIAN) +.warning "TARGET_BIG_ENDIAN is no longer necessary for MIPS. Big-endian is not the default." .endif # arm with TARGET_BIG_ENDIAN -> armeb .if defined(TARGET_ARCH) && ${TARGET_ARCH} == "arm" && defined(TARGET_BIG_ENDIAN) @@ -182,10 +182,12 @@ buildworld: upgrade_checks # # In the following, the first 'rm' in a series will usually remove all # files and directories. If it does not, then there are probably some -# files with chflags set, so this unsets them and tries the 'rm' a +# files with file flags set, so this unsets them and tries the 'rm' a # second time. There are situations where this target will be cleaning # some directories via more than one method, but that duplication is -# needed to correctly handle all the possible situations. +# needed to correctly handle all the possible situations. Removing all +# files without file flags set in the first 'rm' instance saves time, +# because 'chflags' will need to operate on fewer files afterwards. # BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR} cleanworld: @@ -315,6 +317,9 @@ tinderbox: toolchains: @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe +kernel-toolchains: + @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=kernel-toolchain universe + # # universe # @@ -325,7 +330,7 @@ toolchains: .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64 TARGET_ARCHES_arm?= arm armeb -TARGET_ARCHES_mips?= mipsel mipseb mips64el mips64eb mipsn32eb +TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 .for target in ${TARGETS} Modified: user/hrs/ipv6/Makefile.inc1 ============================================================================== --- user/hrs/ipv6/Makefile.inc1 Wed Apr 18 17:44:05 2012 (r234427) +++ user/hrs/ipv6/Makefile.inc1 Wed Apr 18 18:11:32 2012 (r234428) @@ -15,8 +15,11 @@ # -DNO_WWWUPDATE do not update www in ${MAKE} update # -DNO_CTF do not run the DTrace CTF conversion tools on built objects # LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list +# LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools +# list # TARGET="machine" to crossbuild world for a different machine type # TARGET_ARCH= may be required when a TARGET supports multiple endians +# BUILDENV_SHELL= shell to launch for the buildenv target (def:/bin/sh) # # The intended user-driven targets are: @@ -59,8 +62,6 @@ SUBDIR+=games .endif .if ${MK_CDDL} != "no" SUBDIR+=cddl -.else -NO_CTF=1 .endif SUBDIR+=gnu include .if ${MK_KERBEROS} != "no" @@ -106,6 +107,10 @@ CLEANDIR= clean cleandepend CLEANDIR= cleandir .endif +LOCAL_TOOL_DIRS?= + +BUILDENV_SHELL?=/bin/sh + CVS?= cvs CVSFLAGS?= -A -P -d -I! SVN?= svn @@ -131,7 +136,7 @@ VERSION!= uname -srp VERSION+= ${OSRELDATE} .endif -KNOWN_ARCHES?= amd64 arm armeb/arm i386 i386/pc98 ia64 mipsel/mips mipseb/mips mips64el/mips mips64eb/mips mipsn32el/mips mipsn32eb/mips powerpc powerpc64/powerpc sparc64 +KNOWN_ARCHES?= amd64 arm armeb/arm i386 i386/pc98 ia64 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 .if ${TARGET} == ${TARGET_ARCH} _t= ${TARGET} .else @@ -239,7 +244,7 @@ BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ BOOTSTRAPPING=${OSRELDATE} \ SSP_CFLAGS= \ -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \ - -DNO_PIC -DWITHOUT_PROFILE -DNO_SHARED \ + -DNO_PIC -DNO_PROFILE -DNO_SHARED \ -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF # build-tools stage @@ -278,7 +283,6 @@ LIB32CPUFLAGS= -march=i686 -mmmx -msse - .else LIB32CPUFLAGS= -march=${TARGET_CPUTYPE} .endif -LIB32CPUFLAGS+= -mfancy-math-387 LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \ MACHINE_CPU="i686 mmx sse sse2" \ LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \ @@ -291,7 +295,7 @@ LIB32CPUFLAGS= -mcpu=powerpc LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE} .endif LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc \ - LD="${LD} -m elf32ppc" + LD="${LD} -m elf32ppc_fbsd" .endif @@ -313,7 +317,8 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \ -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \ - -DWITHOUT_HTML -DNO_CTF -DNO_LINT DESTDIR=${LIB32TMP} + -DWITHOUT_HTML -DNO_CTF -DNO_LINT -ECC -ECXX -EAS -ELD \ + DESTDIR=${LIB32TMP} LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*} -DNO_INCS .endif @@ -437,7 +442,7 @@ _libraries: @echo "--------------------------------------------------------------" ${_+_}cd ${.CURDIR}; \ ${WMAKE} -DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \ - -DWITHOUT_MAN -DWITHOUT_PROFILE libraries + -DWITHOUT_MAN -DNO_PROFILE libraries _depend: @echo @echo "--------------------------------------------------------------" @@ -463,13 +468,6 @@ build32: -p ${LIB32TMP}/usr/include >/dev/null mkdir -p ${WORLDTMP} ln -sf ${.CURDIR}/sys ${WORLDTMP} -.if ${MK_KERBEROS} != "no" -.for _t in obj depend all - cd ${.CURDIR}/kerberos5/tools; \ - MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \ - DIRPRFX=kerberos5/tools/ ${_t} -.endfor -.endif .for _t in obj includes cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t} cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t} @@ -556,7 +554,7 @@ buildenvvars: buildenv: @echo Entering world for ${TARGET_ARCH}:${TARGET} - @cd ${.CURDIR} && env ${WMAKEENV} sh || true + @cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32} toolchain: ${TOOLCHAIN_TGTS} @@ -830,6 +828,7 @@ buildkernel: @echo ">>> stage 2.3: build tools" @echo "--------------------------------------------------------------" cd ${KRNLOBJDIR}/${_kernel}; \ + PATH=${BPATH}:${PATH} \ MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \ ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \ -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile @@ -837,6 +836,7 @@ buildkernel: .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules) .for target in obj depend all cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \ + PATH=${BPATH}:${PATH} \ MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \ ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF ${target} .endfor @@ -885,10 +885,21 @@ distributekernel distributekernel.debug: ${CROSSENV} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \ DESTDIR=${DESTDIR}/${DISTDIR}/kernel \ ${.TARGET:S/distributekernel/install/} +.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//} + cd ${KRNLOBJDIR}/${_kernel}; \ + ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ + KERNEL=${INSTKERNNAME}.${_kernel} \ + DESTDIR=${DESTDIR}/${DISTDIR}/kernel.${_kernel} \ + ${.TARGET:S/distributekernel/install/} +.endfor packagekernel: - ${_+_}cd ${DESTDIR}/${DISTDIR}/kernel; \ + cd ${DESTDIR}/${DISTDIR}/kernel; \ tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz . +.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//} + cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ + tar cvJf ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz . +.endfor # # doxygen @@ -1018,7 +1029,8 @@ _yacc= usr.bin/yacc _awk= usr.bin/awk .endif -.if ${BOOTSTRAPPING} < 700018 +.if ${MK_BSNMP} != "no" && \ + (${BOOTSTRAPPING} < 700018 || !exists(/usr/sbin/gensnmptree)) _gensnmptree= usr.sbin/bsnmpd/gensnmptree .endif @@ -1030,12 +1042,16 @@ _crunchgen= usr.sbin/crunch/crunchgen .if ${MK_CLANG} != "no" _clang_tblgen= \ lib/clang/libllvmsupport \ - usr.bin/clang/tblgen + lib/clang/libllvmtablegen \ + usr.bin/clang/tblgen \ + usr.bin/clang/clang-tblgen .endif +# dtrace tools are required for older bootstrap env and cross-build .if ${MK_CDDL} != "no" && \ - ${BOOTSTRAPPING} < 800038 && \ - !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999) + ((${BOOTSTRAPPING} < 800038 && \ + !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999)) \ + || (${MACHINE} != ${TARGET} || ${MACHINE_ARCH} != ${TARGET_ARCH})) _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \ lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge .endif @@ -1044,12 +1060,22 @@ _dtrace_tools= cddl/usr.bin/sgsmsg cddl/ _dtc= gnu/usr.bin/dtc .endif +.if ${MK_KERBEROS} != "no" +_kerberos5_bootstrap_tools= \ + kerberos5/tools/make-roken \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/tools/asn1_compile \ + kerberos5/tools/slc +.endif + # Please document (add comment) why something is in 'bootstrap-tools'. # Try to bound the building of the bootstrap-tool to just the # FreeBSD versions that need the tool built at this stage of the build. bootstrap-tools: .for _tool in \ ${_clang_tblgen} \ + ${_kerberos5_bootstrap_tools} \ ${_dtrace_tools} \ ${_strfile} \ ${_gperf} \ @@ -1087,8 +1113,8 @@ _aicasm= sys/modules/aic7xxx/aicasm _share= share/syscons/scrnmaps .endif -.if ${MK_KERBEROS} != "no" -_kerberos5_tools= kerberos5/tools +.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +_gcc_tools= gnu/usr.bin/cc/cc_tools .endif .if ${MK_RESCUE} != "no" @@ -1100,13 +1126,13 @@ build-tools: bin/csh \ bin/sh \ ${_rescue} \ + ${LOCAL_TOOL_DIRS} \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ ${_share} \ ${_aicasm} \ usr.bin/awk \ lib/libmagic \ - usr.sbin/sysinstall \ usr.bin/mkesdb_static \ usr.bin/mkcsmapper_static ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \ @@ -1115,8 +1141,7 @@ build-tools: ${MAKE} DIRPRFX=${_tool}/ build-tools .endfor .for _tool in \ - gnu/usr.bin/cc/cc_tools \ - ${_kerberos5_tools} + ${_gcc_tools} ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \ cd ${.CURDIR}/${_tool}; \ ${MAKE} DIRPRFX=${_tool}/ obj; \ @@ -1145,14 +1170,12 @@ _kgzip= usr.sbin/kgzip _binutils= gnu/usr.bin/binutils .endif -.if ${MK_CLANG} != "no" -.if ${CC:T:Mclang} == "clang" +.if ${MK_CLANG} != "no" && (${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang") _clang= usr.bin/clang _clang_libs= lib/clang .endif -.endif -.if ${MK_GCC} != "no" +.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" _cc= gnu/usr.bin/cc .endif @@ -1215,13 +1238,25 @@ _startup_libs+= lib/csu/${MACHINE_CPUARC _startup_libs+= gnu/lib/libgcc _startup_libs+= lib/libcompiler_rt _startup_libs+= lib/libc +.if ${MK_LIBCPLUSPLUS} != "no" +_startup_libs+= lib/libcxxrt +.endif gnu/lib/libgcc__L: lib/libc__L +.if ${MK_LIBCPLUSPLUS} != "no" +lib/libcxxrt__L: gnu/lib/libgcc__L +.endif -_prebuild_libs= ${_kerberos5_lib_libasn1} ${_kerberos5_lib_libheimntlm} \ +_prebuild_libs= ${_kerberos5_lib_libasn1} \ + ${_kerberos5_lib_libhdb} \ + ${_kerberos5_lib_libheimbase} \ + ${_kerberos5_lib_libheimntlm} \ + ${_kerberos5_lib_libheimsqlite} \ + ${_kerberos5_lib_libheimipcc} \ ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ ${_kerberos5_lib_libroken} \ - lib/libbz2 lib/libcom_err lib/libcrypt \ + ${_kerberos5_lib_libwind} \ + lib/libbz2 ${_libcom_err} lib/libcrypt \ lib/libexpat \ ${_lib_libgssapi} ${_lib_libipx} \ lib/libkiconv lib/libkvm lib/liblzma lib/libmd \ @@ -1268,6 +1303,26 @@ 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/libwind__L kerberos5/lib/libheimsqlite__L +kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \ + kerberos5/lib/libroken__L lib/libcom_err__L +kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ + secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L +kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ + lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \ + kerberos5/lib/libroken__L kerberos5/lib/libwind__L \ + kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L +kerberos5/lib/libroken__L: lib/libcrypt__L +kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L +kerberos5/lib/libheimbase__L: lib/libthr__L +kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L +kerberos5/lib/libheimsqlite__L: lib/libthr__L +.endif + .if ${MK_GSSAPI} != "no" _lib_libgssapi= lib/libgssapi .endif @@ -1279,10 +1334,16 @@ _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_libheimbase= kerberos5/lib/libheimbase _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5 _kerberos5_lib_libhx509= kerberos5/lib/libhx509 _kerberos5_lib_libroken= kerberos5/lib/libroken _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm +_kerberos5_lib_libheimsqlite= kerberos5/lib/libheimsqlite +_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc +_kerberos5_lib_libwind= kerberos5/lib/libwind +_libcom_err= lib/libcom_err .endif .if ${MK_NIS} != "no" @@ -1300,8 +1361,8 @@ ${_lib}__PL: .PHONY cd ${.CURDIR}/${_lib}; \ ${MAKE} DIRPRFX=${_lib}/ obj; \ ${MAKE} DIRPRFX=${_lib}/ depend; \ - ${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \ - ${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install + ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \ + ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install .endif .endfor @@ -1534,7 +1595,7 @@ XDEV_CPUTYPE?=${TARGET_CPUTYPE} .endif NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \ - -DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_PROFILE \ + -DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \ -DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_WARNS \ TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \ CPUTYPE=${XDEV_CPUTYPE} @@ -1618,4 +1679,7 @@ _xi-links: ln -sf ../../${XDTP}/usr/bin/$$i \ ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \ done +.else +xdev xdev-buil xdev-install: + @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target" .endif Modified: user/hrs/ipv6/ObsoleteFiles.inc ============================================================================== --- user/hrs/ipv6/ObsoleteFiles.inc Wed Apr 18 17:44:05 2012 (r234427) +++ user/hrs/ipv6/ObsoleteFiles.inc Wed Apr 18 18:11:32 2012 (r234428) @@ -38,6 +38,117 @@ # xargs -n1 | sort | uniq -d; # done +# 20120415: new clang import which bumps version from 3.0 to 3.1 +OLD_FILES+=usr/include/clang/3.0/altivec.h +OLD_FILES+=usr/include/clang/3.0/avxintrin.h +OLD_FILES+=usr/include/clang/3.0/emmintrin.h +OLD_FILES+=usr/include/clang/3.0/immintrin.h +OLD_FILES+=usr/include/clang/3.0/mm3dnow.h +OLD_FILES+=usr/include/clang/3.0/mm_malloc.h +OLD_FILES+=usr/include/clang/3.0/mmintrin.h +OLD_FILES+=usr/include/clang/3.0/nmmintrin.h +OLD_FILES+=usr/include/clang/3.0/pmmintrin.h +OLD_FILES+=usr/include/clang/3.0/smmintrin.h +OLD_FILES+=usr/include/clang/3.0/tmmintrin.h +OLD_FILES+=usr/include/clang/3.0/wmmintrin.h +OLD_FILES+=usr/include/clang/3.0/x86intrin.h +OLD_FILES+=usr/include/clang/3.0/xmmintrin.h +OLD_DIRS+=usr/include/clang/3.0 +# 20120322: Update heimdal to 1.5.1. +OLD_FILES+=usr/include/krb5-v4compat.h \ + usr/include/krb_err.h \ + usr/include/hdb-private.h \ + usr/share/man/man3/krb5_addresses.3.gz \ + usr/share/man/man3/krb5_cc_cursor.3.gz \ + usr/share/man/man3/krb5_cc_ops.3.gz \ + usr/share/man/man3/krb5_config.3.gz \ + usr/share/man/man3/krb5_config_get_int_default.3.gz \ + usr/share/man/man3/krb5_context.3.gz \ + usr/share/man/man3/krb5_data.3.gz \ + usr/share/man/man3/krb5_err.3.gz \ + usr/share/man/man3/krb5_errx.3.gz \ + usr/share/man/man3/krb5_keyblock.3.gz \ + usr/share/man/man3/krb5_keytab_entry.3.gz \ + usr/share/man/man3/krb5_kt_cursor.3.gz \ + usr/share/man/man3/krb5_kt_ops.3.gz \ + usr/share/man/man3/krb5_set_warn_dest.3.gz \ + usr/share/man/man3/krb5_verr.3.gz \ + usr/share/man/man3/krb5_verrx.3.gz \ + usr/share/man/man3/krb5_vwarnx.3.gz \ + usr/share/man/man3/krb5_warn.3.gz \ + usr/share/man/man3/krb5_warnx.3.gz +OLD_LIBS+=usr/lib/libasn1.so.10 \ + usr/lib/libhdb.so.10 \ + usr/lib/libheimntlm.so.10 \ + usr/lib/libhx509.so.10 \ + usr/lib/libkadm5clnt.so.10 \ + usr/lib/libkadm5srv.so.10 \ + usr/lib/libkafs5.so.10 \ + usr/lib/libkrb5.so.10 \ + usr/lib/libroken.so.10 \ + usr/lib32/libasn1.so.10 \ + usr/lib32/libhdb.so.10 \ + usr/lib32/libheimntlm.so.10 \ + usr/lib32/libhx509.so.10 \ + usr/lib32/libkadm5clnt.so.10 \ + usr/lib32/libkadm5srv.so.10 \ + usr/lib32/libkafs5.so.10 \ + usr/lib32/libkrb5.so.10 \ + usr/lib32/libroken.so.10 +# 20120309: Remove fifofs header files. +OLD_FILES+=usr/include/fs/fifofs/fifo.h +OLD_DIRS+=usr/include/fs/fifofs +# 20120225: libarchive 3.0.3 +OLD_FILES+=usr/share/man/man3/archive_read_data_into_buffer.3.gz \ + usr/share/man/man3/archive_read_support_compression_all.3.gz \ + usr/share/man/man3/archive_read_support_compression_bzip2.3.gz \ + usr/share/man/man3/archive_read_support_compression_compress.3.gz \ + usr/share/man/man3/archive_read_support_compression_gzip.3.gz \ + usr/share/man/man3/archive_read_support_compression_lzma.3.gz \ + usr/share/man/man3/archive_read_support_compression_none.3.gz \ + usr/share/man/man3/archive_read_support_compression_program.3.gz \ + usr/share/man/man3/archive_read_support_compression_program_signature.3.gz \ + usr/share/man/man3/archive_read_support_compression_xz.3.gz \ + usr/share/man/man3/archive_write_set_callbacks.3.gz \ + usr/share/man/man3/archive_write_set_compression_bzip2.3.gz \ + usr/share/man/man3/archive_write_set_compression_compress.3.gz \ + usr/share/man/man3/archive_write_set_compression_gzip.3.gz \ + usr/share/man/man3/archive_write_set_compression_none.3.gz \ + usr/share/man/man3/archive_write_set_compression_program.3.gz +OLD_LIBS+=usr/lib/libarchive.so.5 +OLD_LIBS+=usr/lib32/libarchive.so.5 +# 20120113: removal of wtmpcvt(1) +OLD_FILES+=usr/bin/wtmpcvt +OLD_FILES+=usr/share/man/man1/wtmpcvt.1.gz +# 20111214: eventtimers(7) moved to eventtimers(4) +OLD_FILES+=usr/share/man/man7/eventtimers.7.gz +# 20111125: amd(4) removed +OLD_FILES+=usr/share/man/man4/amd.4.gz +# 20111125: libodialog removed +OLD_FILES+=usr/lib/libodialog.a +OLD_FILES+=usr/lib/libodialog.so +OLD_LIBS+=usr/lib/libodialog.so.7 +OLD_FILES+=usr/lib/libodialog_p.a +OLD_FILES+=usr/lib32/libodialog.a +OLD_FILES+=usr/lib32/libodialog.so +OLD_LIBS+=usr/lib32/libodialog.so.7 +OLD_FILES+=usr/lib32/libodialog_p.a +# 20110930: sysinstall removed +OLD_FILES+=usr/sbin/sysinstall +OLD_FILES+=usr/share/man/man8/sysinstall.8.gz +OLD_FILES+=usr/lib/libftpio.a +OLD_FILES+=usr/lib/libftpio.so +OLD_LIBS+=usr/lib/libftpio.so.8 +OLD_FILES+=usr/lib/libftpio_p.a +OLD_FILES+=usr/lib32/libftpio.a +OLD_FILES+=usr/lib32/libftpio.so +OLD_LIBS+=usr/lib32/libftpio.so.8 +OLD_FILES+=usr/lib32/libftpio_p.a +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 @@ -51,7 +162,6 @@ OLD_LIBS+=usr/lib/libdwarf.so.2 OLD_LIBS+=usr/lib/libopie.so.6 OLD_LIBS+=usr/lib/librtld_db.so.1 OLD_LIBS+=usr/lib/libtacplus.so.4 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libcam.so.5 OLD_LIBS+=usr/lib32/libpcap.so.7 OLD_LIBS+=usr/lib32/libufs.so.5 @@ -60,7 +170,22 @@ OLD_LIBS+=usr/lib32/libdwarf.so.2 OLD_LIBS+=usr/lib32/libopie.so.6 OLD_LIBS+=usr/lib32/librtld_db.so.1 OLD_LIBS+=usr/lib32/libtacplus.so.4 -.endif +# 20110817: no more acd.4, ad.4, afd.4 and ast.4 +OLD_FILES+=usr/share/man/man4/acd.4.gz +OLD_FILES+=usr/share/man/man4/ad.4.gz +OLD_FILES+=usr/share/man/man4/afd.4.gz +OLD_FILES+=usr/share/man/man4/ast.4.gz +# 20110718: no longer useful in the age of rc.d +OLD_FILES+=usr/sbin/named.reconfig +OLD_FILES+=usr/sbin/named.reload +OLD_FILES+=usr/share/man/man8/named.reconfig.8.gz +OLD_FILES+=usr/share/man/man8/named.reload.8.gz +# 20110716: bind 9.8.0 import +OLD_LIBS+=usr/lib/liblwres.so.50 +OLD_FILES+=usr/share/doc/bind9/KNOWN-DEFECTS +OLD_FILES+=usr/share/doc/bind9/NSEC3-NOTES +OLD_FILES+=usr/share/doc/bind9/README.idnkit +OLD_FILES+=usr/share/doc/bind9/README.pkcs11 # 20110709: vm_map_clean.9 -> vm_map_sync.9 OLD_FILES+=usr/share/man/man9/vm_map_clean.9.gz # 20110709: Catch up with removal of these functions. @@ -84,8 +209,13 @@ OLD_FILES+=usr/lib/libpkg.a OLD_FILES+=usr/lib/libpkg.so OLD_LIBS+=usr/lib/libpkg.so.0 OLD_FILES+=usr/lib/libpkg_p.a +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 # 20110517: libsbuf version bump OLD_LIBS+=lib/libsbuf.so.5 +OLD_LIBS+=usr/lib32/libsbuf.so.5 # 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 @@ -114,6 +244,10 @@ OLD_FILES+=usr/lib/libobjc_p.a OLD_FILES+=usr/libexec/cc1obj OLD_LIBS+=usr/lib/libobjc.so.4 OLD_DIRS+=usr/include/objc +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 # 20110331: firmware.img created at build time OLD_FILES+=usr/share/examples/kld/firmware/fwimage/firmware.img # 20110224: sticky.8 -> sticky.7 @@ -235,9 +369,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" OLD_LIBS+=usr/lib32/liblzma.so.0 -.endif # 20100511: move GCC-specific headers to /usr/include/gcc .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" OLD_FILES+=usr/include/emmintrin.h @@ -278,9 +410,7 @@ OLD_FILES+=usr/share/info/cpio.info.gz OLD_FILES+=usr/share/man/man1/gcpio.1.gz # 20100322: libz update OLD_LIBS+=lib/libz.so.5 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libz.so.5 -.endif # 20100314: removal of regexp.h OLD_FILES+=usr/include/regexp.h OLD_FILES+=usr/share/man/man3/regexp.3.gz @@ -329,6 +459,7 @@ OLD_FILES+=usr/share/man/man5/lastlog.5. OLD_FILES+=usr/share/man/man5/utmp.5.gz OLD_FILES+=usr/share/man/man5/wtmp.5.gz OLD_LIBS+=lib/libutil.so.8 +OLB_LIBS+=usr/lib32/libutil.so.8 # 20100105: new userland semaphore implementation OLD_FILES+=usr/include/sys/semaphore.h # 20100103: ntptrace(8) removed @@ -536,7 +667,6 @@ OLD_LIBS+=usr/lib/snmp_hostres.so.5 OLD_LIBS+=usr/lib/snmp_mibII.so.5 OLD_LIBS+=usr/lib/snmp_netgraph.so.5 OLD_LIBS+=usr/lib/snmp_pf.so.5 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libalias.so.6 OLD_LIBS+=usr/lib32/libarchive.so.4 OLD_LIBS+=usr/lib32/libauditd.so.4 @@ -637,9 +767,10 @@ OLD_LIBS+=usr/lib32/pam_self.so.4 OLD_LIBS+=usr/lib32/pam_ssh.so.4 OLD_LIBS+=usr/lib32/pam_tacplus.so.4 OLD_LIBS+=usr/lib32/pam_unix.so.4 -.endif # 20090718: the gdm pam.d file is no longer required. OLD_FILES+=etc/pam.d/gdm +# 20090714: net_add_domain(9) renamed to domain_add(9) +OLD_FILES+=usr/share/man/man9/net_add_domain.9.gz # 20090713: vimage container structs removed. OLD_FILES+=usr/include/netinet/vinet.h OLD_FILES+=usr/include/netinet6/vinet6.h @@ -822,9 +953,7 @@ OLD_FILES+=usr/share/man/man8/sliplogin. OLD_FILES+=usr/share/man/man8/slstat.8.gz # 20090321: libpcap upgraded to 1.0.0 OLD_LIBS+=lib/libpcap.so.5 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libpcap.so.5 -.endif # 20090319: uscanner(4) has been removed OLD_FILES+=usr/share/man/man4/uscanner.4.gz # 20090313: k8temp(4) renamed to amdtemp(4) @@ -836,17 +965,13 @@ OLD_FILES+=usr/lib/libusb20.so OLD_FILES+=usr/lib/libusb20_p.a OLD_FILES+=usr/include/libusb20_compat01.h OLD_FILES+=usr/include/libusb20_compat10.h -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libusb20.so.1 OLD_FILES+=usr/lib32/libusb20.a OLD_FILES+=usr/lib32/libusb20.so OLD_FILES+=usr/lib32/libusb20_p.a -.endif # 20090226: libmp(3) functions renamed OLD_LIBS+=usr/lib/libmp.so.6 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libmp.so.6 -.endif # 20090223: changeover of USB stacks OLD_FILES+=usr/include/dev/usb2/include/ufm2_ioctl.h OLD_FILES+=usr/include/dev/usb2/include/urio2_ioctl.h @@ -1149,9 +1274,7 @@ OLD_LIBS+=usr/lib/libkadm5srv.so.9 OLD_LIBS+=usr/lib/libkafs5.so.9 OLD_LIBS+=usr/lib/libkrb5.so.9 OLD_LIBS+=usr/lib/libroken.so.9 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libgssapi.so.9 -.endif # 20080420: Symbol card support dropped OLD_FILES+=usr/include/dev/wi/spectrum24t_cf.h # 20080420: awi removal @@ -1178,10 +1301,8 @@ OLD_FILES+=usr/share/man/man2/kse_releas OLD_FILES+=usr/share/man/man2/kse_switchin.2.gz OLD_FILES+=usr/share/man/man2/kse_thr_interrupt.2.gz OLD_FILES+=usr/share/man/man2/kse_wakeup.2.gz -.if ${TARGET_ARCH} == "amd64" OLD_FILES+=usr/lib32/libkse.so OLD_LIBS+=usr/lib32/libkse.so.3 -.endif # 20080220: geom_lvm rename to geom_linux_lvm OLD_FILES+=usr/share/man/man4/geom_lvm.4.gz # 20080126: oldcard.4 removal @@ -1201,11 +1322,9 @@ OLD_FILES+=usr/include/sys/xrpuio.h OLD_FILES+=usr/lib/libkse.a OLD_FILES+=usr/lib/libkse_p.a OLD_FILES+=usr/lib/libkse_pic.a -.if ${TARGET_ARCH} == "amd64" OLD_FILES+=usr/lib32/libkse.a OLD_FILES+=usr/lib32/libkse_p.a OLD_FILES+=usr/lib32/libkse_pic.a -.endif # 20071129: Removed a Solaris compatibility header OLD_FILES+=usr/include/sys/_elf_solaris.h # 20071125: Renamed to pmc_get_msr() @@ -1305,12 +1424,10 @@ OLD_DIRS+=usr/include/netatm/ipatm OLD_DIRS+=usr/include/netatm/uni OLD_DIRS+=usr/include/netatm OLD_DIRS+=usr/share/examples/atm -.if ${TARGET_ARCH} == "amd64" OLD_FILES+=usr/lib32/libatm.a OLD_FILES+=usr/lib32/libatm.so OLD_LIBS+=usr/lib32/libatm.so.5 OLD_FILES+=usr/lib32/libatm_p.a -.endif # 20070705: I4B headers repo-copied to include/i4b/ .if ${TARGET_ARCH} == "i386" OLD_FILES+=usr/include/machine/i4b_cause.h @@ -1395,7 +1512,6 @@ OLD_LIBS+=usr/lib/snmp_hostres.so.4 OLD_LIBS+=usr/lib/snmp_mibII.so.4 OLD_LIBS+=usr/lib/snmp_netgraph.so.4 OLD_LIBS+=usr/lib/snmp_pf.so.4 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libalias.so.5 OLD_LIBS+=usr/lib32/libbsnmp.so.3 OLD_LIBS+=usr/lib32/libdialog.so.5 @@ -1430,7 +1546,6 @@ OLD_LIBS+=usr/lib32/pam_self.so.3 OLD_LIBS+=usr/lib32/pam_ssh.so.3 OLD_LIBS+=usr/lib32/pam_tacplus.so.3 OLD_LIBS+=usr/lib32/pam_unix.so.3 -.endif # 20070613: IPX over IP tunnel removal OLD_FILES+=usr/include/netipx/ipx_ip.h # 20070605: sched_core removal @@ -1500,7 +1615,6 @@ OLD_LIBS+=usr/lib/libwrap.so.4 OLD_LIBS+=usr/lib/libypclnt.so.2 OLD_LIBS+=usr/lib/snmp_bridge.so.3 OLD_LIBS+=usr/lib/snmp_hostres.so.3 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libatm.so.4 OLD_LIBS+=usr/lib32/libbegemot.so.2 OLD_LIBS+=usr/lib32/libbluetooth.so.2 @@ -1559,7 +1673,6 @@ OLD_LIBS+=usr/lib32/libvgl.so.4 OLD_LIBS+=usr/lib32/libwrap.so.4 OLD_LIBS+=usr/lib32/libypclnt.so.2 OLD_LIBS+=usr/lib32/libz.so.3 -.endif # 20070519: GCC 4.2 OLD_FILES+=usr/bin/f77 OLD_FILES+=usr/bin/protoize @@ -1806,9 +1919,7 @@ OLD_FILES+=usr/bin/uuidgen OLD_FILES+=usr/share/info/bzip2.info.gz # 20070303: libarchive 2.0 OLD_LIBS+=usr/lib/libarchive.so.3 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libarchive.so.3 -.endif # 20070301: remove addr2ascii and ascii2addr OLD_FILES+=usr/share/man/man3/addr2ascii.3.gz OLD_FILES+=usr/share/man/man3/ascii2addr.3.gz @@ -1825,14 +1936,12 @@ OLD_FILES+=usr/lib/libmytinfo_p.a OLD_FILES+=usr/lib/libmytinfow.a OLD_FILES+=usr/lib/libmytinfow.so OLD_FILES+=usr/lib/libmytinfow_p.a -.if ${TARGET_ARCH} == "amd64" OLD_FILES+=usr/lib32/libmytinfo.a OLD_FILES+=usr/lib32/libmytinfo.so OLD_FILES+=usr/lib32/libmytinfo_p.a OLD_FILES+=usr/lib32/libmytinfow.a OLD_FILES+=usr/lib32/libmytinfow.so OLD_FILES+=usr/lib32/libmytinfow_p.a -.endif # 20070128: remove vnconfig OLD_FILES+=usr/sbin/vnconfig # 20070127: remove bpf_compat.h @@ -2557,7 +2666,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 @@ -4515,9 +4624,7 @@ OLD_FILES+=usr/share/man/man1/x509.1.gz OLD_FILES+=usr/share/man/man3/SSL_COMP_add_compression_method.3.gz OLD_FILES+=usr/share/man/man3/SSL_CTX_get_ex_new_index.3.gz OLD_FILES+=usr/share/man/man3/archive_entry_dup.3.gz -OLD_FILES+=usr/share/man/man3/archive_entry_hardlink_w.3.gz OLD_FILES+=usr/share/man/man3/archive_entry_set_tartype.3.gz -OLD_FILES+=usr/share/man/man3/archive_entry_symlink_w.3.gz OLD_FILES+=usr/share/man/man3/archive_entry_tartype.3.gz OLD_FILES+=usr/share/man/man3/archive_read_data_into_file.3.gz OLD_FILES+=usr/share/man/man3/archive_read_open_tar.3.gz @@ -5176,40 +5283,32 @@ OLD_LIBS+=usr/lib/libkadm5srv.so.8 OLD_LIBS+=usr/lib/libkafs5.so.8 OLD_LIBS+=usr/lib/libkrb5.so.8 OLD_LIBS+=usr/lib/libobjc.so.2 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libgssapi.so.8 OLD_LIBS+=usr/lib32/libobjc.so.2 -.endif # 20070519: GCC 4.2 OLD_LIBS+=usr/lib/libg2c.a OLD_LIBS+=usr/lib/libg2c.so OLD_LIBS+=usr/lib/libg2c.so.2 OLD_LIBS+=usr/lib/libg2c_p.a OLD_LIBS+=usr/lib/libgcc_pic.a -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libg2c.a OLD_LIBS+=usr/lib32/libg2c.so OLD_LIBS+=usr/lib32/libg2c.so.2 OLD_LIBS+=usr/lib32/libg2c_p.a OLD_LIBS+=usr/lib32/libgcc_pic.a -.endif # 20060729: OpenSSL 0.9.7e -> 0.9.8b upgrade OLD_LIBS+=lib/libcrypto.so.4 OLD_LIBS+=usr/lib/libssl.so.4 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libcrypto.so.4 OLD_LIBS+=usr/lib32/libssl.so.4 -.endif # 20060521: gethostbyaddr(3) ABI change OLD_LIBS+=usr/lib/libroken.so.8 OLD_LIBS+=lib/libatm.so.3 OLD_LIBS+=lib/libc.so.6 OLD_LIBS+=lib/libutil.so.5 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libatm.so.3 OLD_LIBS+=usr/lib32/libc.so.6 OLD_LIBS+=usr/lib32/libutil.so.5 -.endif # 20060413: shared library moved to /usr/lib OLD_LIBS+=lib/libgpib.so.1 # 20060413: libpcap.so.4 moved to /lib/ @@ -5223,12 +5322,10 @@ OLD_LIBS+=usr/lib/libc_r.a OLD_LIBS+=usr/lib/libc_r.so OLD_LIBS+=usr/lib/libc_r.so.7 OLD_LIBS+=usr/lib/libc_r_p.a -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libc_r.a OLD_LIBS+=usr/lib32/libc_r.so OLD_LIBS+=usr/lib32/libc_r.so.7 OLD_LIBS+=usr/lib32/libc_r_p.a -.endif # 20050722: bump for 6.0-RELEASE OLD_LIBS+=lib/libalias.so.4 OLD_LIBS+=lib/libatm.so.2 @@ -5440,10 +5537,8 @@ OLD_LIBS+=usr/lib/libc_r.so.3 OLD_LIBS+=usr/lib/libarchive.so.2 OLD_LIBS+=usr/lib/libbsnmp.so.1 OLD_LIBS+=usr/lib/libc_r.so.6 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libarchive.so.2 OLD_LIBS+=usr/lib32/libc_r.so.6 -.endif OLD_LIBS+=usr/lib/libcipher.so.2 OLD_LIBS+=usr/lib/libgssapi.so.6 OLD_LIBS+=usr/lib/libkse.so.1 Modified: user/hrs/ipv6/UPDATING ============================================================================== --- user/hrs/ipv6/UPDATING Wed Apr 18 17:44:05 2012 (r234427) +++ user/hrs/ipv6/UPDATING Wed Apr 18 18:11:32 2012 (r234428) @@ -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 @@ -19,8 +19,105 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 9. includes various WITNESS- related kernel options, INVARIANTS, malloc debugging flags in userland, and various verbose features in the kernel. Many developers choose to disable these features on build - machines to maximize performance. (To disable malloc debugging, run - ln -s aj /etc/malloc.conf.) + machines to maximize performance. (To completely disable malloc + debugging, define MALLOC_PRODUCTION in /etc/make.conf, or to merely + disable the most expensive debugging functionality run + "ln -s 'abort:false,junk:false' /etc/malloc.conf".) + +20120417: + The malloc(3) implementation embedded in libc now uses sources imported + as contrib/jemalloc. The most disruptive API change is to + /etc/malloc.conf. If your system has an old-style /etc/malloc.conf, + delete it prior to installworld, and optionally re-create it using the + new format after rebooting. See malloc.conf(5) for details + (specifically the TUNING section and the "opt.*" entries in the MALLCTL + NAMESPACE section). + +20120328: + Big-endian MIPS TARGET_ARCH values no longer end in "eb". mips64eb + is now spelled mips64. mipsn32eb is now spelled mipsn32. mipseb is + now spelled mips. This is to aid compatibility with third-party + software that expects this naming scheme in uname(3). Little-endian + settings are unchanged. + +20120306: + Disable by default the option VFS_ALLOW_NONMPSAFE for all supported + platforms. + +20120229: + Now unix domain sockets behave "as expected" on nullfs(5). Previously + nullfs(5) did not pass through all behaviours to the underlying layer, + as a result if we bound to a socket on the lower layer we could connect + only to the lower path; if we bound to the upper layer we could connect + only to the upper path. The new behavior is one can connect to both the + lower and the upper paths regardless what layer path one binds to. + +20120211: + The getifaddrs upgrade path broken with 20111215 has been restored. + If you have upgraded in between 20111215 and 20120209 you need to + recompile libc again with your kernel. You still need to recompile + world to be able to configure CARP but this restriction already + comes from 20111215. + +20120114: + The set_rcvar() function has been removed from /etc/rc.subr. All + base and ports rc.d scripts have been updated, so if you have a + port installed with a script in /usr/local/etc/rc.d you can either + hand-edit the rcvar= line, or reinstall the port. + + An easy way to handle the mass-update of /etc/rc.d: + rm /etc/rc.d/* && mergemaster -i + +20120109: + panic(9) now stops other CPUs in the SMP systems, disables interrupts + on the current CPU and prevents other threads from running. + This behavior can be reverted using the kern.stop_scheduler_on_panic + tunable/sysctl. + The new behavior can be incompatible with kern.sync_on_panic. + +20111215: + The carp(4) facility has been changed significantly. Configuration + of the CARP protocol via ifconfig(8) has changed, as well as format + of CARP events submitted to devd(8) has changed. See manual pages + for more information. The arpbalance feature of carp(4) is currently + not supported anymore. + + Size of struct in_aliasreq, struct in6_aliasreq has changed. User + utilities using SIOCAIFADDR, SIOCAIFADDR_IN6, e.g. ifconfig(8), + need to be recompiled. + +20111122: + The acpi_wmi(4) status device /dev/wmistat has been renamed to + /dev/wmistat0. + +20111108: + The option VFS_ALLOW_NONMPSAFE option has been added in order to + explicitely support non-MPSAFE filesystems. + It is on by default for all supported platform at this present + time. + +20111101: + The broken amd(4) driver has been replaced with esp(4) in the amd64, + i386 and pc98 GENERIC kernel configuration files. *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 18:37:57 2012 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 533531065673; Wed, 18 Apr 2012 18:37:57 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3D47A8FC0A; Wed, 18 Apr 2012 18:37:57 +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 q3IIbvNL045414; Wed, 18 Apr 2012 18:37:57 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IIbuc5045409; Wed, 18 Apr 2012 18:37:56 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201204181837.q3IIbuc5045409@svn.freebsd.org> From: Hiroki Sato Date: Wed, 18 Apr 2012 18:37:56 +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: r234431 - in user/hrs/ipv6: sbin/ifconfig sbin/route sys/net usr.sbin/rpcbind 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: Wed, 18 Apr 2012 18:37:57 -0000 Author: hrs Date: Wed Apr 18 18:37:56 2012 New Revision: 234431 URL: http://svn.freebsd.org/changeset/base/234431 Log: Extract embed scope id and set it to sin6_scope_id in struct sockaddr_in6 for userland from the kernel via routing socket or sysctl. The net.inet6.ip6.deembed_scopeid sysctl variable controls this behavior. The default value is 1, and 0 means no de-embed. De-embed of scope id in userland utilities have been removed except for netstat(1) because it directly uses kvm to read the FIB entries, not sysctl or routing socket. Modified: user/hrs/ipv6/sbin/ifconfig/af_inet6.c user/hrs/ipv6/sbin/route/route.c user/hrs/ipv6/sys/net/rtsock.c user/hrs/ipv6/usr.sbin/rpcbind/util.c Modified: user/hrs/ipv6/sbin/ifconfig/af_inet6.c ============================================================================== --- user/hrs/ipv6/sbin/ifconfig/af_inet6.c Wed Apr 18 18:35:19 2012 (r234430) +++ user/hrs/ipv6/sbin/ifconfig/af_inet6.c Wed Apr 18 18:37:56 2012 (r234431) @@ -62,7 +62,6 @@ static struct in6_aliasreq in6_addreq = .ifra_lifetime = { 0, 0, ND6_INFINITE_LIFETIME, ND6_INFINITE_LIFETIME } }; static int ip6lifetime; -static void in6_fillscopeid(struct sockaddr_in6 *sin6); static int prefix(void *, int); static char *sec2str(time_t); static int explicit_prefix = 0; @@ -166,18 +165,6 @@ setip6eui64(const char *cmd, int dummy _ } static void -in6_fillscopeid(struct sockaddr_in6 *sin6) -{ -#if defined(__KAME__) && defined(KAME_SCOPEID) - if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) { - sin6->sin6_scope_id = - ntohs(*(u_int16_t *)&sin6->sin6_addr.s6_addr[2]); - sin6->sin6_addr.s6_addr[2] = sin6->sin6_addr.s6_addr[3] = 0; - } -#endif -} - -static void in6_status(int s __unused, const struct ifaddrs *ifa) { struct sockaddr_in6 *sin, null_sin; @@ -217,18 +204,7 @@ in6_status(int s __unused, const struct lifetime = ifr6.ifr_ifru.ifru_lifetime; close(s6); - /* XXX: embedded link local addr check */ - if (IN6_IS_ADDR_LINKLOCAL(&sin->sin6_addr) && - *(u_short *)&sin->sin6_addr.s6_addr[2] != 0) { - u_short index; - - index = *(u_short *)&sin->sin6_addr.s6_addr[2]; - *(u_short *)&sin->sin6_addr.s6_addr[2] = 0; - if (sin->sin6_scope_id == 0) - sin->sin6_scope_id = ntohs(index); - } scopeid = sin->sin6_scope_id; - error = getnameinfo((struct sockaddr *)sin, sin->sin6_len, addr_buf, sizeof(addr_buf), NULL, 0, NI_NUMERICHOST); if (error != 0) @@ -245,17 +221,6 @@ in6_status(int s __unused, const struct if (sin != NULL && sin->sin6_family == AF_INET6) { int error; - /* XXX: embedded link local addr check */ - if (IN6_IS_ADDR_LINKLOCAL(&sin->sin6_addr) && - *(u_short *)&sin->sin6_addr.s6_addr[2] != 0) { - u_short index; - - index = *(u_short *)&sin->sin6_addr.s6_addr[2]; - *(u_short *)&sin->sin6_addr.s6_addr[2] = 0; - if (sin->sin6_scope_id == 0) - sin->sin6_scope_id = ntohs(index); - } - error = getnameinfo((struct sockaddr *)sin, sin->sin6_len, addr_buf, sizeof(addr_buf), NULL, 0, @@ -458,7 +423,6 @@ in6_status_tunnel(int s) return; if (sa->sa_family != AF_INET6) return; - in6_fillscopeid(&in6_ifr.ifr_addr); if (getnameinfo(sa, sa->sa_len, src, sizeof(src), 0, 0, NI_NUMERICHOST) != 0) src[0] = '\0'; @@ -467,7 +431,6 @@ in6_status_tunnel(int s) return; if (sa->sa_family != AF_INET6) return; - in6_fillscopeid(&in6_ifr.ifr_addr); if (getnameinfo(sa, sa->sa_len, dst, sizeof(dst), 0, 0, NI_NUMERICHOST) != 0) dst[0] = '\0'; Modified: user/hrs/ipv6/sbin/route/route.c ============================================================================== --- user/hrs/ipv6/sbin/route/route.c Wed Apr 18 18:35:19 2012 (r234430) +++ user/hrs/ipv6/sbin/route/route.c Wed Apr 18 18:37:56 2012 (r234431) @@ -372,18 +372,6 @@ routename(struct sockaddr *sa) memcpy(&sin6, sa, sa->sa_len); sin6.sin6_len = sizeof(struct sockaddr_in6); sin6.sin6_family = AF_INET6; -#ifdef __KAME__ - if (sa->sa_len == sizeof(struct sockaddr_in6) && - (IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr) || - IN6_IS_ADDR_MC_LINKLOCAL(&sin6.sin6_addr) || - IN6_IS_ADDR_MC_NODELOCAL(&sin6.sin6_addr)) && - sin6.sin6_scope_id == 0) { - sin6.sin6_scope_id = - ntohs(*(u_int16_t *)&sin6.sin6_addr.s6_addr[2]); - sin6.sin6_addr.s6_addr[2] = 0; - sin6.sin6_addr.s6_addr[3] = 0; - } -#endif if (nflag) niflags |= NI_NUMERICHOST; if (getnameinfo((struct sockaddr *)&sin6, sin6.sin6_len, @@ -498,18 +486,6 @@ netname(struct sockaddr *sa) memcpy(&sin6, sa, sa->sa_len); sin6.sin6_len = sizeof(struct sockaddr_in6); sin6.sin6_family = AF_INET6; -#ifdef __KAME__ - if (sa->sa_len == sizeof(struct sockaddr_in6) && - (IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr) || - IN6_IS_ADDR_MC_LINKLOCAL(&sin6.sin6_addr) || - IN6_IS_ADDR_MC_NODELOCAL(&sin6.sin6_addr)) && - sin6.sin6_scope_id == 0) { - sin6.sin6_scope_id = - ntohs(*(u_int16_t *)&sin6.sin6_addr.s6_addr[2]); - sin6.sin6_addr.s6_addr[2] = 0; - sin6.sin6_addr.s6_addr[3] = 0; - } -#endif if (nflag) niflags |= NI_NUMERICHOST; if (getnameinfo((struct sockaddr *)&sin6, sin6.sin6_len, @@ -1002,16 +978,6 @@ getaddr(int which, char *str, struct hos exit(1); } memcpy(&su->sin6, res->ai_addr, sizeof(su->sin6)); -#ifdef __KAME__ - if ((IN6_IS_ADDR_LINKLOCAL(&su->sin6.sin6_addr) || - IN6_IS_ADDR_MC_LINKLOCAL(&su->sin6.sin6_addr) || - IN6_IS_ADDR_MC_NODELOCAL(&su->sin6.sin6_addr)) && - su->sin6.sin6_scope_id) { - *(u_int16_t *)&su->sin6.sin6_addr.s6_addr[2] = - htons(su->sin6.sin6_scope_id); - su->sin6.sin6_scope_id = 0; - } -#endif freeaddrinfo(res); if (q != NULL) *q++ = '/'; Modified: user/hrs/ipv6/sys/net/rtsock.c ============================================================================== --- user/hrs/ipv6/sys/net/rtsock.c Wed Apr 18 18:35:19 2012 (r234430) +++ user/hrs/ipv6/sys/net/rtsock.c Wed Apr 18 18:37:56 2012 (r234431) @@ -175,6 +175,14 @@ MTX_SYSINIT(rtsock, &rtsock_mtx, "rtsock #define RTSOCK_LOCK_ASSERT() mtx_assert(&rtsock_mtx, MA_OWNED) static SYSCTL_NODE(_net, OID_AUTO, route, CTLFLAG_RD, 0, ""); +#ifdef INET6 +static VNET_DEFINE(int, deembed_scopeid) = 1; +#define V_deembed_scopeid VNET(deembed_scopeid) +SYSCTL_DECL(_net_inet6_ip6); +SYSCTL_VNET_INT(_net_inet6_ip6, OID_AUTO, deembed_scopeid, CTLFLAG_RW, + &VNET_NAME(deembed_scopeid), 0, + "Extract embedded zone ID and set it to sin6_scope_id in sockaddr_in6."); +#endif struct walkarg { int w_tmemsize; @@ -573,6 +581,11 @@ route_output(struct mbuf *m, struct sock struct rtentry *rt = NULL; struct radix_node_head *rnh; struct rt_addrinfo info; +#ifdef INET6 + struct sockaddr_storage ss_dst; + struct sockaddr_storage ss_gw; + struct sockaddr_in6 *sin6; +#endif int len, error = 0; struct ifnet *ifp = NULL; union sockaddr_union saun; @@ -800,7 +813,31 @@ route_output(struct mbuf *m, struct sock senderr(ESRCH); } info.rti_info[RTAX_DST] = rt_key(rt); +#ifdef INET6 + switch (rt_key(rt)->sa_family) { + case AF_INET6: + if (V_deembed_scopeid == 0) + break; + sin6 = (struct sockaddr_in6 *)&ss_dst; + bcopy(rt_key(rt), sin6, sizeof(*sin6)); + if (sa6_recoverscope(sin6) == 0) + info.rti_info[RTAX_DST] = + (struct sockaddr *)sin6; + break; + } +#endif info.rti_info[RTAX_GATEWAY] = rt->rt_gateway; +#ifdef INET6 + switch (rt->rt_gateway->sa_family) { + case AF_INET6: + sin6 = (struct sockaddr_in6 *)&ss_gw; + bcopy(rt->rt_gateway, sin6, sizeof(*sin6)); + if (sa6_recoverscope(sin6) == 0) + info.rti_info[RTAX_GATEWAY] = + (struct sockaddr *)sin6; + break; + } +#endif info.rti_info[RTAX_NETMASK] = rt_mask(rt); info.rti_info[RTAX_GENMASK] = 0; if (rtm->rtm_addrs & (RTA_IFP | RTA_IFA)) { @@ -1051,6 +1088,10 @@ rt_msg1(int type, struct rt_addrinfo *rt struct mbuf *m; int i; struct sockaddr *sa; +#ifdef INET6 + struct sockaddr_storage ss; + struct sockaddr_in6 *sin6; +#endif int len, dlen; switch (type) { @@ -1098,6 +1139,18 @@ rt_msg1(int type, struct rt_addrinfo *rt continue; rtinfo->rti_addrs |= (1 << i); dlen = SA_SIZE(sa); +#ifdef INET6 + switch (sa->sa_family) { + case AF_INET6: + if (V_deembed_scopeid == 0) + break; + sin6 = (struct sockaddr_in6 *)&ss; + bcopy(sa, sin6, sizeof(*sin6)); + if (sa6_recoverscope(sin6) == 0) + sa = (struct sockaddr *)sin6; + break; + } +#endif m_copyback(m, len, dlen, (caddr_t)sa); len += dlen; } @@ -1120,6 +1173,10 @@ rt_msg2(int type, struct rt_addrinfo *rt int i; int len, dlen, second_time = 0; caddr_t cp0; +#ifdef INET6 + struct sockaddr_storage ss; + struct sockaddr_in6 *sin6; +#endif rtinfo->rti_addrs = 0; again: @@ -1171,6 +1228,18 @@ again: continue; rtinfo->rti_addrs |= (1 << i); dlen = SA_SIZE(sa); +#ifdef INET6 + switch (sa->sa_family) { + case AF_INET6: + if (V_deembed_scopeid == 0) + break; + sin6 = (struct sockaddr_in6 *)&ss; + bcopy(sa, sin6, sizeof(*sin6)); + if (sa6_recoverscope(sin6) == 0) + sa = (struct sockaddr *)sin6; + break; + } +#endif if (cp) { bcopy((caddr_t)sa, cp, (unsigned)dlen); cp += dlen; @@ -1511,6 +1580,11 @@ sysctl_dumpentry(struct radix_node *rn, struct rtentry *rt = (struct rtentry *)rn; int error = 0, size; struct rt_addrinfo info; +#ifdef INET6 + struct sockaddr_storage ss[RTAX_MAX]; + struct sockaddr_in6 *sin6; +#endif + int i; if (w->w_op == NET_RT_FLAGS && !(rt->rt_flags & w->w_arg)) return 0; @@ -1529,6 +1603,22 @@ sysctl_dumpentry(struct radix_node *rn, if (rt->rt_ifp->if_flags & IFF_POINTOPOINT) info.rti_info[RTAX_BRD] = rt->rt_ifa->ifa_dstaddr; } +#ifdef INET6 + for (i = 0; i < RTAX_MAX; i++) { + if (info.rti_info[i] == NULL) + continue; + switch (info.rti_info[i]->sa_family) { + case AF_INET6: + if (V_deembed_scopeid == 0) + break; + sin6 = (struct sockaddr_in6 *)&ss[i]; + bcopy(info.rti_info[i], sin6, sizeof(*sin6)); + if (sa6_recoverscope(sin6) == 0) + info.rti_info[i] = (struct sockaddr *)sin6; + break; + } + } +#endif size = rt_msg2(RTM_GET, &info, NULL, w); if (w->w_req && w->w_tmem) { struct rt_msghdr *rtm = (struct rt_msghdr *)w->w_tmem; Modified: user/hrs/ipv6/usr.sbin/rpcbind/util.c ============================================================================== --- user/hrs/ipv6/usr.sbin/rpcbind/util.c Wed Apr 18 18:35:19 2012 (r234430) +++ user/hrs/ipv6/usr.sbin/rpcbind/util.c Wed Apr 18 18:37:56 2012 (r234431) @@ -57,9 +57,6 @@ static struct sockaddr_in6 *local_in6; #endif static int bitmaskcmp(void *, void *, void *, int); -#ifdef INET6 -static void in6_fillscopeid(struct sockaddr_in6 *); -#endif /* * For all bits set in "mask", compare the corresponding bits in @@ -79,26 +76,6 @@ bitmaskcmp(void *dst, void *src, void *m } /* - * Similar to code in ifconfig.c. Fill in the scope ID for link-local - * addresses returned by getifaddrs(). - */ -#ifdef INET6 -static void -in6_fillscopeid(struct sockaddr_in6 *sin6) -{ - u_int16_t ifindex; - - if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) { - ifindex = ntohs(*(u_int16_t *)&sin6->sin6_addr.s6_addr[2]); - if (sin6->sin6_scope_id == 0 && ifindex != 0) { - sin6->sin6_scope_id = ifindex; - *(u_int16_t *)&sin6->sin6_addr.s6_addr[2] = 0; - } - } -} -#endif - -/* * Find a server address that can be used by `caller' to contact * the local service specified by `serv_uaddr'. If `clnt_uaddr' is * non-NULL, it is used instead of `caller' as a hint suggesting @@ -202,7 +179,6 @@ addrmerge(struct netbuf *caller, char *s * a link-local address then use the scope id to see * which one. */ - in6_fillscopeid(SA2SIN6(ifsa)); if (IN6_IS_ADDR_LINKLOCAL(&SA2SIN6ADDR(ifsa)) && IN6_IS_ADDR_LINKLOCAL(&SA2SIN6ADDR(caller_sa)) && IN6_IS_ADDR_LINKLOCAL(&SA2SIN6ADDR(hint_sa))) { From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 18:43:02 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7005A106564A; Wed, 18 Apr 2012 18:43:02 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 572688FC12; Wed, 18 Apr 2012 18:43: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 q3IIh2i1045677; Wed, 18 Apr 2012 18:43:02 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IIh2bI045671; Wed, 18 Apr 2012 18:43:02 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204181843.q3IIh2bI045671@svn.freebsd.org> From: Navdeep Parhar Date: Wed, 18 Apr 2012 18:43: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: r234432 - in user/np/toe_iwarp/sys: dev/cxgb dev/cxgb/common dev/cxgb/sys dev/cxgb/ulp/iw_cxgb dev/cxgb/ulp/tom modules/cxgb modules/cxgb/cxgb modules/cxgb/iw_cxgb modules/cxgb/toecore ... 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: Wed, 18 Apr 2012 18:43:02 -0000 Author: np Date: Wed Apr 18 18:43:01 2012 New Revision: 234432 URL: http://svn.freebsd.org/changeset/base/234432 Log: T3 TCP offload and iWARP driver. Added: user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_ib_intfc.h (contents, props changed) Deleted: user/np/toe_iwarp/sys/dev/cxgb/cxgb_offload.c user/np/toe_iwarp/sys/dev/cxgb/t3cdev.h user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_cpl_socket.c user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_ddp.c user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_defs.h user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_t3_ddp.h user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_tcp.h user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_tcp_offload.c user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_tcp_offload.h user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_tom_sysctl.c user/np/toe_iwarp/sys/modules/cxgb/toecore/ Modified: user/np/toe_iwarp/sys/dev/cxgb/common/cxgb_ctl_defs.h user/np/toe_iwarp/sys/dev/cxgb/cxgb_adapter.h user/np/toe_iwarp/sys/dev/cxgb/cxgb_main.c user/np/toe_iwarp/sys/dev/cxgb/cxgb_offload.h user/np/toe_iwarp/sys/dev/cxgb/cxgb_osdep.h user/np/toe_iwarp/sys/dev/cxgb/cxgb_sge.c user/np/toe_iwarp/sys/dev/cxgb/sys/mvec.h user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.h user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.h user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cq.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_dbg.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_ev.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_hal.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_hal.h user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_mem.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.h user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_qp.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_resource.c user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_user.h user/np/toe_iwarp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_wr.h user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_l2t.c user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_l2t.h user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_listen.c user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_toepcb.h user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_tom.c user/np/toe_iwarp/sys/dev/cxgb/ulp/tom/cxgb_tom.h user/np/toe_iwarp/sys/modules/cxgb/Makefile user/np/toe_iwarp/sys/modules/cxgb/cxgb/Makefile user/np/toe_iwarp/sys/modules/cxgb/iw_cxgb/Makefile user/np/toe_iwarp/sys/modules/cxgb/tom/Makefile Modified: user/np/toe_iwarp/sys/dev/cxgb/common/cxgb_ctl_defs.h ============================================================================== --- user/np/toe_iwarp/sys/dev/cxgb/common/cxgb_ctl_defs.h Wed Apr 18 18:37:56 2012 (r234431) +++ user/np/toe_iwarp/sys/dev/cxgb/common/cxgb_ctl_defs.h Wed Apr 18 18:43:01 2012 (r234432) @@ -60,14 +60,12 @@ struct mtutab { const unsigned short *mtus; /* the MTU table values */ }; -struct net_device; - /* - * Structure used to request the adapter net_device owning a given MAC address. + * Structure used to request the ifnet that owns a given MAC address. */ struct iff_mac { - struct net_device *dev; /* the net_device */ - const unsigned char *mac_addr; /* MAC address to lookup */ + struct ifnet *dev; + const unsigned char *mac_addr; u16 vlan_tag; }; @@ -85,7 +83,7 @@ struct ddp_params { struct adap_ports { unsigned int nports; /* number of ports on this adapter */ - struct net_device *lldevs[MAX_NPORTS]; + struct ifnet *lldevs[MAX_NPORTS]; }; /* Modified: user/np/toe_iwarp/sys/dev/cxgb/cxgb_adapter.h ============================================================================== --- user/np/toe_iwarp/sys/dev/cxgb/cxgb_adapter.h Wed Apr 18 18:37:56 2012 (r234431) +++ user/np/toe_iwarp/sys/dev/cxgb/cxgb_adapter.h Wed Apr 18 18:43:01 2012 (r234432) @@ -56,7 +56,6 @@ $FreeBSD$ #include #include -#include #include struct adapter; @@ -129,6 +128,7 @@ enum { CXGB_OFLD_INIT = (1 << 7), TP_PARITY_INIT = (1 << 8), CXGB_BUSY = (1 << 9), + TOM_INIT_DONE = (1 << 10), /* port flags */ DOOMED = (1 << 0), @@ -178,7 +178,6 @@ struct sge_rspq { uint32_t async_notif; uint32_t cntxt_id; uint32_t offload_pkts; - uint32_t offload_bundles; uint32_t pure_rsps; uint32_t unhandled_irqs; uint32_t starved; @@ -290,6 +289,7 @@ struct sge_qset { uint32_t txq_stopped; /* which Tx queues are stopped */ uint64_t port_stats[SGE_PSTAT_MAX]; struct port_info *port; + struct adapter *adap; int idx; /* qset # */ int qs_flags; int coalescing; @@ -306,10 +306,13 @@ struct sge { struct filter_info; +typedef int (*cpl_handler_t)(struct sge_qset *, struct rsp_desc *, + struct mbuf *); + struct adapter { + SLIST_ENTRY(adapter) link; device_t dev; int flags; - TAILQ_ENTRY(adapter) adapter_entry; /* PCI register resources */ int regs_rid; @@ -375,11 +378,16 @@ struct adapter { struct port_info port[MAX_NPORTS]; device_t portdev[MAX_NPORTS]; - struct t3cdev tdev; +#ifdef TCP_OFFLOAD + void *tom_softc; + void *iwarp_softc; +#endif char fw_version[64]; char port_types[MAX_NPORTS + 1]; uint32_t open_device_map; - uint32_t registered_device_map; +#ifdef TCP_OFFLOAD + int offload_map; +#endif struct mtx lock; driver_intr_t *cxgb_intr; int msi_count; @@ -391,6 +399,11 @@ struct adapter { char elmerlockbuf[ADAPTER_LOCK_NAME_LEN]; int timestamp; + +#ifdef TCP_OFFLOAD +#define NUM_CPL_HANDLERS 0xa7 + cpl_handler_t cpl_handler[NUM_CPL_HANDLERS] __aligned(CACHE_LINE_SIZE); +#endif }; struct t3_rx_mode { @@ -501,10 +514,12 @@ void t3_os_link_changed(adapter_t *adapt int speed, int duplex, int fc, int mac_was_reset); void t3_os_phymod_changed(struct adapter *adap, int port_id); void t3_sge_err_intr_handler(adapter_t *adapter); -int t3_offload_tx(struct t3cdev *, struct mbuf *); +#ifdef TCP_OFFLOAD +int t3_offload_tx(struct adapter *, struct mbuf *); +#endif void t3_os_set_hw_addr(adapter_t *adapter, int port_idx, u8 hw_addr[]); int t3_mgmt_tx(adapter_t *adap, struct mbuf *m); - +int t3_register_cpl_handler(struct adapter *, int, cpl_handler_t); int t3_sge_alloc(struct adapter *); int t3_sge_free(struct adapter *); @@ -555,15 +570,9 @@ txq_to_qset(struct sge_txq *q, int qidx) return container_of(q, struct sge_qset, txq[qidx]); } -static __inline struct adapter * -tdev2adap(struct t3cdev *d) -{ - return container_of(d, struct adapter, tdev); -} - #undef container_of -#define OFFLOAD_DEVMAP_BIT 15 +#define OFFLOAD_DEVMAP_BIT (1 << MAX_NPORTS) static inline int offload_running(adapter_t *adapter) { return isset(&adapter->open_device_map, OFFLOAD_DEVMAP_BIT); @@ -572,4 +581,5 @@ static inline int offload_running(adapte void cxgb_tx_watchdog(void *arg); int cxgb_transmit(struct ifnet *ifp, struct mbuf *m); void cxgb_qflush(struct ifnet *ifp); +void t3_iterate(void (*)(struct adapter *, void *), void *); #endif Modified: user/np/toe_iwarp/sys/dev/cxgb/cxgb_main.c ============================================================================== --- user/np/toe_iwarp/sys/dev/cxgb/cxgb_main.c Wed Apr 18 18:37:56 2012 (r234431) +++ user/np/toe_iwarp/sys/dev/cxgb/cxgb_main.c Wed Apr 18 18:43:01 2012 (r234432) @@ -30,6 +30,8 @@ POSSIBILITY OF SUCH DAMAGE. #include __FBSDID("$FreeBSD$"); +#include "opt_inet.h" + #include #include #include @@ -107,6 +109,9 @@ static inline void mk_set_tcb_field(stru unsigned int, u64, u64); static inline void set_tcb_field_ulp(struct cpl_set_tcb_field *, unsigned int, unsigned int, u64, u64); +#ifdef TCP_OFFLOAD +static int cpl_not_handled(struct sge_qset *, struct rsp_desc *, struct mbuf *); +#endif /* Attachment glue for the PCI controller end of the device. Each port of * the device is attached separately, as defined later. @@ -119,10 +124,11 @@ static __inline void reg_block_dump(stru unsigned int end); static void cxgb_get_regs(adapter_t *sc, struct ch_ifconf_regs *regs, uint8_t *buf); static int cxgb_get_regs_len(void); -static int offload_open(struct port_info *pi); static void touch_bars(device_t dev); -static int offload_close(struct t3cdev *tdev); static void cxgb_update_mac_settings(struct port_info *p); +#ifdef TCP_OFFLOAD +static int toe_capability(struct port_info *, int); +#endif static device_method_t cxgb_controller_methods[] = { DEVMETHOD(device_probe, cxgb_controller_probe), @@ -138,8 +144,11 @@ static driver_t cxgb_controller_driver = sizeof(struct adapter) }; +static int cxgbc_mod_event(module_t, int, void *); static devclass_t cxgb_controller_devclass; -DRIVER_MODULE(cxgbc, pci, cxgb_controller_driver, cxgb_controller_devclass, 0, 0); +DRIVER_MODULE(cxgbc, pci, cxgb_controller_driver, cxgb_controller_devclass, + cxgbc_mod_event, 0); +MODULE_VERSION(cxgbc, 1); /* * Attachment glue for the ports. Attachment is done directly to the @@ -177,6 +186,14 @@ static struct cdevsw cxgb_cdevsw = { static devclass_t cxgb_port_devclass; DRIVER_MODULE(cxgb, cxgbc, cxgb_port_driver, cxgb_port_devclass, 0, 0); +MODULE_VERSION(cxgb, 1); + +static struct mtx t3_list_lock; +static SLIST_HEAD(, adapter) t3_list; +#ifdef TCP_OFFLOAD +static struct mtx t3_uld_list_lock; +static SLIST_HEAD(, uld_info) t3_uld_list; +#endif /* * The driver uses the best interrupt scheme available on a platform in the @@ -195,15 +212,6 @@ SYSCTL_INT(_hw_cxgb, OID_AUTO, msi_allow "MSI-X, MSI, INTx selector"); /* - * The driver enables offload as a default. - * To disable it, use ofld_disable = 1. - */ -static int ofld_disable = 0; -TUNABLE_INT("hw.cxgb.ofld_disable", &ofld_disable); -SYSCTL_INT(_hw_cxgb, OID_AUTO, ofld_disable, CTLFLAG_RDTUN, &ofld_disable, 0, - "disable ULP offload"); - -/* * The driver uses an auto-queue algorithm by default. * To disable it and force a single queue-set per port, use multiq = 0 */ @@ -445,6 +453,25 @@ cxgb_controller_attach(device_t dev) sc->msi_count = 0; ai = cxgb_get_adapter_info(dev); + snprintf(sc->lockbuf, ADAPTER_LOCK_NAME_LEN, "cxgb controller lock %d", + device_get_unit(dev)); + ADAPTER_LOCK_INIT(sc, sc->lockbuf); + + snprintf(sc->reglockbuf, ADAPTER_LOCK_NAME_LEN, "SGE reg lock %d", + device_get_unit(dev)); + snprintf(sc->mdiolockbuf, ADAPTER_LOCK_NAME_LEN, "cxgb mdio lock %d", + device_get_unit(dev)); + snprintf(sc->elmerlockbuf, ADAPTER_LOCK_NAME_LEN, "cxgb elmer lock %d", + device_get_unit(dev)); + + MTX_INIT(&sc->sge.reg_lock, sc->reglockbuf, NULL, MTX_SPIN); + MTX_INIT(&sc->mdio_lock, sc->mdiolockbuf, NULL, MTX_DEF); + MTX_INIT(&sc->elmer_lock, sc->elmerlockbuf, NULL, MTX_DEF); + + mtx_lock(&t3_list_lock); + SLIST_INSERT_HEAD(&t3_list, sc, link); + mtx_unlock(&t3_list_lock); + /* find the PCIe link width and set max read request to 4KB*/ if (pci_find_cap(dev, PCIY_EXPRESS, ®) == 0) { uint16_t lnk; @@ -471,24 +498,10 @@ cxgb_controller_attach(device_t dev) if ((sc->regs_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &sc->regs_rid, RF_ACTIVE)) == NULL) { device_printf(dev, "Cannot allocate BAR region 0\n"); - return (ENXIO); + error = ENXIO; + goto out; } - snprintf(sc->lockbuf, ADAPTER_LOCK_NAME_LEN, "cxgb controller lock %d", - device_get_unit(dev)); - ADAPTER_LOCK_INIT(sc, sc->lockbuf); - - snprintf(sc->reglockbuf, ADAPTER_LOCK_NAME_LEN, "SGE reg lock %d", - device_get_unit(dev)); - snprintf(sc->mdiolockbuf, ADAPTER_LOCK_NAME_LEN, "cxgb mdio lock %d", - device_get_unit(dev)); - snprintf(sc->elmerlockbuf, ADAPTER_LOCK_NAME_LEN, "cxgb elmer lock %d", - device_get_unit(dev)); - - MTX_INIT(&sc->sge.reg_lock, sc->reglockbuf, NULL, MTX_SPIN); - MTX_INIT(&sc->mdio_lock, sc->mdiolockbuf, NULL, MTX_DEF); - MTX_INIT(&sc->elmer_lock, sc->elmerlockbuf, NULL, MTX_DEF); - sc->bt = rman_get_bustag(sc->regs_res); sc->bh = rman_get_bushandle(sc->regs_res); sc->mmio_len = rman_get_size(sc->regs_res); @@ -604,7 +617,7 @@ cxgb_controller_attach(device_t dev) } else { sc->flags |= TPS_UPTODATE; } - + /* * Create a child device for each MAC. The ethernet attachment * will be done in these children. @@ -636,12 +649,7 @@ cxgb_controller_attach(device_t dev) t3_sge_init_adapter(sc); t3_led_ready(sc); - - cxgb_offload_init(); - if (is_offload(sc)) { - setbit(&sc->registered_device_map, OFFLOAD_DEVMAP_BIT); - cxgb_adapter_ofld(sc); - } + error = t3_get_fw_version(sc, &vers); if (error) goto out; @@ -662,6 +670,11 @@ cxgb_controller_attach(device_t dev) device_printf(sc->dev, "Firmware Version %s\n", &sc->fw_version[0]); callout_reset(&sc->cxgb_tick_ch, hz, cxgb_tick, sc); t3_add_attach_sysctls(sc); + +#ifdef TCP_OFFLOAD + for (i = 0; i < NUM_CPL_HANDLERS; i++) + sc->cpl_handler[i] = cpl_not_handled; +#endif out: if (error) cxgb_free(sc); @@ -775,20 +788,9 @@ cxgb_free(struct adapter *sc) sc->tq = NULL; } - if (is_offload(sc)) { - clrbit(&sc->registered_device_map, OFFLOAD_DEVMAP_BIT); - cxgb_adapter_unofld(sc); - } - -#ifdef notyet - if (sc->flags & CXGB_OFLD_INIT) - cxgb_offload_deactivate(sc); -#endif free(sc->filters, M_DEVBUF); t3_sge_free(sc); - cxgb_offload_exit(); - if (sc->udbs_res != NULL) bus_release_resource(sc->dev, SYS_RES_MEMORY, sc->udbs_rid, sc->udbs_res); @@ -800,6 +802,9 @@ cxgb_free(struct adapter *sc) MTX_DESTROY(&sc->mdio_lock); MTX_DESTROY(&sc->sge.reg_lock); MTX_DESTROY(&sc->elmer_lock); + mtx_lock(&t3_list_lock); + SLIST_REMOVE(&t3_list, sc, adapter, link); + mtx_unlock(&t3_list_lock); ADAPTER_LOCK_DEINIT(sc); } @@ -1017,6 +1022,10 @@ cxgb_port_attach(device_t dev) ifp->if_qflush = cxgb_qflush; ifp->if_capabilities = CXGB_CAP; +#ifdef TCP_OFFLOAD + if (is_offload(sc)) + ifp->if_capabilities |= IFCAP_TOE4; +#endif ifp->if_capenable = CXGB_CAP_ENABLE; ifp->if_hwassist = CSUM_TCP | CSUM_UDP | CSUM_IP | CSUM_TSO; @@ -1420,65 +1429,6 @@ setup_rss(adapter_t *adap) cpus, rspq_map); } - -/* - * Sends an mbuf to an offload queue driver - * after dealing with any active network taps. - */ -static inline int -offload_tx(struct t3cdev *tdev, struct mbuf *m) -{ - int ret; - - ret = t3_offload_tx(tdev, m); - return (ret); -} - -static int -write_smt_entry(struct adapter *adapter, int idx) -{ - struct port_info *pi = &adapter->port[idx]; - struct cpl_smt_write_req *req; - struct mbuf *m; - - if ((m = m_gethdr(M_NOWAIT, MT_DATA)) == NULL) - return (ENOMEM); - - req = mtod(m, struct cpl_smt_write_req *); - m->m_pkthdr.len = m->m_len = sizeof(struct cpl_smt_write_req); - - req->wr.wrh_hi = htonl(V_WR_OP(FW_WROPCODE_FORWARD)); - OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_SMT_WRITE_REQ, idx)); - req->mtu_idx = NMTUS - 1; /* should be 0 but there's a T3 bug */ - req->iff = idx; - memset(req->src_mac1, 0, sizeof(req->src_mac1)); - memcpy(req->src_mac0, pi->hw_addr, ETHER_ADDR_LEN); - - m_set_priority(m, 1); - - offload_tx(&adapter->tdev, m); - - return (0); -} - -static int -init_smt(struct adapter *adapter) -{ - int i; - - for_each_port(adapter, i) - write_smt_entry(adapter, i); - return 0; -} - -static void -init_port_mtus(adapter_t *adapter) -{ - unsigned int mtus = ETHERMTU | (ETHERMTU << 16); - - t3_write_reg(adapter, A_TP_MTU_PORT_TABLE, mtus); -} - static void send_pktsched_cmd(struct adapter *adap, int sched, int qidx, int lo, int hi, int port) @@ -1705,45 +1655,6 @@ cxgb_down(struct adapter *sc) t3_intr_disable(sc); } -static int -offload_open(struct port_info *pi) -{ - struct adapter *sc = pi->adapter; - struct t3cdev *tdev = &sc->tdev; - - setbit(&sc->open_device_map, OFFLOAD_DEVMAP_BIT); - - t3_tp_set_offload_mode(sc, 1); - tdev->lldev = pi->ifp; - init_port_mtus(sc); - t3_load_mtus(sc, sc->params.mtus, sc->params.a_wnd, sc->params.b_wnd, - sc->params.rev == 0 ? sc->port[0].ifp->if_mtu : 0xffff); - init_smt(sc); - cxgb_add_clients(tdev); - - return (0); -} - -static int -offload_close(struct t3cdev *tdev) -{ - struct adapter *adapter = tdev2adap(tdev); - - if (!isset(&adapter->open_device_map, OFFLOAD_DEVMAP_BIT)) - return (0); - - /* Call back all registered clients */ - cxgb_remove_clients(tdev); - - tdev->lldev = NULL; - cxgb_set_dummy_ops(tdev); - t3_tp_set_offload_mode(adapter, 0); - - clrbit(&adapter->open_device_map, OFFLOAD_DEVMAP_BIT); - - return (0); -} - /* * if_init for cxgb ports. */ @@ -1793,15 +1704,9 @@ cxgb_init_locked(struct port_info *p) ADAPTER_UNLOCK(sc); } - if (sc->open_device_map == 0) { - if ((rc = cxgb_up(sc)) != 0) + if (sc->open_device_map == 0 && ((rc = cxgb_up(sc)) != 0)) goto done; - if (is_offload(sc) && !ofld_disable && offload_open(p)) - log(LOG_WARNING, - "Could not initialize offload capabilities\n"); - } - PORT_LOCK(p); if (isset(&sc->open_device_map, p->port_id) && (ifp->if_drv_flags & IFF_DRV_RUNNING)) { @@ -1929,7 +1834,6 @@ cxgb_uninit_synchronized(struct port_inf DELAY(100 * 1000); t3_mac_disable(&pi->mac, MAC_DIRECTION_RX); - pi->phy.ops->power_down(&pi->phy, 1); PORT_UNLOCK(pi); @@ -1937,9 +1841,6 @@ cxgb_uninit_synchronized(struct port_inf pi->link_config.link_ok = 0; t3_os_link_changed(sc, pi->port_id, 0, 0, 0, 0, 0); - if ((sc->open_device_map & PORT_MASK) == 0) - offload_close(&sc->tdev); - if (sc->open_device_map == 0) cxgb_down(pi->adapter); @@ -2081,6 +1982,15 @@ fail: /* Safe to do this even if cxgb_up not called yet */ cxgb_set_lro(p, ifp->if_capenable & IFCAP_LRO); } +#ifdef TCP_OFFLOAD + if (mask & IFCAP_TOE4) { + int enable = (ifp->if_capenable ^ mask) & IFCAP_TOE4; + + error = toe_capability(p, enable); + if (error == 0) + ifp->if_capenable ^= mask; + } +#endif if (mask & IFCAP_VLAN_HWTAGGING) { ifp->if_capenable ^= IFCAP_VLAN_HWTAGGING; if (ifp->if_drv_flags & IFF_DRV_RUNNING) { @@ -3362,3 +3272,235 @@ set_tcb_field_ulp(struct cpl_set_tcb_fie txpkt->len = htonl(V_ULPTX_NFLITS(sizeof(*req) / 8)); mk_set_tcb_field(req, tid, word, mask, val); } + +void +t3_iterate(void (*func)(struct adapter *, void *), void *arg) +{ + struct adapter *sc; + + mtx_lock(&t3_list_lock); + SLIST_FOREACH(sc, &t3_list, link) { + /* + * func should not make any assumptions about what state sc is + * in - the only guarantee is that sc->sc_lock is a valid lock. + */ + func(sc, arg); + } + mtx_unlock(&t3_list_lock); +} + +#ifdef TCP_OFFLOAD +static int +toe_capability(struct port_info *pi, int enable) +{ + int rc; + struct adapter *sc = pi->adapter; + + ADAPTER_LOCK_ASSERT_OWNED(sc); + + if (!is_offload(sc)) + return (ENODEV); + + if (enable) { + if (!(sc->flags & FULL_INIT_DONE)) { + log(LOG_WARNING, + "You must enable a cxgb interface first\n"); + return (EAGAIN); + } + + if (isset(&sc->offload_map, pi->port_id)) + return (0); + + if (!(sc->flags & TOM_INIT_DONE)) { + rc = t3_activate_uld(sc, ULD_TOM); + if (rc == EAGAIN) { + log(LOG_WARNING, + "You must kldload t3_tom.ko before trying " + "to enable TOE on a cxgb interface.\n"); + } + if (rc != 0) + return (rc); + KASSERT(sc->tom_softc != NULL, + ("%s: TOM activated but softc NULL", __func__)); + KASSERT(sc->flags & TOM_INIT_DONE, + ("%s: TOM activated but flag not set", __func__)); + } + + setbit(&sc->offload_map, pi->port_id); + + /* + * XXX: Temporary code to allow iWARP to be enabled when TOE is + * enabled on any port. Need to figure out how to enable, + * disable, load, and unload iWARP cleanly. + */ + if (!isset(&sc->offload_map, MAX_NPORTS) && + t3_activate_uld(sc, ULD_IWARP) == 0) + setbit(&sc->offload_map, MAX_NPORTS); + } else { + if (!isset(&sc->offload_map, pi->port_id)) + return (0); + + KASSERT(sc->flags & TOM_INIT_DONE, + ("%s: TOM never initialized?", __func__)); + clrbit(&sc->offload_map, pi->port_id); + } + + return (0); +} + +/* + * Add an upper layer driver to the global list. + */ +int +t3_register_uld(struct uld_info *ui) +{ + int rc = 0; + struct uld_info *u; + + mtx_lock(&t3_uld_list_lock); + SLIST_FOREACH(u, &t3_uld_list, link) { + if (u->uld_id == ui->uld_id) { + rc = EEXIST; + goto done; + } + } + + SLIST_INSERT_HEAD(&t3_uld_list, ui, link); + ui->refcount = 0; +done: + mtx_unlock(&t3_uld_list_lock); + return (rc); +} + +int +t3_unregister_uld(struct uld_info *ui) +{ + int rc = EINVAL; + struct uld_info *u; + + mtx_lock(&t3_uld_list_lock); + + SLIST_FOREACH(u, &t3_uld_list, link) { + if (u == ui) { + if (ui->refcount > 0) { + rc = EBUSY; + goto done; + } + + SLIST_REMOVE(&t3_uld_list, ui, uld_info, link); + rc = 0; + goto done; + } + } +done: + mtx_unlock(&t3_uld_list_lock); + return (rc); +} + +int +t3_activate_uld(struct adapter *sc, int id) +{ + int rc = EAGAIN; + struct uld_info *ui; + + mtx_lock(&t3_uld_list_lock); + + SLIST_FOREACH(ui, &t3_uld_list, link) { + if (ui->uld_id == id) { + rc = ui->activate(sc); + if (rc == 0) + ui->refcount++; + goto done; + } + } +done: + mtx_unlock(&t3_uld_list_lock); + + return (rc); +} + +int +t3_deactivate_uld(struct adapter *sc, int id) +{ + int rc = EINVAL; + struct uld_info *ui; + + mtx_lock(&t3_uld_list_lock); + + SLIST_FOREACH(ui, &t3_uld_list, link) { + if (ui->uld_id == id) { + rc = ui->deactivate(sc); + if (rc == 0) + ui->refcount--; + goto done; + } + } +done: + mtx_unlock(&t3_uld_list_lock); + + return (rc); +} + +static int +cpl_not_handled(struct sge_qset *qs __unused, struct rsp_desc *r __unused, + struct mbuf *m) +{ + m_freem(m); + return (EDOOFUS); +} + +int +t3_register_cpl_handler(struct adapter *sc, int opcode, cpl_handler_t h) +{ + uintptr_t *loc, new; + + if (opcode >= NUM_CPL_HANDLERS) + return (EINVAL); + + new = h ? (uintptr_t)h : (uintptr_t)cpl_not_handled; + loc = (uintptr_t *) &sc->cpl_handler[opcode]; + atomic_store_rel_ptr(loc, new); + + return (0); +} +#endif + +static int +cxgbc_mod_event(module_t mod, int cmd, void *arg) +{ + int rc = 0; + + switch (cmd) { + case MOD_LOAD: + mtx_init(&t3_list_lock, "T3 adapters", 0, MTX_DEF); + SLIST_INIT(&t3_list); +#ifdef TCP_OFFLOAD + mtx_init(&t3_uld_list_lock, "T3 ULDs", 0, MTX_DEF); + SLIST_INIT(&t3_uld_list); +#endif + break; + + case MOD_UNLOAD: +#ifdef TCP_OFFLOAD + mtx_lock(&t3_uld_list_lock); + if (!SLIST_EMPTY(&t3_uld_list)) { + rc = EBUSY; + mtx_unlock(&t3_uld_list_lock); + break; + } + mtx_unlock(&t3_uld_list_lock); + mtx_destroy(&t3_uld_list_lock); +#endif + mtx_lock(&t3_list_lock); + if (!SLIST_EMPTY(&t3_list)) { + rc = EBUSY; + mtx_unlock(&t3_list_lock); + break; + } + mtx_unlock(&t3_list_lock); + mtx_destroy(&t3_list_lock); + break; + } + + return (rc); +} Modified: user/np/toe_iwarp/sys/dev/cxgb/cxgb_offload.h ============================================================================== --- user/np/toe_iwarp/sys/dev/cxgb/cxgb_offload.h Wed Apr 18 18:37:56 2012 (r234431) +++ user/np/toe_iwarp/sys/dev/cxgb/cxgb_offload.h Wed Apr 18 18:43:01 2012 (r234432) @@ -1,4 +1,3 @@ - /************************************************************************** Copyright (c) 2007-2008, Chelsio Inc. @@ -33,221 +32,99 @@ $FreeBSD$ #ifndef _CXGB_OFFLOAD_H #define _CXGB_OFFLOAD_H -#include -#include - -MALLOC_DECLARE(M_CXGB); +#ifdef TCP_OFFLOAD +enum { + ULD_TOM = 1, + ULD_IWARP = 2, +}; struct adapter; -struct cxgb_client; - -void cxgb_offload_init(void); -void cxgb_offload_exit(void); - -void cxgb_adapter_ofld(struct adapter *adapter); -void cxgb_adapter_unofld(struct adapter *adapter); -int cxgb_offload_activate(struct adapter *adapter); -void cxgb_offload_deactivate(struct adapter *adapter); -int cxgb_ofld_recv(struct t3cdev *dev, struct mbuf **m, int n); - -void cxgb_set_dummy_ops(struct t3cdev *dev); - - -/* - * Client registration. Users of T3 driver must register themselves. - * The T3 driver will call the add function of every client for each T3 - * adapter activated, passing up the t3cdev ptr. Each client fills out an - * array of callback functions to process CPL messages. - */ - -void cxgb_register_client(struct cxgb_client *client); -void cxgb_unregister_client(struct cxgb_client *client); -void cxgb_add_clients(struct t3cdev *tdev); -void cxgb_remove_clients(struct t3cdev *tdev); - -typedef int (*cxgb_cpl_handler_func)(struct t3cdev *dev, - struct mbuf *m, void *ctx); - -struct l2t_entry; -struct cxgb_client { - char *name; - void (*add) (struct t3cdev *); - void (*remove) (struct t3cdev *); - cxgb_cpl_handler_func *handlers; - int (*redirect)(void *ctx, struct rtentry *old, - struct rtentry *new, - struct l2t_entry *l2t); - TAILQ_ENTRY(cxgb_client) client_entry; +struct uld_info { + SLIST_ENTRY(uld_info) link; + int refcount; + int uld_id; + int (*activate)(struct adapter *); + int (*deactivate)(struct adapter *); }; -/* - * TID allocation services. - */ -int cxgb_alloc_atid(struct t3cdev *dev, struct cxgb_client *client, - void *ctx); -int cxgb_alloc_stid(struct t3cdev *dev, struct cxgb_client *client, - void *ctx); -void *cxgb_free_atid(struct t3cdev *dev, int atid); -void cxgb_free_stid(struct t3cdev *dev, int stid); -void *cxgb_get_lctx(struct t3cdev *tdev, int stid); -void cxgb_insert_tid(struct t3cdev *dev, struct cxgb_client *client, - void *ctx, - unsigned int tid); -void cxgb_queue_tid_release(struct t3cdev *dev, unsigned int tid); -void cxgb_remove_tid(struct t3cdev *dev, void *ctx, unsigned int tid); - -struct toe_tid_entry { - struct cxgb_client *client; - void *ctx; +struct tom_tunables { + int sndbuf; + int ddp; + int indsz; + int ddp_thres; }; /* CPL message priority levels */ enum { CPL_PRIORITY_DATA = 0, /* data messages */ + CPL_PRIORITY_CONTROL = 1 /* offload control messages */ +#ifdef notyet CPL_PRIORITY_SETUP = 1, /* connection setup messages */ CPL_PRIORITY_TEARDOWN = 0, /* connection teardown messages */ CPL_PRIORITY_LISTEN = 1, /* listen start/stop messages */ CPL_PRIORITY_ACK = 1, /* RX ACK messages */ - CPL_PRIORITY_CONTROL = 1 /* offload control messages */ +#endif }; -/* Flags for return value of CPL message handlers */ -enum { - CPL_RET_BUF_DONE = 1, // buffer processing done, buffer may be freed - CPL_RET_BAD_MSG = 2, // bad CPL message (e.g., unknown opcode) - CPL_RET_UNKNOWN_TID = 4 // unexpected unknown TID -}; +#define S_HDR_NDESC 0 +#define M_HDR_NDESC 0xf +#define V_HDR_NDESC(x) ((x) << S_HDR_NDESC) +#define G_HDR_NDESC(x) (((x) >> S_HDR_NDESC) & M_HDR_NDESC) -typedef int (*cpl_handler_func)(struct t3cdev *dev, struct mbuf *m); +#define S_HDR_QSET 4 +#define M_HDR_QSET 0xf +#define V_HDR_QSET(x) ((x) << S_HDR_QSET) +#define G_HDR_QSET(x) (((x) >> S_HDR_QSET) & M_HDR_QSET) -/* - * Returns a pointer to the first byte of the CPL header in an sk_buff that - * contains a CPL message. - */ -static inline void *cplhdr(struct mbuf *m) -{ - return mtod(m, uint8_t *); -} +#define S_HDR_CTRL 8 +#define V_HDR_CTRL(x) ((x) << S_HDR_CTRL) +#define F_HDR_CTRL V_HDR_CTRL(1U) -void t3_register_cpl_handler(unsigned int opcode, cpl_handler_func h); +#define S_HDR_DF 9 +#define V_HDR_DF(x) ((x) << S_HDR_DF) +#define F_HDR_DF V_HDR_DF(1U) -union listen_entry { - struct toe_tid_entry toe_tid; - union listen_entry *next; -}; +#define S_HDR_SGL 10 +#define V_HDR_SGL(x) ((x) << S_HDR_SGL) +#define F_HDR_SGL V_HDR_SGL(1U) -union active_open_entry { - struct toe_tid_entry toe_tid; - union active_open_entry *next; -}; - -/* - * Holds the size, base address, free list start, etc of the TID, server TID, - * and active-open TID tables for a offload device. - * The tables themselves are allocated dynamically. - */ -struct tid_info { - struct toe_tid_entry *tid_tab; - unsigned int ntids; - volatile unsigned int tids_in_use; - - union listen_entry *stid_tab; - unsigned int nstids; - unsigned int stid_base; - - union active_open_entry *atid_tab; - unsigned int natids; - unsigned int atid_base; - - /* - * The following members are accessed R/W so we put them in their own - * cache lines. - * - * XXX We could combine the atid fields above with the lock here since - * atids are use once (unlike other tids). OTOH the above fields are - * usually in cache due to tid_tab. - */ - struct mtx atid_lock /* ____cacheline_aligned_in_smp */; - union active_open_entry *afree; - unsigned int atids_in_use; - - struct mtx stid_lock /*____cacheline_aligned */; - union listen_entry *sfree; - unsigned int stids_in_use; -}; - -struct t3c_data { - struct t3cdev *dev; - unsigned int tx_max_chunk; /* max payload for TX_DATA */ - unsigned int max_wrs; /* max in-flight WRs per connection */ - unsigned int nmtus; - const unsigned short *mtus; - struct tid_info tid_maps; - - struct toe_tid_entry *tid_release_list; - struct mtx tid_release_lock; - struct task tid_release_task; +struct ofld_hdr +{ + void *sgl; /* SGL, if F_HDR_SGL set in flags */ + int plen; /* amount of payload (in bytes) */ + int flags; }; /* - * t3cdev -> toe_data accessor + * Convenience function for fixed size CPLs that fit in 1 desc. */ -#define T3C_DATA(dev) (*(struct t3c_data **)&(dev)->l4opt) - -/* - * Map an ATID or STID to their entries in the corresponding TID tables. - */ -static inline union active_open_entry *atid2entry(const struct tid_info *t, - unsigned int atid) +#define M_GETHDR_OFLD(qset, ctrl, cpl) \ + m_gethdr_ofld(qset, ctrl, sizeof(*cpl), (void **)&cpl) +static inline struct mbuf * +m_gethdr_ofld(int qset, int ctrl, int cpllen, void **cpl) { - return &t->atid_tab[atid - t->atid_base]; -} - + struct mbuf *m; + struct ofld_hdr *oh; -static inline union listen_entry *stid2entry(const struct tid_info *t, - unsigned int stid) -{ - return &t->stid_tab[stid - t->stid_base]; -} + m = m_gethdr(M_NOWAIT, MT_DATA); + if (m == NULL) + return (NULL); -/* - * Find the connection corresponding to a TID. - */ -static inline struct toe_tid_entry *lookup_tid(const struct tid_info *t, - unsigned int tid) -{ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 18:59:28 2012 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 92CCD106566B; Wed, 18 Apr 2012 18:59:28 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7E86D8FC15; Wed, 18 Apr 2012 18:59: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 q3IIxSXl046222; Wed, 18 Apr 2012 18:59:28 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IIxSAB046219; Wed, 18 Apr 2012 18:59:28 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204181859.q3IIxSAB046219@svn.freebsd.org> From: Navdeep Parhar Date: Wed, 18 Apr 2012 18:59: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: r234434 - user/np/toe_iwarp/sys/contrib/rdma 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: Wed, 18 Apr 2012 18:59:28 -0000 Author: np Date: Wed Apr 18 18:59:27 2012 New Revision: 234434 URL: http://svn.freebsd.org/changeset/base/234434 Log: A couple of minor fixes to the old rdma module. Modified: user/np/toe_iwarp/sys/contrib/rdma/rdma_addr.c user/np/toe_iwarp/sys/contrib/rdma/rdma_cache.c Modified: user/np/toe_iwarp/sys/contrib/rdma/rdma_addr.c ============================================================================== --- user/np/toe_iwarp/sys/contrib/rdma/rdma_addr.c Wed Apr 18 18:58:18 2012 (r234433) +++ user/np/toe_iwarp/sys/contrib/rdma/rdma_addr.c Wed Apr 18 18:59:27 2012 (r234434) @@ -117,7 +117,8 @@ int rdma_copy_addr(struct rdma_dev_addr const unsigned char *dst_dev_addr) { dev_addr->dev_type = RDMA_NODE_RNIC; - memcpy(dev_addr->src_dev_addr, IF_LLADDR(dev), MAX_ADDR_LEN); + memset(dev_addr->src_dev_addr, 0, MAX_ADDR_LEN); + memcpy(dev_addr->src_dev_addr, IF_LLADDR(dev), dev->if_addrlen); memcpy(dev_addr->broadcast, dev->if_broadcastaddr, MAX_ADDR_LEN); if (dst_dev_addr) memcpy(dev_addr->dst_dev_addr, dst_dev_addr, MAX_ADDR_LEN); @@ -207,7 +208,7 @@ static int addr_resolve_remote(struct so goto put; } ret = arpresolve(iproute.ro_rt->rt_ifp, iproute.ro_rt, NULL, - rt_key(iproute.ro_rt), dmac, &lle); + (struct sockaddr *)dst_in, dmac, &lle); if (ret) { goto put; } Modified: user/np/toe_iwarp/sys/contrib/rdma/rdma_cache.c ============================================================================== --- user/np/toe_iwarp/sys/contrib/rdma/rdma_cache.c Wed Apr 18 18:58:18 2012 (r234433) +++ user/np/toe_iwarp/sys/contrib/rdma/rdma_cache.c Wed Apr 18 18:59:27 2012 (r234434) @@ -132,7 +132,7 @@ int ib_find_cached_gid(struct ib_device for (p = 0; p <= end_port(device) - start_port(device); ++p) { cache = device->cache.gid_cache[p]; for (i = 0; i < cache->table_len; ++i) { - if (!memcmp(gid, &cache->table[i], 6)) { /* XXX */ + if (!memcmp(gid, &cache->table[i], sizeof *gid)) { *port_num = p + start_port(device); if (index) *index = i; From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 18:59:47 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D69DD106566C; Wed, 18 Apr 2012 18:59:47 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C0F068FC15; Wed, 18 Apr 2012 18:59:47 +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 q3IIxl46046272; Wed, 18 Apr 2012 18:59:47 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IIxlu8046266; Wed, 18 Apr 2012 18:59:47 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201204181859.q3IIxlu8046266@svn.freebsd.org> From: Hiroki Sato Date: Wed, 18 Apr 2012 18:59:47 +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: r234435 - in user/hrs/ipv6: sbin/ifconfig sys/dev/usb sys/netinet6 usr.sbin/usbdump 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: Wed, 18 Apr 2012 18:59:47 -0000 Author: hrs Date: Wed Apr 18 18:59:47 2012 New Revision: 234435 URL: http://svn.freebsd.org/changeset/base/234435 Log: Make usbusN interface clonable and usbdump(8) create the interface dynamically when necessary. This mitigates the problem that the extra pseudo-interfaces enlarge the interface list and confuse the user. The hw.usb.no_pf knob has been removed. Instead of using IFF_CANTCONFIG, the usbusN interfaces reject any ioctls for interface configuration intentionally. Also, set ifp->if_afdata[AF_INET6] to NULL to eliminate INET6-specific handling such as ND6 options. Reviewed by: hselasky Modified: user/hrs/ipv6/sbin/ifconfig/af_nd6.c user/hrs/ipv6/sys/dev/usb/usb_pf.c user/hrs/ipv6/sys/netinet6/in6.c user/hrs/ipv6/sys/netinet6/in6_ifattach.c user/hrs/ipv6/usr.sbin/usbdump/usbdump.c Modified: user/hrs/ipv6/sbin/ifconfig/af_nd6.c ============================================================================== --- user/hrs/ipv6/sbin/ifconfig/af_nd6.c Wed Apr 18 18:59:27 2012 (r234434) +++ user/hrs/ipv6/sbin/ifconfig/af_nd6.c Wed Apr 18 18:59:47 2012 (r234435) @@ -153,7 +153,8 @@ nd6_status(int s) } error = ioctl(s6, SIOCGIFINFO_IN6, &nd); if (error) { - warn("ioctl(SIOCGIFINFO_IN6)"); + if (errno != EPFNOSUPPORT) + warn("ioctl(SIOCGIFINFO_IN6)"); close(s6); return; } Modified: user/hrs/ipv6/sys/dev/usb/usb_pf.c ============================================================================== --- user/hrs/ipv6/sys/dev/usb/usb_pf.c Wed Apr 18 18:59:27 2012 (r234434) +++ user/hrs/ipv6/sys/dev/usb/usb_pf.c Wed Apr 18 18:59:47 2012 (r234435) @@ -44,8 +44,10 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include +#include #include #include @@ -58,35 +60,144 @@ __FBSDID("$FreeBSD$"); #include #include -static int usb_no_pf; +#define USBUSNAME "usbus" -SYSCTL_INT(_hw_usb, OID_AUTO, no_pf, CTLFLAG_RW, - &usb_no_pf, 0, "Set to disable USB packet filtering"); +static void usbpf_init(void); +static void usbpf_uninit(void); +static int usbpf_ioctl(struct ifnet *, u_long, caddr_t); +static int usbpf_clone_match(struct if_clone *, const char *); +static int usbpf_clone_create(struct if_clone *, char *, size_t, caddr_t); +static int usbpf_clone_destroy(struct if_clone *, struct ifnet *); +static struct usb_bus *usbpf_ifname2ubus(const char *); +static uint32_t usbpf_aggregate_xferflags(struct usb_xfer_flags *); +static uint32_t usbpf_aggregate_status(struct usb_xfer_flags_int *); +static int usbpf_xfer_frame_is_read(struct usb_xfer *, uint32_t); +static uint32_t usbpf_xfer_precompute_size(struct usb_xfer *, int); + +static struct if_clone usbpf_cloner = IFC_CLONE_INITIALIZER( + USBUSNAME, NULL, IF_MAXUNIT, + NULL, usbpf_clone_match, usbpf_clone_create, usbpf_clone_destroy); -TUNABLE_INT("hw.usb.no_pf", &usb_no_pf); +SYSINIT(usbpf_init, SI_SUB_PSEUDO, SI_ORDER_MIDDLE, usbpf_init, NULL); +SYSUNINIT(usbpf_uninit, SI_SUB_PSEUDO, SI_ORDER_MIDDLE, usbpf_uninit, NULL); -void -usbpf_attach(struct usb_bus *ubus) +static void +usbpf_init(void) { - struct ifnet *ifp; - if (usb_no_pf != 0) { - ubus->ifp = NULL; + if_clone_attach(&usbpf_cloner); +} + +static void +usbpf_uninit(void) +{ + int devlcnt; + device_t *devlp; + devclass_t dc; + struct usb_bus *ubus; + int error; + int i; + + if_clone_detach(&usbpf_cloner); + + dc = devclass_find(USBUSNAME); + if (dc == NULL) return; + error = devclass_get_devices(dc, &devlp, &devlcnt); + if (error) + return; + for (i = 0; i < devlcnt; i++) { + ubus = device_get_softc(devlp[i]); + if (ubus != NULL && ubus->ifp != NULL) + usbpf_clone_destroy(&usbpf_cloner, ubus->ifp); } +} + +static int +usbpf_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) +{ + + /* No configuration allowed. */ + return (EINVAL); +} + +static struct usb_bus * +usbpf_ifname2ubus(const char *ifname) +{ + device_t dev; + devclass_t dc; + int unit; + int error; + + if (strncmp(ifname, USBUSNAME, sizeof(USBUSNAME)) <= 0) + return (NULL); + error = ifc_name2unit(ifname, &unit); + if (error || unit < 0) + return (NULL); + dc = devclass_find(USBUSNAME); + if (dc == NULL) + return (NULL); + dev = devclass_get_device(dc, unit); + if (dev == NULL) + return (NULL); + + return (device_get_softc(dev)); +} + +static int +usbpf_clone_match(struct if_clone *ifc, const char *name) +{ + struct usb_bus *ubus; + + ubus = usbpf_ifname2ubus(name); + if (ubus == NULL) + return (0); + if (ubus->ifp != NULL) + return (0); + + return (1); +} + +static int +usbpf_clone_create(struct if_clone *ifc, char *name, size_t len, caddr_t params) +{ + int error; + int unit; + struct ifnet *ifp; + struct usb_bus *ubus; + error = ifc_name2unit(name, &unit); + if (error || unit < 0) + return (error); + + ubus = usbpf_ifname2ubus(name); + if (ubus == NULL) + return (1); + if (ubus->ifp != NULL) + return (1); + + error = ifc_alloc_unit(ifc, &unit); + if (error) { + ifc_free_unit(ifc, unit); + device_printf(ubus->parent, "usbpf: Could not allocate " + "instance\n"); + return (error); + } ifp = ubus->ifp = if_alloc(IFT_USB); if (ifp == NULL) { + ifc_free_unit(ifc, unit); device_printf(ubus->parent, "usbpf: Could not allocate " "instance\n"); - return; + return (ENOSPC); } - - if_initname(ifp, "usbus", device_get_unit(ubus->bdev)); - ifp->if_flags = IFF_CANTCONFIG; + strlcpy(ifp->if_xname, name, sizeof(ifp->if_xname)); + ifp->if_softc = ubus; + ifp->if_dname = ifc->ifc_name; + ifp->if_dunit = unit; + ifp->if_ioctl = usbpf_ioctl; if_attach(ifp); - if_up(ifp); - + ifp->if_flags |= IFF_UP; + rt_ifmsg(ifp); /* * XXX According to the specification of DLT_USB, it indicates * packets beginning with USB setup header. But not sure all @@ -94,6 +205,31 @@ usbpf_attach(struct usb_bus *ubus) */ bpfattach(ifp, DLT_USB, USBPF_HDR_LEN); + return (0); +} + +static int +usbpf_clone_destroy(struct if_clone *ifc, struct ifnet *ifp) +{ + struct usb_bus *ubus; + int unit; + + ubus = ifp->if_softc; + unit = ifp->if_dunit; + + ubus->ifp = NULL; + bpfdetach(ifp); + if_detach(ifp); + if_free(ifp); + ifc_free_unit(ifc, unit); + + return (0); +} + +void +usbpf_attach(struct usb_bus *ubus) +{ + if (bootverbose) device_printf(ubus->parent, "usbpf: Attached\n"); } @@ -101,15 +237,11 @@ usbpf_attach(struct usb_bus *ubus) void usbpf_detach(struct usb_bus *ubus) { - struct ifnet *ifp = ubus->ifp; - if (ifp != NULL) { - bpfdetach(ifp); - if_down(ifp); - if_detach(ifp); - if_free(ifp); - } - ubus->ifp = NULL; + if (ubus->ifp != NULL) + usbpf_clone_destroy(&usbpf_cloner, ubus->ifp); + if (bootverbose) + device_printf(ubus->parent, "usbpf: Detached\n"); } static uint32_t @@ -259,8 +391,6 @@ usbpf_xfertap(struct usb_xfer *xfer, int bus = xfer->xroot->bus; /* sanity checks */ - if (usb_no_pf != 0) - return; if (bus->ifp == NULL) return; if (!bpf_peers_present(bus->ifp->if_bpf)) Modified: user/hrs/ipv6/sys/netinet6/in6.c ============================================================================== --- user/hrs/ipv6/sys/netinet6/in6.c Wed Apr 18 18:59:27 2012 (r234434) +++ user/hrs/ipv6/sys/netinet6/in6.c Wed Apr 18 18:59:47 2012 (r234435) @@ -434,6 +434,9 @@ in6_control(struct socket *so, u_long cm sa6 = NULL; break; } + if (sa6 != NULL && ifp->if_afdata[AF_INET6] == NULL) + return (EPFNOSUPPORT); + if (sa6 && sa6->sin6_family == AF_INET6) { if (sa6->sin6_scope_id != 0) error = sa6_embedscope(sa6, 0); @@ -2698,6 +2701,14 @@ in6_domifattach(struct ifnet *ifp) { struct in6_ifextra *ext; + /* some of the interfaces are inherently not IPv6 capable */ + switch (ifp->if_type) { + case IFT_PFLOG: + case IFT_PFSYNC: + case IFT_USB: + return (NULL); + } + ext = (struct in6_ifextra *)malloc(sizeof(*ext), M_IFADDR, M_WAITOK); bzero(ext, sizeof(*ext)); Modified: user/hrs/ipv6/sys/netinet6/in6_ifattach.c ============================================================================== --- user/hrs/ipv6/sys/netinet6/in6_ifattach.c Wed Apr 18 18:59:27 2012 (r234434) +++ user/hrs/ipv6/sys/netinet6/in6_ifattach.c Wed Apr 18 18:59:47 2012 (r234435) @@ -697,13 +697,6 @@ in6_ifattach(struct ifnet *ifp, struct i struct in6_ifaddr *ia; struct in6_addr in6; - /* some of the interfaces are inherently not IPv6 capable */ - switch (ifp->if_type) { - case IFT_PFLOG: - case IFT_PFSYNC: - return; - } - /* * quirks based on interface type */ @@ -793,6 +786,9 @@ in6_ifdetach(struct ifnet *ifp) struct sockaddr_in6 sin6; struct in6_multi_mship *imm; + if (ifp->if_afdata[AF_INET6] == NULL) + return; + /* remove neighbor management table */ nd6_purge(ifp); Modified: user/hrs/ipv6/usr.sbin/usbdump/usbdump.c ============================================================================== --- user/hrs/ipv6/usr.sbin/usbdump/usbdump.c Wed Apr 18 18:59:27 2012 (r234434) +++ user/hrs/ipv6/usr.sbin/usbdump/usbdump.c Wed Apr 18 18:59:47 2012 (r234435) @@ -758,6 +758,8 @@ main(int argc, char *argv[]) int o; int filt_unit; int filt_ep; + int s; + int ifindex; const char *optstring; char *pp; @@ -833,9 +835,20 @@ main(int argc, char *argv[]) /* clear ifr structure */ memset(&ifr, 0, sizeof(ifr)); + /* Try to create usbusN interface if it is not available. */ + s = socket(AF_LOCAL, SOCK_DGRAM, 0); + if (s < 0) + errx(EXIT_FAILURE, "Could not open a socket"); + ifindex = if_nametoindex(i_arg); + if (ifindex == 0) { + (void)strlcpy(ifr.ifr_name, i_arg, sizeof(ifr.ifr_name)); + if (ioctl(s, SIOCIFCREATE2, &ifr) < 0) + errx(EXIT_FAILURE, "Invalid bus interface: %s", i_arg); + } + for ( ; v >= USBPF_HDR_LEN; v >>= 1) { (void)ioctl(fd, BIOCSBLEN, (caddr_t)&v); - (void)strncpy(ifr.ifr_name, i_arg, sizeof(ifr.ifr_name)); + (void)strlcpy(ifr.ifr_name, i_arg, sizeof(ifr.ifr_name)); if (ioctl(fd, BIOCSETIF, (caddr_t)&ifr) >= 0) break; } @@ -876,6 +889,17 @@ main(int argc, char *argv[]) printf("%d packets received by filter\n", us.bs_recv); printf("%d packets dropped by kernel\n", us.bs_drop); + /* + * Destroy the usbusN interface only if it was created by + * usbdump(8). Ignore when it was already destroyed. + */ + if (ifindex == 0 && if_nametoindex(i_arg) > 0) { + (void)strlcpy(ifr.ifr_name, i_arg, sizeof(ifr.ifr_name)); + if (ioctl(s, SIOCIFDESTROY, &ifr) < 0) + warn("SIOCIFDESTROY ioctl failed"); + } + close(s); + if (p->fd > 0) close(p->fd); if (p->rfd > 0) From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 19:11:10 2012 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 9095210656ED; Wed, 18 Apr 2012 19:11:10 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1B7028FC1B; Wed, 18 Apr 2012 19:11: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 q3IJB4CZ046670; Wed, 18 Apr 2012 19:11:04 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IJB3Ot046666; Wed, 18 Apr 2012 19:11:03 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201204181911.q3IJB3Ot046666@svn.freebsd.org> From: Hiroki Sato Date: Wed, 18 Apr 2012 19:11:03 +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: r234436 - user/hrs/ipv6/sbin/route 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: Wed, 18 Apr 2012 19:11:10 -0000 Author: hrs Date: Wed Apr 18 19:11:03 2012 New Revision: 234436 URL: http://svn.freebsd.org/changeset/base/234436 Log: Add multiple FIB support to route(8). An -fib option has been added to specify the target FIBs. The is a comma-separated list of FIB numbers and/or a range of FIBs like the following: # route add -inet 10.1.1.0/24 192.168.2.1 -fib 2,4,6 # route add -inet 10.1.1.0/24 192.168.2.1 -fib 0-3,5,7-8 Modified: user/hrs/ipv6/sbin/route/keywords user/hrs/ipv6/sbin/route/route.8 user/hrs/ipv6/sbin/route/route.c Modified: user/hrs/ipv6/sbin/route/keywords ============================================================================== --- user/hrs/ipv6/sbin/route/keywords Wed Apr 18 18:59:47 2012 (r234435) +++ user/hrs/ipv6/sbin/route/keywords Wed Apr 18 19:11:03 2012 (r234436) @@ -10,6 +10,7 @@ del delete dst expire +fib flush gateway genmask Modified: user/hrs/ipv6/sbin/route/route.8 ============================================================================== --- user/hrs/ipv6/sbin/route/route.8 Wed Apr 18 18:59:47 2012 (r234435) +++ user/hrs/ipv6/sbin/route/route.8 Wed Apr 18 19:11:03 2012 (r234436) @@ -118,16 +118,14 @@ The monitor command has the syntax: .Bd -ragged -offset indent -compact .Nm .Op Fl n -.Cm monitor +.Cm monitor Op Fl fib Ar number .Ed .Pp The flush command has the syntax: .Pp .Bd -ragged -offset indent -compact .Nm -.Op Fl n -.Cm flush -.Op Ar family +.Oo Fl n Cm flush Oc Oo Ar family Oc Op Fl fib Ar number .Ed .Pp If the @@ -144,6 +142,11 @@ or .Fl inet modifiers, only routes having destinations with addresses in the delineated family will be deleted. +When an +.Fl fib +option is specified, the operation will be applied to +the specified FIB +.Pq routing table . .Pp The other commands have the following syntax: .Pp @@ -154,6 +157,7 @@ The other commands have the following sy .Op Fl net No \&| Fl host .Ar destination gateway .Op Ar netmask +.Op Fl fib Ar number .Ed .Pp where @@ -210,9 +214,15 @@ A .Ar destination of .Ar default -is a synonym for -.Fl net Li 0.0.0.0 , -which is the default route. +is a synonym for the default route. +For +.Li AF_INET +it is +.Fl net Fl inet Li 0.0.0.0 , +and for +.Li AF_INET6 +it is +.Fl net Fl inet6 Li :: . .Pp If the destination is directly reachable via an interface requiring @@ -314,6 +324,33 @@ specify that all ensuing metrics may be .Fl lockrest meta-modifier. .Pp +The optional modifier +.Fl fib Ar number +specifies the command will be applied to a non-default FIB. +The +.Ar number +must be smaller than the +.Va net.fibs +.Xr sysctl 8 +MIB. +When this modifier is not specified, +or a negative number is specified, +the default FIB shown in the +.Va net.my_fibnum +.Xr sysctl 8 +MIB will be used. +.Pp +Thw +.Ar number +allows multiple FIBs by a comma-separeted list and/or range +specification. +The +.Qq Fl fib Li 2,4,6 +means the FIB number 2, 4, and 6. +The +.Qq Fl fib Li 1,3-5,6 +means the 1, 3, 4, 5, and 6. +.Pp In a .Cm change or Modified: user/hrs/ipv6/sbin/route/route.c ============================================================================== --- user/hrs/ipv6/sbin/route/route.c Wed Apr 18 18:59:47 2012 (r234435) +++ user/hrs/ipv6/sbin/route/route.c Wed Apr 18 19:11:03 2012 (r234436) @@ -48,6 +48,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include @@ -77,7 +78,6 @@ struct keytab { {0, 0} }; -struct ortentry route; union sockunion { struct sockaddr sa; struct sockaddr_in sin; @@ -99,11 +99,14 @@ int locking, lockrest, debugonly; struct rt_metrics rt_metrics; u_long rtm_inits; uid_t uid; +int defaultfib; +int numfibs; static int atalk_aton(const char *, struct at_addr *); static char *atalk_ntoa(struct at_addr); static void bprintf(FILE *, int, u_char *); static void flushroutes(int argc, char *argv[]); +static int flushroutes_fib(int); static int getaddr(int, char *, struct hostent **); static int keyword(const char *); static void inet_makenetandmask(u_long, struct sockaddr_in *, u_long); @@ -112,21 +115,35 @@ static int inet6_makenetandmask(struct s #endif static void interfaces(void); static void mask_addr(void); -static void monitor(void); +static void monitor(int, char*[]); static const char *netname(struct sockaddr *); static void newroute(int, char **); +static int newroute_fib(int, char *, int); static void pmsg_addrs(char *, int, size_t); static void pmsg_common(struct rt_msghdr *, size_t); static int prefixlen(const char *); -static void print_getmsg(struct rt_msghdr *, int); +static void print_getmsg(struct rt_msghdr *, int, int); static void print_rtmsg(struct rt_msghdr *, size_t); static const char *routename(struct sockaddr *); -static int rtmsg(int, int); +static int rtmsg(int, int, int); static void set_metric(char *, int); +static int set_sofib(int); +static int set_procfib(int); static void sockaddr(char *, struct sockaddr *); static void sodump(sup, const char *); extern char *iso_ntoa(void); +struct fibl { + int fl_num; + int fl_error; + int fl_errno; + TAILQ_ENTRY(fibl) fl_next; +}; +TAILQ_HEAD(fibl_head_t, fibl) fibl_head; + +static int fiboptlist_csv(const char *, struct fibl_head_t *); +static int fiboptlist_range(const char *, struct fibl_head_t *); + static void usage(const char *) __dead2; void @@ -144,6 +161,7 @@ int main(int argc, char **argv) { int ch; + size_t len; if (argc < 2) usage(NULL); @@ -180,6 +198,17 @@ main(int argc, char **argv) s = socket(PF_ROUTE, SOCK_RAW, 0); if (s < 0) err(EX_OSERR, "socket"); + + len = sizeof(numfibs); + if (sysctlbyname("net.fibs", (void *)&numfibs, &len, NULL, 0) == -1) + numfibs = -1; + + len = sizeof(defaultfib); + if (numfibs != -1 && + sysctlbyname("net.my_fibnum", (void *)&defaultfib, &len, NULL, + 0) == -1) + defaultfib = -1; + if (*argv != NULL) switch (keyword(*argv)) { case K_GET: @@ -195,7 +224,7 @@ main(int argc, char **argv) /* NOTREACHED */ case K_MONITOR: - monitor(); + monitor(argc, argv); /* NOTREACHED */ case K_FLUSH: @@ -207,6 +236,130 @@ main(int argc, char **argv) /* NOTREACHED */ } +static int +set_sofib(int f) +{ + + if (f < 0) + return (0); + return (setsockopt(s, SOL_SOCKET, SO_SETFIB, (void *)&f, sizeof(f))); +} + +static int +set_procfib(int f) +{ + + if (f < 0) + return (0); + return (setfib(f)); +} + +static int +fiboptlist_range(const char *arg, struct fibl_head_t *flh) +{ + char *str; + char *token; + int fib[2]; + int i; + int error; + struct fibl *fl; + + str = strdup(arg); + error = 0; + i = 0; + while ((token = strsep(&str, "-")) != NULL) { + switch (i) { + case 0: + case 1: + fib[i] = strtol(token, NULL, 0); + if (fib[i] == 0 && errno == EINVAL) + error = 1; + break; + default: + error = 1; + } + if (error) + goto fiboptlist_range_ret; + i++; + } + + if (fib[0] >= fib[1]) { + error = 1; + goto fiboptlist_range_ret; + } + + for (i = fib[0]; i <= fib[1]; i++) { + fl = calloc(1, sizeof(*fl)); + if (fl == NULL) { + error = 1; + goto fiboptlist_range_ret; + } + fl->fl_num = i; + TAILQ_INSERT_TAIL(flh, fl, fl_next); + } + +fiboptlist_range_ret: + free(str); + return (error); +} + +#define ALLSTRLEN 64 +static int +fiboptlist_csv(const char *arg, struct fibl_head_t *flh) +{ + char *str; + char *token; + int fib; + int error; + struct fibl *fl; + + if (strcmp("all", arg) == 0) { + str = calloc(1, ALLSTRLEN); + if (str == NULL) { + error = 1; + goto fiboptlist_csv_ret; + } + if (numfibs > 1) + snprintf(str, ALLSTRLEN - 1, "%d-%d", 0, numfibs - 1); + else + snprintf(str, ALLSTRLEN - 1, "%d", 0); + } else if (strcmp("default", arg) == 0) { + str = calloc(1, ALLSTRLEN); + if (str == NULL) { + error = 1; + goto fiboptlist_csv_ret; + } + snprintf(str, ALLSTRLEN - 1, "%d", defaultfib); + } else + str = strdup(arg); + + error = 0; + while ((token = strsep(&str, ",")) != NULL) { + if (*token != '-' && strchr(token, '-') != NULL) { + error = fiboptlist_range(token, flh); + if (error) + goto fiboptlist_csv_ret; + } else { + fib = strtol(token, NULL, 0); + if (fib == 0 && errno == EINVAL) { + error = 1; + goto fiboptlist_csv_ret; + } + fl = calloc(1, sizeof(*fl)); + if (fl == NULL) { + error = 1; + goto fiboptlist_csv_ret; + } + fl->fl_num = fib; + TAILQ_INSERT_TAIL(flh, fl, fl_next); + } + } + +fiboptlist_csv_ret: + free(str); + return (error); +} + /* * Purge all entries in the routing tables not * associated with network interfaces. @@ -214,38 +367,73 @@ main(int argc, char **argv) static void flushroutes(int argc, char *argv[]) { - size_t needed; - int mib[6], rlen, seqno, count = 0; - char *buf, *next, *lim; - struct rt_msghdr *rtm; + int error; + struct fibl *fl; if (uid != 0 && !debugonly) { errx(EX_NOPERM, "must be root to alter routing table"); } shutdown(s, SHUT_RD); /* Don't want to read back our messages */ - if (argc > 1) { + + TAILQ_INIT(&fibl_head); + while (argc > 1) { + argc--; argv++; - if (argc == 2 && **argv == '-') - switch (keyword(*argv + 1)) { - case K_INET: - af = AF_INET; - break; + if (**argv != '-') + usage(*argv); + switch (keyword(*argv + 1)) { + case K_INET: + af = AF_INET; + break; #ifdef INET6 - case K_INET6: - af = AF_INET6; - break; + case K_INET6: + af = AF_INET6; + break; #endif - case K_ATALK: - af = AF_APPLETALK; - break; - case K_LINK: - af = AF_LINK; - break; - default: - goto bad; - } else -bad: usage(*argv); + case K_ATALK: + af = AF_APPLETALK; + break; + case K_LINK: + af = AF_LINK; + break; + case K_FIB: + if (!--argc) + usage(*argv); + error = fiboptlist_csv(*++argv, &fibl_head); + if (error) + usage(*argv); + break; + default: + usage(*argv); + } + } + + if (TAILQ_EMPTY(&fibl_head)) { + error = fiboptlist_csv("default", &fibl_head); + if (error) + errx(EX_OSERR, "fiboptlist_csv failed."); + } + TAILQ_FOREACH(fl, &fibl_head, fl_next) + flushroutes_fib(fl->fl_num); +} + +static int +flushroutes_fib(int fib) +{ + size_t needed; + char *buf, *next, *lim; + int mib[6], rlen, seqno, count = 0; + struct rt_msghdr *rtm; + int error; + + error = 0; + error += set_sofib(fib); + error += set_procfib(fib); + if (error) { + warn("fib number %d is ignored", fib); + return (error); } + retry: mib[0] = CTL_NET; mib[1] = PF_ROUTE; @@ -303,13 +491,17 @@ retry: print_rtmsg(rtm, rlen); else { struct sockaddr *sa = (struct sockaddr *)(rtm + 1); - (void) printf("%-20.20s ", rtm->rtm_flags & RTF_HOST ? + + printf("%-20.20s ", rtm->rtm_flags & RTF_HOST ? routename(sa) : netname(sa)); sa = (struct sockaddr *)(SA_SIZE(sa) + (char *)sa); - (void) printf("%-20.20s ", routename(sa)); - (void) printf("done\n"); + printf("%-20.20s ", routename(sa)); + if (fib >= 0) + printf("-fib %-3d ", fib); + printf("done\n"); } } + return (error); } const char * @@ -549,18 +741,38 @@ set_metric(char *value, int key) *valp = atoi(value); } +#define F_ISHOST 0x01 +#define F_FORCENET 0x02 +#define F_FORCEHOST 0x04 +#define F_PROXY 0x08 +#define F_INTERFACE 0x10 + static void newroute(int argc, char **argv) { char *cmd; - const char *dest = "", *gateway = "", *errmsg; - int ishost = 0, proxy = 0, ret, attempts, oerrno, flags = RTF_STATIC; + const char *dest; + const char *gateway; + const char *errmsg; int key; - struct hostent *hp = 0; + int error; + int flags; + int nrflags; + int fibnum; + struct hostent *hp; + struct fibl *fl; if (uid != 0) { errx(EX_NOPERM, "must be root to alter routing table"); } + + dest = NULL; + gateway = NULL; + flags = RTF_STATIC; + nrflags = 0; + hp = NULL; + TAILQ_INIT(&fibl_head); + cmd = argv[0]; if (*cmd != 'g' && *cmd != 's') shutdown(s, SHUT_RD); /* Don't want to read back our messages */ @@ -592,7 +804,7 @@ newroute(int argc, char **argv) break; case K_IFACE: case K_INTERFACE: - iflag++; + nrflags |= F_INTERFACE; break; case K_NOSTATIC: flags &= ~RTF_STATIC; @@ -604,7 +816,7 @@ newroute(int argc, char **argv) lockrest = 1; break; case K_HOST: - forcehost++; + nrflags |= F_FORCEHOST; break; case K_REJECT: flags |= RTF_REJECT; @@ -619,7 +831,7 @@ newroute(int argc, char **argv) flags |= RTF_PROTO2; break; case K_PROXY: - proxy = 1; + nrflags |= F_PROXY; break; case K_XRESOLVE: flags |= RTF_XRESOLVE; @@ -633,6 +845,13 @@ newroute(int argc, char **argv) case K_NOSTICK: flags &= ~RTF_STICKY; break; + case K_FIB: + if (!--argc) + usage(NULL); + error = fiboptlist_csv(*++argv, &fibl_head); + if (error) + usage(NULL); + break; case K_IFA: if (!--argc) usage(NULL); @@ -656,7 +875,8 @@ newroute(int argc, char **argv) case K_DST: if (!--argc) usage(NULL); - ishost = getaddr(RTA_DST, *++argv, &hp); + if (getaddr(RTA_DST, *++argv, &hp)) + nrflags |= F_ISHOST; dest = *argv; break; case K_NETMASK: @@ -665,17 +885,17 @@ newroute(int argc, char **argv) (void) getaddr(RTA_NETMASK, *++argv, 0); /* FALLTHROUGH */ case K_NET: - forcenet++; + nrflags |= F_FORCENET; break; case K_PREFIXLEN: if (!--argc) usage(NULL); if (prefixlen(*++argv) == -1) { - forcenet = 0; - ishost = 1; + nrflags &= ~F_FORCENET; + nrflags |= F_ISHOST; } else { - forcenet = 1; - ishost = 0; + nrflags |= F_FORCENET; + nrflags &= ~F_ISHOST; } break; case K_MTU: @@ -697,18 +917,20 @@ newroute(int argc, char **argv) } else { if ((rtm_addrs & RTA_DST) == 0) { dest = *argv; - ishost = getaddr(RTA_DST, *argv, &hp); + if (getaddr(RTA_DST, *argv, &hp)) + nrflags |= F_ISHOST; } else if ((rtm_addrs & RTA_GATEWAY) == 0) { gateway = *argv; (void) getaddr(RTA_GATEWAY, *argv, &hp); } else { (void) getaddr(RTA_NETMASK, *argv, 0); - forcenet = 1; + nrflags |= F_FORCENET; } } } - if (forcehost) { - ishost = 1; + + if (nrflags & F_FORCEHOST) { + nrflags |= F_ISHOST; #ifdef INET6 if (af == AF_INET6) { rtm_addrs &= ~RTA_NETMASK; @@ -716,71 +938,125 @@ newroute(int argc, char **argv) } #endif } - if (forcenet) - ishost = 0; + if (nrflags & F_FORCENET) + nrflags &= ~F_ISHOST; flags |= RTF_UP; - if (ishost) + if (nrflags & F_ISHOST) flags |= RTF_HOST; - if (iflag == 0) + if (!(nrflags & F_INTERFACE)) flags |= RTF_GATEWAY; - if (proxy) { + if (nrflags & F_PROXY) { so_dst.sinarp.sin_other = SIN_PROXY; flags |= RTF_ANNOUNCE; } - for (attempts = 1; ; attempts++) { - errno = 0; - if ((ret = rtmsg(*cmd, flags)) == 0) - break; - if (errno != ENETUNREACH && errno != ESRCH) - break; - if (af == AF_INET && *gateway != '\0' && - hp != NULL && hp->h_addr_list[1] != NULL) { - hp->h_addr_list++; - memmove(&so_gate.sin.sin_addr, hp->h_addr_list[0], - MIN((size_t)hp->h_length, - sizeof(so_gate.sin.sin_addr))); - } else - break; + if (dest == NULL) + dest = ""; + if (gateway == NULL) + gateway = ""; + + if (TAILQ_EMPTY(&fibl_head)) { + error = fiboptlist_csv("default", &fibl_head); + if (error) + errx(EX_OSERR, "fiboptlist_csv failed."); + } + error = 0; + TAILQ_FOREACH(fl, &fibl_head, fl_next) { + fl->fl_error = newroute_fib(fl->fl_num, cmd, flags); + if (fl->fl_error) + fl->fl_errno = errno; + error += fl->fl_error; } if (*cmd == 'g' || *cmd == 's') - exit(ret != 0); + exit(error); + + error = 0; if (!qflag) { - oerrno = errno; - (void) printf("%s %s %s", cmd, ishost? "host" : "net", dest); - if (*gateway) { - (void) printf(": gateway %s", gateway); - if (attempts > 1 && ret == 0 && af == AF_INET) - (void) printf(" (%s)", - inet_ntoa(((struct sockaddr_in *)&route.rt_gateway)->sin_addr)); + fibnum = 0; + TAILQ_FOREACH(fl, &fibl_head, fl_next) { + if (fl->fl_error == 0) + fibnum++; + } + if (fibnum > 0) { + int firstfib = 1; + + printf("%s %s %s", cmd, + (nrflags & F_ISHOST) ? "host" : "net", dest); + if (*gateway) + printf(": gateway %s", gateway); + + if (numfibs > 1) { + TAILQ_FOREACH(fl, &fibl_head, fl_next) { + if (fl->fl_error == 0 + && fl->fl_num >= 0) { + if (firstfib) { + printf(" fib "); + firstfib = 0; + } + printf("%d", fl->fl_num); + if (fibnum-- > 1) + printf(","); + } + } + } + printf("\n"); } - if (ret == 0) { - (void) printf("\n"); - } else { - switch (oerrno) { - case ESRCH: - errmsg = "not in table"; - break; - case EBUSY: - errmsg = "entry in use"; - break; - case ENOBUFS: - errmsg = "not enough memory"; - break; - case EADDRINUSE: - /* handle recursion avoidance in rt_setgate() */ - errmsg = "gateway uses the same route"; - break; - case EEXIST: - errmsg = "route already in table"; - break; - default: - errmsg = strerror(oerrno); - break; + + fibnum = 0; + TAILQ_FOREACH(fl, &fibl_head, fl_next) { + if (fl->fl_error != 0) { + printf("%s %s %s", cmd, (nrflags & F_ISHOST) + ? "host" : "net", dest); + if (*gateway) + printf(": gateway %s", gateway); + + if (fl->fl_num >= 0) + printf(" fib %d", fl->fl_num); + + switch (fl->fl_errno) { + case ESRCH: + errmsg = "not in table"; + break; + case EBUSY: + errmsg = "entry in use"; + break; + case ENOBUFS: + errmsg = "not enough memory"; + break; + case EADDRINUSE: + /* + * handle recursion avoidance + * in rt_setgate() + */ + errmsg = "gateway uses the same route"; + break; + case EEXIST: + errmsg = "route already in table"; + break; + default: + errmsg = strerror(fl->fl_errno); + break; + } + printf(": %s\n", errmsg); + error = 1; } - (void) printf(": %s\n", errmsg); } } - exit(ret != 0); + exit(error); +} + +static int +newroute_fib(int fib, char *cmd, int flags) +{ + int error; + + error = set_sofib(fib); + if (error) { + warn("fib number %d is ignored", fib); + return (error); + } + + error = rtmsg(*cmd, flags, fib); + return (error); } static void @@ -1131,11 +1407,35 @@ retry2: } static void -monitor(void) +monitor(int argc, char *argv[]) { int n; + int fib; + int error; char msg[2048]; + fib = defaultfib; + while (argc > 1) { + argc--; + argv++; + if (**argv != '-') + usage(*argv); + switch (keyword(*argv + 1)) { + case K_FIB: + if (!--argc) + usage(*argv); + fib = strtol(*++argv, NULL, 0); + if (fib == 0 && errno == EINVAL) + usage(*argv); + break; + default: + usage(*argv); + } + } + error = set_sofib(fib); + if (error) + errx(EX_USAGE, "invalid fib number: %d", fib); + verbose = 1; if (debugonly) { interfaces(); @@ -1156,7 +1456,7 @@ struct { } m_rtmsg; static int -rtmsg(int cmd, int flags) +rtmsg(int cmd, int flags, int fib) { static int seq; int rlen; @@ -1219,7 +1519,7 @@ rtmsg(int cmd, int flags) if (l < 0) warn("read from routing socket"); else - print_getmsg(&rtm, l); + print_getmsg(&rtm, l, fib); } #undef rtm return (0); @@ -1396,7 +1696,7 @@ badlen: } static void -print_getmsg(struct rt_msghdr *rtm, int msglen) +print_getmsg(struct rt_msghdr *rtm, int msglen, int fib) { struct sockaddr *dst = NULL, *gate = NULL, *mask = NULL; struct sockaddr_dl *ifp = NULL; @@ -1456,6 +1756,8 @@ print_getmsg(struct rt_msghdr *rtm, int } if (gate && rtm->rtm_flags & RTF_GATEWAY) (void)printf(" gateway: %s\n", routename(gate)); + if (fib >= 0) + (void)printf(" fib: %u\n", (unsigned int)fib); if (ifp) (void)printf(" interface: %.*s\n", ifp->sdl_nlen, ifp->sdl_data); From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 19:11:21 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B2BF010656E3; Wed, 18 Apr 2012 19:11:21 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9CDA08FC12; Wed, 18 Apr 2012 19:11: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 q3IJBLWS046717; Wed, 18 Apr 2012 19:11:21 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IJBLCU046712; Wed, 18 Apr 2012 19:11:21 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204181911.q3IJBLCU046712@svn.freebsd.org> From: Navdeep Parhar Date: Wed, 18 Apr 2012 19:11: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: r234437 - in user/np/toe_iwarp/sys: contrib/rdma/krping modules/rdma/krping 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: Wed, 18 Apr 2012 19:11:21 -0000 Author: np Date: Wed Apr 18 19:11:21 2012 New Revision: 234437 URL: http://svn.freebsd.org/changeset/base/234437 Log: - Switch krping to build against the new OFED code. - Add a "memlimit" option to krping that limits the memory region from where its buffers are allocated from. Obtained from: Chelsio Modified: user/np/toe_iwarp/sys/contrib/rdma/krping/krping.c user/np/toe_iwarp/sys/contrib/rdma/krping/krping.h user/np/toe_iwarp/sys/contrib/rdma/krping/krping_dev.c user/np/toe_iwarp/sys/modules/rdma/krping/Makefile Modified: user/np/toe_iwarp/sys/contrib/rdma/krping/krping.c ============================================================================== --- user/np/toe_iwarp/sys/contrib/rdma/krping/krping.c Wed Apr 18 19:11:03 2012 (r234436) +++ user/np/toe_iwarp/sys/contrib/rdma/krping/krping.c Wed Apr 18 19:11:21 2012 (r234437) @@ -41,7 +41,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include #include @@ -53,11 +52,13 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include -#include +#include +#include #include "getopt.h" #include "krping.h" @@ -83,6 +84,7 @@ static const struct krping_option krping {"bw", OPT_NOPARAM, 'B'}, {"tx-depth", OPT_INT, 't'}, {"poll", OPT_NOPARAM, 'P'}, + {"memlimit", OPT_INT, 'm'}, {NULL, 0, 0} }; @@ -254,10 +256,14 @@ static void krping_cq_event_handler(stru ib_req_notify_cq(cb->cq, IB_CQ_NEXT_COMP); while ((ret = ib_poll_cq(cb->cq, 1, &wc)) == 1) { if (wc.status) { - if (wc.status != IB_WC_WR_FLUSH_ERR) - log(LOG_ERR, "cq completion failed status %d\n", + if (wc.status == IB_WC_WR_FLUSH_ERR) { + DEBUG_LOG("cq flushed\n"); + continue; + } else { + log(LOG_CRIT, "cq completion failed status %d\n", wc.status); - goto error; + goto error; + } } switch (wc.opcode) { @@ -432,8 +438,17 @@ static int krping_setup_buffers(struct k } } - cb->rdma_buf = contigmalloc(cb->size, M_DEVBUF, M_WAITOK, 0, -1UL, - PAGE_SIZE, 0); + /* RNIC adapters have a limit upto which it can register physical memory + * If DMA-MR memory mode is set then normally driver registers maximum + * supported memory. After that if contigmalloc allocates memory beyond the + * specified RNIC limit then Krping may not work. + */ + if (cb->use_dmamr && cb->memlimit) + cb->rdma_buf = contigmalloc(cb->size, M_DEVBUF, M_WAITOK, 0, cb->memlimit, + PAGE_SIZE, 0); + else + cb->rdma_buf = contigmalloc(cb->size, M_DEVBUF, M_WAITOK, 0, -1UL, + PAGE_SIZE, 0); if (!cb->rdma_buf) { log(LOG_ERR, "rdma_buf malloc failed\n"); @@ -458,8 +473,12 @@ static int krping_setup_buffers(struct k } if (!cb->server || cb->wlat || cb->rlat || cb->bw) { - cb->start_buf = contigmalloc(cb->size, M_DEVBUF, M_WAITOK, - 0, -1UL, PAGE_SIZE, 0); + if (cb->use_dmamr && cb->memlimit) + cb->start_buf = contigmalloc(cb->size, M_DEVBUF, M_WAITOK, + 0, cb->memlimit, PAGE_SIZE, 0); + else + cb->start_buf = contigmalloc(cb->size, M_DEVBUF, M_WAITOK, + 0, -1UL, PAGE_SIZE, 0); if (!cb->start_buf) { log(LOG_ERR, "start_buf malloc failed\n"); ret = ENOMEM; @@ -1636,6 +1655,8 @@ int krping_doit(char *cmd) cb->state = IDLE; cb->size = 64; cb->txdepth = RPING_SQ_DEPTH; + cb->use_dmamr = 1; + cb->memlimit = 0; mtx_init(&cb->lock, "krping mtx", NULL, MTX_DUPOK|MTX_DEF); while ((op = krping_getopt("krping", &cmd, krping_opts, NULL, &optarg, @@ -1713,6 +1734,15 @@ int krping_doit(char *cmd) case 'd': debug++; break; + case 'm': + cb->memlimit = optint; + if (cb->memlimit < 1) { + log(LOG_ERR, "Invalid memory limit %lu\n" + ,cb->memlimit); + ret = EINVAL; + } else + DEBUG_LOG(PFX "memory limit %d\n", (int)optint); + break; default: log(LOG_ERR, "unknown opt %s\n", optarg); ret = EINVAL; Modified: user/np/toe_iwarp/sys/contrib/rdma/krping/krping.h ============================================================================== --- user/np/toe_iwarp/sys/contrib/rdma/krping/krping.h Wed Apr 18 19:11:03 2012 (r234436) +++ user/np/toe_iwarp/sys/contrib/rdma/krping/krping.h Wed Apr 18 19:11:21 2012 (r234437) @@ -1,7 +1,7 @@ /* * $FreeBSD$ */ -#include +#include #include /* @@ -92,6 +92,8 @@ struct krping_cb { int count; /* ping count */ int size; /* ping data size */ int validate; /* validate ping data */ + uint64_t memlimit; /* limit of the physical memory that + can be registered with dma_mr mode */ /* CM stuff */ struct rdma_cm_id *cm_id; /* connection on client side,*/ Modified: user/np/toe_iwarp/sys/contrib/rdma/krping/krping_dev.c ============================================================================== --- user/np/toe_iwarp/sys/contrib/rdma/krping/krping_dev.c Wed Apr 18 19:11:03 2012 (r234436) +++ user/np/toe_iwarp/sys/contrib/rdma/krping/krping_dev.c Wed Apr 18 19:11:21 2012 (r234437) @@ -14,7 +14,6 @@ __FBSDID("$FreeBSD$"); #include -#include #include /* uprintf */ #include #include /* defines used in kernel.h */ @@ -51,6 +50,9 @@ typedef struct s_krping { /* vars */ static struct cdev *krping_dev; +#undef MODULE_VERSION +#include + static int krping_loader(struct module *m, int what, void *arg) { @@ -175,6 +177,4 @@ krping_write(struct cdev *dev, struct ui return(err); } -MODULE_DEPEND(krping, rdma_core, 1, 1, 1); -MODULE_DEPEND(krping, rdma_cma, 1, 1, 1); DEV_MODULE(krping,krping_loader,NULL); Modified: user/np/toe_iwarp/sys/modules/rdma/krping/Makefile ============================================================================== --- user/np/toe_iwarp/sys/modules/rdma/krping/Makefile Wed Apr 18 19:11:03 2012 (r234436) +++ user/np/toe_iwarp/sys/modules/rdma/krping/Makefile Wed Apr 18 19:11:21 2012 (r234437) @@ -6,5 +6,7 @@ RDMA= ${.CURDIR}/../../../contrib/rdma/k KMOD= krping SRCS= krping.c krping_dev.c getopt.c SRCS+= bus_if.h device_if.h opt_sched.h pci_if.h pcib_if.h +SRCS+= vnode_if.h +CFLAGS+= -I${.CURDIR}/../../../ofed/include .include From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 19:25:38 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 759AC1065672; Wed, 18 Apr 2012 19:25:38 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6202B8FC1F; Wed, 18 Apr 2012 19:25:38 +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 q3IJPcZw047245; Wed, 18 Apr 2012 19:25:38 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IJPc46047243; Wed, 18 Apr 2012 19:25:38 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201204181925.q3IJPc46047243@svn.freebsd.org> From: Hiroki Sato Date: Wed, 18 Apr 2012 19:25:38 +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: r234440 - user/hrs/ipv6/sbin/route 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: Wed, 18 Apr 2012 19:25:38 -0000 Author: hrs Date: Wed Apr 18 19:25:37 2012 New Revision: 234440 URL: http://svn.freebsd.org/changeset/base/234440 Log: Fix typos. Spotted by: bjk Modified: user/hrs/ipv6/sbin/route/route.8 Modified: user/hrs/ipv6/sbin/route/route.8 ============================================================================== --- user/hrs/ipv6/sbin/route/route.8 Wed Apr 18 19:18:10 2012 (r234439) +++ user/hrs/ipv6/sbin/route/route.8 Wed Apr 18 19:25:37 2012 (r234440) @@ -340,9 +340,9 @@ the default FIB shown in the .Xr sysctl 8 MIB will be used. .Pp -Thw +The .Ar number -allows multiple FIBs by a comma-separeted list and/or range +allows multiple FIBs by a comma-separated list and/or range specification. The .Qq Fl fib Li 2,4,6 From owner-svn-src-user@FreeBSD.ORG Wed Apr 18 19:31:53 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F3B901065670; Wed, 18 Apr 2012 19:31:52 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DEE5C8FC1A; Wed, 18 Apr 2012 19:31: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 q3IJVqYJ047520; Wed, 18 Apr 2012 19:31:52 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3IJVqZq047516; Wed, 18 Apr 2012 19:31:52 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204181931.q3IJVqZq047516@svn.freebsd.org> From: Navdeep Parhar Date: Wed, 18 Apr 2012 19:31: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: r234442 - in user/np/toe_iwarp/sys/ofed: drivers/infiniband/core include/rdma 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: Wed, 18 Apr 2012 19:31:53 -0000 Author: np Date: Wed Apr 18 19:31:52 2012 New Revision: 234442 URL: http://svn.freebsd.org/changeset/base/234442 Log: Add a socket (for additional context) to a couple of iw_cm data structures. Obtained from: Chelsio Modified: user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/cma.c user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/iwcm.c user/np/toe_iwarp/sys/ofed/include/rdma/iw_cm.h Modified: user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/cma.c ============================================================================== --- user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/cma.c Wed Apr 18 19:30:22 2012 (r234441) +++ user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/cma.c Wed Apr 18 19:31:52 2012 (r234442) @@ -1478,6 +1478,7 @@ static int cma_iw_listen(struct rdma_id_ struct sockaddr_in *sin; id_priv->cm_id.iw = iw_create_cm_id(id_priv->id.device, + id_priv->sock, iw_conn_req_handler, id_priv); if (IS_ERR(id_priv->cm_id.iw)) @@ -2055,7 +2056,16 @@ static int cma_bind_addr(struct rdma_cm_ ((struct sockaddr_in6 *) dst_addr)->sin6_scope_id; } } - return rdma_bind_addr(id, src_addr); + if (!cma_any_addr(src_addr)) + return rdma_bind_addr(id, src_addr); + else { + struct sockaddr_in addr_in; + + memset(&addr_in, 0, sizeof addr_in); + addr_in.sin_family = dst_addr->sa_family; + addr_in.sin_len = sizeof addr_in; + return rdma_bind_addr(id, (struct sockaddr *) &addr_in); + } } int rdma_resolve_addr(struct rdma_cm_id *id, struct sockaddr *src_addr, @@ -2604,7 +2614,8 @@ static int cma_connect_iw(struct rdma_id int ret; struct iw_cm_conn_param iw_param; - cm_id = iw_create_cm_id(id_priv->id.device, cma_iw_handler, id_priv); + cm_id = iw_create_cm_id(id_priv->id.device, id_priv->sock, + cma_iw_handler, id_priv); if (IS_ERR(cm_id)) { ret = PTR_ERR(cm_id); goto out; Modified: user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/iwcm.c ============================================================================== --- user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/iwcm.c Wed Apr 18 19:30:22 2012 (r234441) +++ user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/iwcm.c Wed Apr 18 19:31:52 2012 (r234442) @@ -189,6 +189,7 @@ static void rem_ref(struct iw_cm_id *cm_ static int cm_event_handler(struct iw_cm_id *cm_id, struct iw_cm_event *event); struct iw_cm_id *iw_create_cm_id(struct ib_device *device, + struct socket *so, iw_cm_handler cm_handler, void *context) { @@ -205,6 +206,7 @@ struct iw_cm_id *iw_create_cm_id(struct cm_id_priv->id.event_handler = cm_event_handler; cm_id_priv->id.add_ref = add_ref; cm_id_priv->id.rem_ref = rem_ref; + cm_id_priv->id.so = so; spin_lock_init(&cm_id_priv->lock); atomic_set(&cm_id_priv->refcount, 1); init_waitqueue_head(&cm_id_priv->connect_wait); @@ -629,6 +631,7 @@ static void cm_conn_req_handler(struct i spin_unlock_irqrestore(&listen_id_priv->lock, flags); cm_id = iw_create_cm_id(listen_id_priv->id.device, + iw_event->so, listen_id_priv->id.cm_handler, listen_id_priv->id.context); /* If the cm_id could not be created, ignore the request */ Modified: user/np/toe_iwarp/sys/ofed/include/rdma/iw_cm.h ============================================================================== --- user/np/toe_iwarp/sys/ofed/include/rdma/iw_cm.h Wed Apr 18 19:30:22 2012 (r234441) +++ user/np/toe_iwarp/sys/ofed/include/rdma/iw_cm.h Wed Apr 18 19:31:52 2012 (r234442) @@ -63,6 +63,7 @@ struct iw_cm_event { void *private_data; u8 private_data_len; void *provider_data; + struct socket *so; }; /** @@ -98,6 +99,7 @@ struct iw_cm_id { /* Used by provider to add and remove refs on IW cm_id */ void (*add_ref)(struct iw_cm_id *); void (*rem_ref)(struct iw_cm_id *); + struct socket *so; }; struct iw_cm_conn_param { @@ -139,7 +141,7 @@ struct iw_cm_verbs { * returned IW CM identifier. * @context: User specified context associated with the id. */ -struct iw_cm_id *iw_create_cm_id(struct ib_device *device, +struct iw_cm_id *iw_create_cm_id(struct ib_device *device, struct socket *so, iw_cm_handler cm_handler, void *context); /** From owner-svn-src-user@FreeBSD.ORG Fri Apr 20 00:34:19 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1AA79106566B; Fri, 20 Apr 2012 00:34:19 +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 F15B88FC14; Fri, 20 Apr 2012 00:34:18 +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 q3K0YIK2014429; Fri, 20 Apr 2012 00:34:18 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3K0YIwM014412; Fri, 20 Apr 2012 00:34:18 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201204200034.q3K0YIwM014412@svn.freebsd.org> From: Attilio Rao Date: Fri, 20 Apr 2012 00:34:18 +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: r234475 - in user/attilio/vmcontention: . cddl/contrib/opensolaris/cmd/zpool cddl/contrib/opensolaris/lib/libdtrace/common contrib/bind9 contrib/file contrib/file/Magdir contrib/file/te... 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, 20 Apr 2012 00:34:19 -0000 Author: attilio Date: Fri Apr 20 00:34:15 2012 New Revision: 234475 URL: http://svn.freebsd.org/changeset/base/234475 Log: MFC Added: user/attilio/vmcontention/contrib/file/Magdir/assembler - copied unchanged from r234474, head/contrib/file/Magdir/assembler user/attilio/vmcontention/contrib/file/Magdir/blcr - copied unchanged from r234474, head/contrib/file/Magdir/blcr user/attilio/vmcontention/contrib/file/Magdir/bsi - copied unchanged from r234474, head/contrib/file/Magdir/bsi user/attilio/vmcontention/contrib/file/Magdir/cups - copied unchanged from r234474, head/contrib/file/Magdir/cups user/attilio/vmcontention/contrib/file/Magdir/ebml - copied unchanged from r234474, head/contrib/file/Magdir/ebml user/attilio/vmcontention/contrib/file/Magdir/fusecompress - copied unchanged from r234474, head/contrib/file/Magdir/fusecompress user/attilio/vmcontention/contrib/file/Magdir/geo - copied unchanged from r234474, head/contrib/file/Magdir/geo user/attilio/vmcontention/contrib/file/Magdir/guile - copied unchanged from r234474, head/contrib/file/Magdir/guile user/attilio/vmcontention/contrib/file/Magdir/isz - copied unchanged from r234474, head/contrib/file/Magdir/isz user/attilio/vmcontention/contrib/file/Magdir/m4 - copied unchanged from r234474, head/contrib/file/Magdir/m4 user/attilio/vmcontention/contrib/file/Magdir/make - copied unchanged from r234474, head/contrib/file/Magdir/make user/attilio/vmcontention/contrib/file/Magdir/marc21 - copied unchanged from r234474, head/contrib/file/Magdir/marc21 user/attilio/vmcontention/contrib/file/Magdir/metastore - copied unchanged from r234474, head/contrib/file/Magdir/metastore user/attilio/vmcontention/contrib/file/Magdir/msooxml - copied unchanged from r234474, head/contrib/file/Magdir/msooxml user/attilio/vmcontention/contrib/file/Magdir/music - copied unchanged from r234474, head/contrib/file/Magdir/music user/attilio/vmcontention/contrib/file/Magdir/oasis - copied unchanged from r234474, head/contrib/file/Magdir/oasis user/attilio/vmcontention/contrib/file/Magdir/parrot - copied unchanged from r234474, head/contrib/file/Magdir/parrot user/attilio/vmcontention/contrib/file/Magdir/pascal - copied unchanged from r234474, head/contrib/file/Magdir/pascal user/attilio/vmcontention/contrib/file/Magdir/rinex - copied unchanged from r234474, head/contrib/file/Magdir/rinex user/attilio/vmcontention/contrib/file/Magdir/selinux - copied unchanged from r234474, head/contrib/file/Magdir/selinux user/attilio/vmcontention/contrib/file/Magdir/sisu - copied unchanged from r234474, head/contrib/file/Magdir/sisu user/attilio/vmcontention/contrib/file/Magdir/smile - copied unchanged from r234474, head/contrib/file/Magdir/smile user/attilio/vmcontention/contrib/file/Magdir/ssh - copied unchanged from r234474, head/contrib/file/Magdir/ssh user/attilio/vmcontention/contrib/file/Magdir/ssl - copied unchanged from r234474, head/contrib/file/Magdir/ssl user/attilio/vmcontention/contrib/file/Magdir/tcl - copied unchanged from r234474, head/contrib/file/Magdir/tcl user/attilio/vmcontention/contrib/file/Magdir/virtual - copied unchanged from r234474, head/contrib/file/Magdir/virtual user/attilio/vmcontention/contrib/file/Magdir/wsdl - copied unchanged from r234474, head/contrib/file/Magdir/wsdl user/attilio/vmcontention/contrib/file/Magdir/zfs - copied unchanged from r234474, head/contrib/file/Magdir/zfs user/attilio/vmcontention/contrib/file/getline.c - copied unchanged from r234474, head/contrib/file/getline.c user/attilio/vmcontention/contrib/jemalloc/ - copied from r234474, head/contrib/jemalloc/ user/attilio/vmcontention/contrib/llvm/include/llvm-c/TargetMachine.h - copied unchanged from r234474, head/contrib/llvm/include/llvm-c/TargetMachine.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/Transforms/Vectorize.h - copied unchanged from r234474, head/contrib/llvm/include/llvm-c/Transforms/Vectorize.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/Hashing.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/ADT/Hashing.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/SparseSet.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/ADT/SparseSet.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/VariadicFunction.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/ADT/VariadicFunction.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/edit_distance.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/ADT/edit_distance.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h user/attilio/vmcontention/contrib/llvm/include/llvm/ExecutionEngine/IntelJITEventsWrapper.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/ExecutionEngine/IntelJITEventsWrapper.h user/attilio/vmcontention/contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h user/attilio/vmcontention/contrib/llvm/include/llvm/IntrinsicsHexagon.td - copied unchanged from r234474, head/contrib/llvm/include/llvm/IntrinsicsHexagon.td user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h user/attilio/vmcontention/contrib/llvm/include/llvm/Object/ELF.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Object/ELF.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/DataStream.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Support/DataStream.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/JSONParser.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Support/JSONParser.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/LockFileManager.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Support/LockFileManager.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/SaveAndRestore.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Support/SaveAndRestore.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/YAMLParser.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Support/YAMLParser.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Vectorize.h - copied unchanged from r234474, head/contrib/llvm/include/llvm/Transforms/Vectorize.h user/attilio/vmcontention/contrib/llvm/lib/Analysis/CodeMetrics.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Analysis/CodeMetrics.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/JITCodeEmitter.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/JITCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineCodeEmitter.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/MachineCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineScheduler.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/MachineScheduler.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegAllocBase.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/RegAllocBase.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp - copied unchanged from r234474, head/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h - copied unchanged from r234474, head/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ - copied from r234474, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.cpp - copied unchanged from r234474, head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/OProfileJIT/ - copied from r234474, head/contrib/llvm/lib/ExecutionEngine/OProfileJIT/ user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp - copied unchanged from r234474, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h - copied unchanged from r234474, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h - copied unchanged from r234474, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h user/attilio/vmcontention/contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp - copied unchanged from r234474, head/contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/DataStream.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Support/DataStream.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Hashing.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Support/Hashing.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/IntrusiveRefCntPtr.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Support/IntrusiveRefCntPtr.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/JSONParser.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Support/JSONParser.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/LockFileManager.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Support/LockFileManager.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/StreamableMemoryObject.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Support/StreamableMemoryObject.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/YAMLParser.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Support/YAMLParser.cpp user/attilio/vmcontention/contrib/llvm/lib/TableGen/TableGenAction.cpp - copied unchanged from r234474, head/contrib/llvm/lib/TableGen/TableGenAction.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Hexagon/ - copied from r234474, head/contrib/llvm/lib/Target/Hexagon/ user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeELFObjectWriter.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeELFObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/AsmParser/ - copied from r234474, head/contrib/llvm/lib/Target/Mips/AsmParser/ user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h - copied unchanged from r234474, head/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsCondMov.td - copied unchanged from r234474, head/contrib/llvm/lib/Target/Mips/MipsCondMov.td user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td - copied unchanged from r234474, head/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td - copied unchanged from r234474, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/TargetJITInfo.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/TargetJITInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/TargetMachineC.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/TargetMachineC.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrSVM.td - copied unchanged from r234474, head/contrib/llvm/lib/Target/X86/X86InstrSVM.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrXOP.td - copied unchanged from r234474, head/contrib/llvm/lib/Target/X86/X86InstrXOP.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86Schedule.td - copied unchanged from r234474, head/contrib/llvm/lib/Target/X86/X86Schedule.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td - copied unchanged from r234474, head/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.h - copied unchanged from r234474, head/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.h user/attilio/vmcontention/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp - copied unchanged from r234474, head/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Vectorize/ - copied from r234474, head/contrib/llvm/lib/Transforms/Vectorize/ user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/LambdaMangleContext.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/AST/LambdaMangleContext.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/Module.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Basic/Module.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Edit/ - copied from r234474, head/contrib/llvm/tools/clang/include/clang/Edit/ user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/ChainedIncludesSource.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Frontend/ChainedIncludesSource.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Index/GlobalCallGraph.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Index/GlobalCallGraph.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CommonBugCategories.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CommonBugCategories.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Tooling/ - copied from r234474, head/contrib/llvm/tools/clang/include/clang/Tooling/ user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/Module.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Basic/Module.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Edit/ - copied from r234474, head/contrib/llvm/tools/clang/lib/Edit/ user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/cpuid.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Headers/cpuid.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/module.map - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Headers/module.map user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/unwind.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Headers/unwind.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Index/GlobalCallGraph.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Index/GlobalCallGraph.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/PPCallbacks.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Lex/PPCallbacks.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaConsumer.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Sema/SemaConsumer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CommonBugCategories.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CommonBugCategories.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp - copied unchanged from r234474, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Tooling/ - copied from r234474, head/contrib/llvm/tools/clang/lib/Tooling/ user/attilio/vmcontention/contrib/llvm/tools/llvm-readobj/ - copied from r234474, head/contrib/llvm/tools/llvm-readobj/ user/attilio/vmcontention/contrib/llvm/tools/llvm-stress/ - copied from r234474, head/contrib/llvm/tools/llvm-stress/ user/attilio/vmcontention/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp - copied unchanged from r234474, head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.h - copied unchanged from r234474, head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h - copied unchanged from r234474, head/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/X86ModRMFilters.cpp - copied unchanged from r234474, head/contrib/llvm/utils/TableGen/X86ModRMFilters.cpp user/attilio/vmcontention/lib/clang/include/MipsGenMCCodeEmitter.inc - copied unchanged from r234474, head/lib/clang/include/MipsGenMCCodeEmitter.inc user/attilio/vmcontention/lib/clang/include/clang/Basic/DiagnosticSerializationKinds.inc - copied unchanged from r234474, head/lib/clang/include/clang/Basic/DiagnosticSerializationKinds.inc user/attilio/vmcontention/lib/clang/include/clang/Config/ - copied from r234474, head/lib/clang/include/clang/Config/ user/attilio/vmcontention/lib/clang/include/clang/Sema/ - copied from r234474, head/lib/clang/include/clang/Sema/ user/attilio/vmcontention/lib/clang/libclangedit/ - copied from r234474, head/lib/clang/libclangedit/ user/attilio/vmcontention/lib/clang/libllvmmipsasmparser/ - copied from r234474, head/lib/clang/libllvmmipsasmparser/ user/attilio/vmcontention/lib/clang/libllvmvectorize/ - copied from r234474, head/lib/clang/libllvmvectorize/ user/attilio/vmcontention/lib/libc/arm/gen/__aeabi_read_tp.S - copied unchanged from r234474, head/lib/libc/arm/gen/__aeabi_read_tp.S user/attilio/vmcontention/lib/libc/stdlib/jemalloc/ - copied from r234474, head/lib/libc/stdlib/jemalloc/ user/attilio/vmcontention/lib/libc/stdlib/reallocf.3 - copied unchanged from r234474, head/lib/libc/stdlib/reallocf.3 user/attilio/vmcontention/sys/dev/iicbus/pcf8563.c - copied unchanged from r234474, head/sys/dev/iicbus/pcf8563.c user/attilio/vmcontention/sys/dev/iicbus/pcf8563reg.h - copied unchanged from r234474, head/sys/dev/iicbus/pcf8563reg.h user/attilio/vmcontention/sys/dev/netmap/netmap_mem1.c - copied unchanged from r234474, head/sys/dev/netmap/netmap_mem1.c user/attilio/vmcontention/sys/dev/netmap/netmap_mem2.c - copied unchanged from r234474, head/sys/dev/netmap/netmap_mem2.c user/attilio/vmcontention/sys/geom/raid/tr_raid5.c - copied unchanged from r234474, head/sys/geom/raid/tr_raid5.c user/attilio/vmcontention/sys/mips/conf/AP94 - copied unchanged from r234474, head/sys/mips/conf/AP94 user/attilio/vmcontention/sys/mips/conf/AP94.hints - copied unchanged from r234474, head/sys/mips/conf/AP94.hints user/attilio/vmcontention/sys/mips/conf/AP96 - copied unchanged from r234474, head/sys/mips/conf/AP96 user/attilio/vmcontention/sys/mips/conf/AP96.hints - copied unchanged from r234474, head/sys/mips/conf/AP96.hints user/attilio/vmcontention/usr.sbin/pkg/ - copied from r234474, head/usr.sbin/pkg/ Deleted: user/attilio/vmcontention/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.html user/attilio/vmcontention/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.pdf user/attilio/vmcontention/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.txt user/attilio/vmcontention/contrib/bind9/release-notes.css user/attilio/vmcontention/contrib/file/Magdir/alpha user/attilio/vmcontention/contrib/file/Magdir/psion user/attilio/vmcontention/contrib/file/patchlevel.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/VectorExtras.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/BinaryObject.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/ObjectCodeEmitter.h user/attilio/vmcontention/contrib/llvm/include/llvm/DebugInfoProbe.h user/attilio/vmcontention/contrib/llvm/include/llvm/IntrinsicsAlpha.td user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/BasicInliner.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ELF.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ELFCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ELFCodeEmitter.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ELFWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ELFWriter.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LiveRangeEdit.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ObjectCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegAllocLinearScan.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ScheduleDAGEmit.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/Splitter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/Splitter.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/VirtRegRewriter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/VirtRegRewriter.h user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/JIT/Intercept.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.h user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/MCJIT/Intercept.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/ELFObjectWriter.h user/attilio/vmcontention/contrib/llvm/lib/MC/MCELFStreamer.h user/attilio/vmcontention/contrib/llvm/lib/MC/MCLoggingStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMGlobalMerge.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Alpha/ user/attilio/vmcontention/contrib/llvm/lib/Target/Blackfin/ user/attilio/vmcontention/contrib/llvm/lib/Target/CBackend/ user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.h user/attilio/vmcontention/contrib/llvm/lib/Target/SystemZ/ user/attilio/vmcontention/contrib/llvm/lib/Target/TargetFrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/BasicInliner.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/DebugInfoProbe.cpp user/attilio/vmcontention/contrib/llvm/tools/bugpoint/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/bugpoint/Makefile user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/UsuallyTinyPtrVector.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/Support/SaveAndRestore.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/HostInfo.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Index/CallGraph.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/MultiInitializer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Serialization/ChainedIncludesSource.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngineBuilders.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/AnalysisContext.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGException.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGTemporaries.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/HostInfo.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Index/CallGraph.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/MultiInitializer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ChainedIncludesSource.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AggExprVisitor.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/utils/TableGen/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/clang/utils/TableGen/Makefile user/attilio/vmcontention/contrib/llvm/tools/llc/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llc/Makefile user/attilio/vmcontention/contrib/llvm/tools/lli/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/lli/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-ar/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-ar/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-as/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-as/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-bcanalyzer/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-bcanalyzer/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-diff/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-diff/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-dis/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-dis/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-extract/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-extract/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-ld/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-ld/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-link/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-link/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-mc/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-mc/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-nm/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-nm/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-objdump/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-objdump/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-prof/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-prof/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-ranlib/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-ranlib/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-rtdyld/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-rtdyld/Makefile user/attilio/vmcontention/contrib/llvm/tools/llvm-stub/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/llvm-stub/Makefile user/attilio/vmcontention/contrib/llvm/tools/macho-dump/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/macho-dump/Makefile user/attilio/vmcontention/contrib/llvm/tools/opt/CMakeLists.txt user/attilio/vmcontention/contrib/llvm/tools/opt/Makefile user/attilio/vmcontention/contrib/llvm/utils/TableGen/ARMDecoderEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/ARMDecoderEmitter.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/InstrEnumEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/InstrEnumEmitter.h user/attilio/vmcontention/lib/libc/arm/gen/__aeabi_read_tp.c user/attilio/vmcontention/lib/libc/stdlib/aligned_alloc.3 user/attilio/vmcontention/lib/libc/stdlib/malloc.3 user/attilio/vmcontention/lib/libc/stdlib/malloc.c user/attilio/vmcontention/lib/libc/stdlib/ql.h user/attilio/vmcontention/lib/libc/stdlib/qr.h user/attilio/vmcontention/lib/libc/stdlib/rb.h Modified: user/attilio/vmcontention/ObsoleteFiles.inc user/attilio/vmcontention/UPDATING user/attilio/vmcontention/cddl/contrib/opensolaris/cmd/zpool/zpool.8 user/attilio/vmcontention/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.c user/attilio/vmcontention/contrib/file/ChangeLog user/attilio/vmcontention/contrib/file/Header user/attilio/vmcontention/contrib/file/INSTALL user/attilio/vmcontention/contrib/file/Magdir/acorn user/attilio/vmcontention/contrib/file/Magdir/adi user/attilio/vmcontention/contrib/file/Magdir/adventure user/attilio/vmcontention/contrib/file/Magdir/allegro user/attilio/vmcontention/contrib/file/Magdir/alliant user/attilio/vmcontention/contrib/file/Magdir/amanda user/attilio/vmcontention/contrib/file/Magdir/amigaos user/attilio/vmcontention/contrib/file/Magdir/animation user/attilio/vmcontention/contrib/file/Magdir/apl user/attilio/vmcontention/contrib/file/Magdir/apple user/attilio/vmcontention/contrib/file/Magdir/applix user/attilio/vmcontention/contrib/file/Magdir/archive user/attilio/vmcontention/contrib/file/Magdir/asterix user/attilio/vmcontention/contrib/file/Magdir/att3b user/attilio/vmcontention/contrib/file/Magdir/audio user/attilio/vmcontention/contrib/file/Magdir/basis user/attilio/vmcontention/contrib/file/Magdir/bflt user/attilio/vmcontention/contrib/file/Magdir/blender user/attilio/vmcontention/contrib/file/Magdir/blit user/attilio/vmcontention/contrib/file/Magdir/bout user/attilio/vmcontention/contrib/file/Magdir/bsdi user/attilio/vmcontention/contrib/file/Magdir/btsnoop user/attilio/vmcontention/contrib/file/Magdir/c-lang user/attilio/vmcontention/contrib/file/Magdir/c64 user/attilio/vmcontention/contrib/file/Magdir/cad user/attilio/vmcontention/contrib/file/Magdir/cafebabe user/attilio/vmcontention/contrib/file/Magdir/cddb user/attilio/vmcontention/contrib/file/Magdir/chord user/attilio/vmcontention/contrib/file/Magdir/cisco user/attilio/vmcontention/contrib/file/Magdir/citrus user/attilio/vmcontention/contrib/file/Magdir/clarion user/attilio/vmcontention/contrib/file/Magdir/claris user/attilio/vmcontention/contrib/file/Magdir/clipper user/attilio/vmcontention/contrib/file/Magdir/commands user/attilio/vmcontention/contrib/file/Magdir/communications user/attilio/vmcontention/contrib/file/Magdir/compress user/attilio/vmcontention/contrib/file/Magdir/console user/attilio/vmcontention/contrib/file/Magdir/convex user/attilio/vmcontention/contrib/file/Magdir/cracklib user/attilio/vmcontention/contrib/file/Magdir/ctags user/attilio/vmcontention/contrib/file/Magdir/dact user/attilio/vmcontention/contrib/file/Magdir/database user/attilio/vmcontention/contrib/file/Magdir/diamond user/attilio/vmcontention/contrib/file/Magdir/diff user/attilio/vmcontention/contrib/file/Magdir/digital user/attilio/vmcontention/contrib/file/Magdir/dolby user/attilio/vmcontention/contrib/file/Magdir/dump user/attilio/vmcontention/contrib/file/Magdir/dyadic user/attilio/vmcontention/contrib/file/Magdir/editors user/attilio/vmcontention/contrib/file/Magdir/efi user/attilio/vmcontention/contrib/file/Magdir/elf user/attilio/vmcontention/contrib/file/Magdir/encore user/attilio/vmcontention/contrib/file/Magdir/epoc user/attilio/vmcontention/contrib/file/Magdir/erlang user/attilio/vmcontention/contrib/file/Magdir/esri user/attilio/vmcontention/contrib/file/Magdir/fcs user/attilio/vmcontention/contrib/file/Magdir/filesystems user/attilio/vmcontention/contrib/file/Magdir/flash user/attilio/vmcontention/contrib/file/Magdir/fonts user/attilio/vmcontention/contrib/file/Magdir/fortran user/attilio/vmcontention/contrib/file/Magdir/frame user/attilio/vmcontention/contrib/file/Magdir/freebsd user/attilio/vmcontention/contrib/file/Magdir/fsav user/attilio/vmcontention/contrib/file/Magdir/games user/attilio/vmcontention/contrib/file/Magdir/gcc user/attilio/vmcontention/contrib/file/Magdir/geos user/attilio/vmcontention/contrib/file/Magdir/gimp user/attilio/vmcontention/contrib/file/Magdir/gnome-keyring user/attilio/vmcontention/contrib/file/Magdir/gnu user/attilio/vmcontention/contrib/file/Magdir/gnumeric user/attilio/vmcontention/contrib/file/Magdir/grace user/attilio/vmcontention/contrib/file/Magdir/graphviz user/attilio/vmcontention/contrib/file/Magdir/gringotts user/attilio/vmcontention/contrib/file/Magdir/hitachi-sh user/attilio/vmcontention/contrib/file/Magdir/hp user/attilio/vmcontention/contrib/file/Magdir/human68k user/attilio/vmcontention/contrib/file/Magdir/ibm370 user/attilio/vmcontention/contrib/file/Magdir/ibm6000 user/attilio/vmcontention/contrib/file/Magdir/iff user/attilio/vmcontention/contrib/file/Magdir/images user/attilio/vmcontention/contrib/file/Magdir/inform user/attilio/vmcontention/contrib/file/Magdir/intel user/attilio/vmcontention/contrib/file/Magdir/interleaf user/attilio/vmcontention/contrib/file/Magdir/island user/attilio/vmcontention/contrib/file/Magdir/ispell user/attilio/vmcontention/contrib/file/Magdir/java user/attilio/vmcontention/contrib/file/Magdir/jpeg user/attilio/vmcontention/contrib/file/Magdir/karma user/attilio/vmcontention/contrib/file/Magdir/kde user/attilio/vmcontention/contrib/file/Magdir/kml user/attilio/vmcontention/contrib/file/Magdir/lecter user/attilio/vmcontention/contrib/file/Magdir/lex user/attilio/vmcontention/contrib/file/Magdir/lif user/attilio/vmcontention/contrib/file/Magdir/linux user/attilio/vmcontention/contrib/file/Magdir/lisp user/attilio/vmcontention/contrib/file/Magdir/llvm user/attilio/vmcontention/contrib/file/Magdir/lua user/attilio/vmcontention/contrib/file/Magdir/luks user/attilio/vmcontention/contrib/file/Magdir/mach user/attilio/vmcontention/contrib/file/Magdir/macintosh user/attilio/vmcontention/contrib/file/Magdir/magic user/attilio/vmcontention/contrib/file/Magdir/mail.news user/attilio/vmcontention/contrib/file/Magdir/maple user/attilio/vmcontention/contrib/file/Magdir/mathcad user/attilio/vmcontention/contrib/file/Magdir/mathematica user/attilio/vmcontention/contrib/file/Magdir/matroska user/attilio/vmcontention/contrib/file/Magdir/mcrypt user/attilio/vmcontention/contrib/file/Magdir/mercurial user/attilio/vmcontention/contrib/file/Magdir/mime user/attilio/vmcontention/contrib/file/Magdir/mips user/attilio/vmcontention/contrib/file/Magdir/mirage user/attilio/vmcontention/contrib/file/Magdir/misctools user/attilio/vmcontention/contrib/file/Magdir/mkid user/attilio/vmcontention/contrib/file/Magdir/mlssa user/attilio/vmcontention/contrib/file/Magdir/mmdf user/attilio/vmcontention/contrib/file/Magdir/modem user/attilio/vmcontention/contrib/file/Magdir/motorola user/attilio/vmcontention/contrib/file/Magdir/mozilla user/attilio/vmcontention/contrib/file/Magdir/msdos user/attilio/vmcontention/contrib/file/Magdir/msvc user/attilio/vmcontention/contrib/file/Magdir/mup user/attilio/vmcontention/contrib/file/Magdir/natinst user/attilio/vmcontention/contrib/file/Magdir/ncr user/attilio/vmcontention/contrib/file/Magdir/netbsd user/attilio/vmcontention/contrib/file/Magdir/netscape user/attilio/vmcontention/contrib/file/Magdir/netware user/attilio/vmcontention/contrib/file/Magdir/news user/attilio/vmcontention/contrib/file/Magdir/nitpicker user/attilio/vmcontention/contrib/file/Magdir/ocaml user/attilio/vmcontention/contrib/file/Magdir/octave user/attilio/vmcontention/contrib/file/Magdir/ole2compounddocs user/attilio/vmcontention/contrib/file/Magdir/olf user/attilio/vmcontention/contrib/file/Magdir/os2 user/attilio/vmcontention/contrib/file/Magdir/os400 user/attilio/vmcontention/contrib/file/Magdir/os9 user/attilio/vmcontention/contrib/file/Magdir/osf1 user/attilio/vmcontention/contrib/file/Magdir/palm user/attilio/vmcontention/contrib/file/Magdir/parix user/attilio/vmcontention/contrib/file/Magdir/pbm user/attilio/vmcontention/contrib/file/Magdir/pdf user/attilio/vmcontention/contrib/file/Magdir/pdp user/attilio/vmcontention/contrib/file/Magdir/perl user/attilio/vmcontention/contrib/file/Magdir/pgp user/attilio/vmcontention/contrib/file/Magdir/pkgadd user/attilio/vmcontention/contrib/file/Magdir/plan9 user/attilio/vmcontention/contrib/file/Magdir/plus5 user/attilio/vmcontention/contrib/file/Magdir/printer user/attilio/vmcontention/contrib/file/Magdir/project user/attilio/vmcontention/contrib/file/Magdir/psdbms user/attilio/vmcontention/contrib/file/Magdir/pulsar user/attilio/vmcontention/contrib/file/Magdir/pyramid user/attilio/vmcontention/contrib/file/Magdir/python user/attilio/vmcontention/contrib/file/Magdir/revision user/attilio/vmcontention/contrib/file/Magdir/riff user/attilio/vmcontention/contrib/file/Magdir/rpm user/attilio/vmcontention/contrib/file/Magdir/rtf user/attilio/vmcontention/contrib/file/Magdir/ruby user/attilio/vmcontention/contrib/file/Magdir/sc user/attilio/vmcontention/contrib/file/Magdir/sccs user/attilio/vmcontention/contrib/file/Magdir/scientific user/attilio/vmcontention/contrib/file/Magdir/securitycerts user/attilio/vmcontention/contrib/file/Magdir/sendmail user/attilio/vmcontention/contrib/file/Magdir/sequent user/attilio/vmcontention/contrib/file/Magdir/sgi user/attilio/vmcontention/contrib/file/Magdir/sgml user/attilio/vmcontention/contrib/file/Magdir/sharc user/attilio/vmcontention/contrib/file/Magdir/sinclair user/attilio/vmcontention/contrib/file/Magdir/sketch user/attilio/vmcontention/contrib/file/Magdir/smalltalk user/attilio/vmcontention/contrib/file/Magdir/sniffer user/attilio/vmcontention/contrib/file/Magdir/softquad user/attilio/vmcontention/contrib/file/Magdir/spec user/attilio/vmcontention/contrib/file/Magdir/spectrum user/attilio/vmcontention/contrib/file/Magdir/sql user/attilio/vmcontention/contrib/file/Magdir/sun user/attilio/vmcontention/contrib/file/Magdir/sysex user/attilio/vmcontention/contrib/file/Magdir/teapot user/attilio/vmcontention/contrib/file/Magdir/terminfo user/attilio/vmcontention/contrib/file/Magdir/tex user/attilio/vmcontention/contrib/file/Magdir/tgif user/attilio/vmcontention/contrib/file/Magdir/ti-8x user/attilio/vmcontention/contrib/file/Magdir/timezone user/attilio/vmcontention/contrib/file/Magdir/troff user/attilio/vmcontention/contrib/file/Magdir/tuxedo user/attilio/vmcontention/contrib/file/Magdir/typeset user/attilio/vmcontention/contrib/file/Magdir/unicode user/attilio/vmcontention/contrib/file/Magdir/unknown user/attilio/vmcontention/contrib/file/Magdir/uuencode user/attilio/vmcontention/contrib/file/Magdir/varied.out user/attilio/vmcontention/contrib/file/Magdir/varied.script user/attilio/vmcontention/contrib/file/Magdir/vax user/attilio/vmcontention/contrib/file/Magdir/vicar user/attilio/vmcontention/contrib/file/Magdir/virtutech user/attilio/vmcontention/contrib/file/Magdir/visx user/attilio/vmcontention/contrib/file/Magdir/vms user/attilio/vmcontention/contrib/file/Magdir/vmware user/attilio/vmcontention/contrib/file/Magdir/vorbis user/attilio/vmcontention/contrib/file/Magdir/vxl user/attilio/vmcontention/contrib/file/Magdir/warc user/attilio/vmcontention/contrib/file/Magdir/weak user/attilio/vmcontention/contrib/file/Magdir/windows user/attilio/vmcontention/contrib/file/Magdir/wireless user/attilio/vmcontention/contrib/file/Magdir/wordprocessors user/attilio/vmcontention/contrib/file/Magdir/xdelta user/attilio/vmcontention/contrib/file/Magdir/xenix user/attilio/vmcontention/contrib/file/Magdir/xilinx user/attilio/vmcontention/contrib/file/Magdir/xo65 user/attilio/vmcontention/contrib/file/Magdir/xwindows user/attilio/vmcontention/contrib/file/Magdir/zilog user/attilio/vmcontention/contrib/file/Magdir/zyxel user/attilio/vmcontention/contrib/file/Makefile.am user/attilio/vmcontention/contrib/file/Makefile.am-src user/attilio/vmcontention/contrib/file/Makefile.in user/attilio/vmcontention/contrib/file/README user/attilio/vmcontention/contrib/file/TODO user/attilio/vmcontention/contrib/file/acinclude.m4 user/attilio/vmcontention/contrib/file/aclocal.m4 user/attilio/vmcontention/contrib/file/apprentice.c user/attilio/vmcontention/contrib/file/apptype.c user/attilio/vmcontention/contrib/file/ascmagic.c user/attilio/vmcontention/contrib/file/asprintf.c user/attilio/vmcontention/contrib/file/cdf.c user/attilio/vmcontention/contrib/file/cdf.h user/attilio/vmcontention/contrib/file/cdf_time.c user/attilio/vmcontention/contrib/file/compile user/attilio/vmcontention/contrib/file/compress.c user/attilio/vmcontention/contrib/file/config.h.in user/attilio/vmcontention/contrib/file/configure user/attilio/vmcontention/contrib/file/configure.ac user/attilio/vmcontention/contrib/file/elfclass.h user/attilio/vmcontention/contrib/file/encoding.c user/attilio/vmcontention/contrib/file/file.c user/attilio/vmcontention/contrib/file/file.h user/attilio/vmcontention/contrib/file/file.man user/attilio/vmcontention/contrib/file/file_opts.h user/attilio/vmcontention/contrib/file/fsmagic.c user/attilio/vmcontention/contrib/file/funcs.c user/attilio/vmcontention/contrib/file/install-sh user/attilio/vmcontention/contrib/file/is_tar.c user/attilio/vmcontention/contrib/file/libmagic.man user/attilio/vmcontention/contrib/file/magic.c user/attilio/vmcontention/contrib/file/magic.h user/attilio/vmcontention/contrib/file/magic.man user/attilio/vmcontention/contrib/file/print.c user/attilio/vmcontention/contrib/file/readcdf.c user/attilio/vmcontention/contrib/file/readelf.c user/attilio/vmcontention/contrib/file/readelf.h user/attilio/vmcontention/contrib/file/softmagic.c user/attilio/vmcontention/contrib/file/tar.h user/attilio/vmcontention/contrib/file/tests/Makefile.am user/attilio/vmcontention/contrib/file/tests/Makefile.in user/attilio/vmcontention/contrib/file/vasprintf.c user/attilio/vmcontention/contrib/llvm/LICENSE.TXT user/attilio/vmcontention/contrib/llvm/include/llvm-c/Analysis.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/BitReader.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/BitWriter.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/Core.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/Disassembler.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/EnhancedDisassembly.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/ExecutionEngine.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/Initialization.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/LinkTimeOptimizer.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/Object.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/Target.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/Transforms/IPO.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/Transforms/Scalar.h user/attilio/vmcontention/contrib/llvm/include/llvm-c/lto.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/APFloat.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/APInt.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/ArrayRef.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/BitVector.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/DenseMap.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/DenseMapInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/FoldingSet.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/GraphTraits.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/ImmutableSet.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/IntervalMap.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/PointerIntPair.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/PointerUnion.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/SetVector.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/SmallBitVector.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/SmallPtrSet.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/SmallSet.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/SmallString.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/SmallVector.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/SparseBitVector.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/Statistic.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/StringExtras.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/StringMap.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/StringRef.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/TinyPtrVector.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/Trie.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/Triple.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/Twine.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/ValueMap.h user/attilio/vmcontention/contrib/llvm/include/llvm/ADT/ilist.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/CFGPrinter.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/CaptureTracking.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/CodeMetrics.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/ConstantFolding.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/DIBuilder.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/DebugInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/DominatorInternals.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/Dominators.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/IVUsers.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/InlineCost.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/IntervalIterator.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/Loads.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/LoopInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/PHITransAddr.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/ProfileInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/RegionInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h user/attilio/vmcontention/contrib/llvm/include/llvm/Analysis/ValueTracking.h user/attilio/vmcontention/contrib/llvm/include/llvm/Argument.h user/attilio/vmcontention/contrib/llvm/include/llvm/Assembly/AssemblyAnnotationWriter.h user/attilio/vmcontention/contrib/llvm/include/llvm/Assembly/Parser.h user/attilio/vmcontention/contrib/llvm/include/llvm/Assembly/Writer.h user/attilio/vmcontention/contrib/llvm/include/llvm/Attributes.h user/attilio/vmcontention/contrib/llvm/include/llvm/AutoUpgrade.h user/attilio/vmcontention/contrib/llvm/include/llvm/BasicBlock.h user/attilio/vmcontention/contrib/llvm/include/llvm/Bitcode/Archive.h user/attilio/vmcontention/contrib/llvm/include/llvm/Bitcode/BitCodes.h user/attilio/vmcontention/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h user/attilio/vmcontention/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h user/attilio/vmcontention/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h user/attilio/vmcontention/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/Analysis.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/EdgeBundles.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/FastISel.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/GCStrategy.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/JITCodeEmitter.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/LiveInterval.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/LiveVariables.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineCodeEmitter.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineDominators.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineFunction.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineInstr.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineOperand.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/PBQP/HeuristicBase.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/PBQP/Heuristics/Briggs.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/Passes.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/ValueTypes.h user/attilio/vmcontention/contrib/llvm/include/llvm/CodeGen/ValueTypes.td user/attilio/vmcontention/contrib/llvm/include/llvm/Constant.h user/attilio/vmcontention/contrib/llvm/include/llvm/Constants.h user/attilio/vmcontention/contrib/llvm/include/llvm/DefaultPasses.h user/attilio/vmcontention/contrib/llvm/include/llvm/DerivedTypes.h user/attilio/vmcontention/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h user/attilio/vmcontention/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h user/attilio/vmcontention/contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h user/attilio/vmcontention/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h user/attilio/vmcontention/contrib/llvm/include/llvm/Function.h user/attilio/vmcontention/contrib/llvm/include/llvm/GlobalValue.h user/attilio/vmcontention/contrib/llvm/include/llvm/InitializePasses.h user/attilio/vmcontention/contrib/llvm/include/llvm/InlineAsm.h user/attilio/vmcontention/contrib/llvm/include/llvm/InstrTypes.h user/attilio/vmcontention/contrib/llvm/include/llvm/Instruction.def user/attilio/vmcontention/contrib/llvm/include/llvm/Instruction.h user/attilio/vmcontention/contrib/llvm/include/llvm/Instructions.h user/attilio/vmcontention/contrib/llvm/include/llvm/IntrinsicInst.h user/attilio/vmcontention/contrib/llvm/include/llvm/Intrinsics.td user/attilio/vmcontention/contrib/llvm/include/llvm/IntrinsicsX86.td user/attilio/vmcontention/contrib/llvm/include/llvm/LLVMContext.h user/attilio/vmcontention/contrib/llvm/include/llvm/LinkAllPasses.h user/attilio/vmcontention/contrib/llvm/include/llvm/Linker.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCAsmBackend.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCAsmInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCAsmInfoCOFF.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCAsmLayout.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCAssembler.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCCodeEmitter.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCContext.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCDisassembler.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCDwarf.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCExpr.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCFixup.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCInst.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCInstPrinter.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCInstrDesc.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCInstrInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCObjectStreamer.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCObjectWriter.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCRegisterInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCSection.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCSectionCOFF.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCSectionELF.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCSectionMachO.h user/attilio/vmcontention/contrib/llvm/include/llvm/MC/MCStreamer.h user/attilio/vmcontention/contrib/llvm/include/llvm/Metadata.h user/attilio/vmcontention/contrib/llvm/include/llvm/Module.h user/attilio/vmcontention/contrib/llvm/include/llvm/Object/Archive.h user/attilio/vmcontention/contrib/llvm/include/llvm/Object/Binary.h user/attilio/vmcontention/contrib/llvm/include/llvm/Object/COFF.h user/attilio/vmcontention/contrib/llvm/include/llvm/Object/MachO.h user/attilio/vmcontention/contrib/llvm/include/llvm/Object/MachOObject.h user/attilio/vmcontention/contrib/llvm/include/llvm/Object/ObjectFile.h user/attilio/vmcontention/contrib/llvm/include/llvm/Operator.h user/attilio/vmcontention/contrib/llvm/include/llvm/Pass.h user/attilio/vmcontention/contrib/llvm/include/llvm/PassAnalysisSupport.h user/attilio/vmcontention/contrib/llvm/include/llvm/PassManager.h user/attilio/vmcontention/contrib/llvm/include/llvm/PassManagers.h user/attilio/vmcontention/contrib/llvm/include/llvm/PassSupport.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/BlockFrequency.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/BranchProbability.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/CFG.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/COFF.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/CallSite.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Capacity.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/CodeGen.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/CommandLine.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Compiler.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/DOTGraphTraits.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/DataTypes.h.in user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Debug.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Dwarf.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/DynamicLibrary.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/ELF.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Endian.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/FileSystem.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/GraphWriter.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Host.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/IRReader.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/InstVisitor.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/MachO.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/ManagedStatic.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/MathExtras.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/MemoryObject.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/PathV1.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/PatternMatch.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Process.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Program.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Recycler.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/SMLoc.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/SourceMgr.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/TargetRegistry.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/TargetSelect.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/Valgrind.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/ValueHandle.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/system_error.h user/attilio/vmcontention/contrib/llvm/include/llvm/Support/type_traits.h user/attilio/vmcontention/contrib/llvm/include/llvm/TableGen/Record.h user/attilio/vmcontention/contrib/llvm/include/llvm/TableGen/TableGenAction.h user/attilio/vmcontention/contrib/llvm/include/llvm/TableGen/TableGenBackend.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/Mangler.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/Target.td user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetCallingConv.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetCallingConv.td user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetData.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetELFWriterInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetFrameLowering.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetInstrInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetJITInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetLowering.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetMachine.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetOpcodes.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetOptions.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td user/attilio/vmcontention/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/IPO.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Instrumentation.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Scalar.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h user/attilio/vmcontention/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h user/attilio/vmcontention/contrib/llvm/include/llvm/Type.h user/attilio/vmcontention/contrib/llvm/include/llvm/User.h user/attilio/vmcontention/contrib/llvm/include/llvm/Value.h user/attilio/vmcontention/contrib/llvm/lib/Analysis/AliasAnalysis.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/AliasAnalysisCounter.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/AliasSetTracker.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/CFGPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/CaptureTracking.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/ConstantFolding.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/DIBuilder.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/DebugInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/DominanceFrontier.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/IVUsers.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/InlineCost.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/InstructionSimplify.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/LazyValueInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/Lint.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/Loads.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/LoopDependenceAnalysis.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/LoopInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/LoopPass.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/MemDepPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/PHITransAddr.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/PathNumbering.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/PathProfileVerifier.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/ProfileEstimatorPass.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/ProfileVerifierPass.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/RegionInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/ScalarEvolution.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/SparsePropagation.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/Trace.cpp user/attilio/vmcontention/contrib/llvm/lib/Analysis/ValueTracking.cpp user/attilio/vmcontention/contrib/llvm/lib/Archive/ArchiveReader.cpp user/attilio/vmcontention/contrib/llvm/lib/Archive/ArchiveWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/AsmParser/LLLexer.cpp user/attilio/vmcontention/contrib/llvm/lib/AsmParser/LLLexer.h user/attilio/vmcontention/contrib/llvm/lib/AsmParser/LLParser.cpp user/attilio/vmcontention/contrib/llvm/lib/AsmParser/LLParser.h user/attilio/vmcontention/contrib/llvm/lib/AsmParser/LLToken.h user/attilio/vmcontention/contrib/llvm/lib/AsmParser/Parser.cpp user/attilio/vmcontention/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp user/attilio/vmcontention/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h user/attilio/vmcontention/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp user/attilio/vmcontention/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AllocationOrder.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AllocationOrder.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/Analysis.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/BranchFolding.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/CallingConvLower.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/CodeGen.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/EdgeBundles.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/GCMetadata.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/GCStrategy.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/IfConversion.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/InlineSpiller.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/InterferenceCache.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/InterferenceCache.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LexicalScopes.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LiveInterval.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LiveVariables.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineCSE.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineFunction.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineInstr.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineLICM.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachinePassRegistry.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineSink.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/MachineVerifier.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/PHIElimination.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/Passes.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/PrologEpilogInserter.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegAllocBase.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegAllocFast.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegisterClassInfo.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegisterCoalescer.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/RenderMachineFunction.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SlotIndexes.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/Spiller.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/Spiller.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SplitKit.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/SplitKit.h user/attilio/vmcontention/contrib/llvm/lib/CodeGen/StackProtector.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/TailDuplication.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/VirtRegMap.cpp user/attilio/vmcontention/contrib/llvm/lib/CodeGen/VirtRegMap.h user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFContext.cpp user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFContext.h user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFDebugAbbrev.h user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp user/attilio/vmcontention/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/JIT/JIT.h user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp user/attilio/vmcontention/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp user/attilio/vmcontention/contrib/llvm/lib/Linker/LinkArchives.cpp user/attilio/vmcontention/contrib/llvm/lib/Linker/LinkModules.cpp user/attilio/vmcontention/contrib/llvm/lib/Linker/Linker.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/ELFObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCAsmBackend.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCAsmStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCAssembler.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCCodeGenInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCContext.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h user/attilio/vmcontention/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.h user/attilio/vmcontention/contrib/llvm/lib/MC/MCDisassembler/EDOperand.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCDwarf.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCELF.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCELFStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCExpr.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCInst.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCInstPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCMachOStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCModule.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCNullStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCObjectFileInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCObjectStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCParser/AsmParser.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCPureStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MCSymbol.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/MachObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/SubtargetFeature.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/MC/WinCOFFStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/Object/Archive.cpp user/attilio/vmcontention/contrib/llvm/lib/Object/COFFObjectFile.cpp user/attilio/vmcontention/contrib/llvm/lib/Object/ELFObjectFile.cpp user/attilio/vmcontention/contrib/llvm/lib/Object/MachOObject.cpp user/attilio/vmcontention/contrib/llvm/lib/Object/MachOObjectFile.cpp user/attilio/vmcontention/contrib/llvm/lib/Object/Object.cpp user/attilio/vmcontention/contrib/llvm/lib/Object/ObjectFile.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/APFloat.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/APInt.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Allocator.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Atomic.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/BlockFrequency.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/BranchProbability.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/CommandLine.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/ConstantRange.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/CrashRecoveryContext.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/DataExtractor.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Dwarf.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/FileUtilities.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/FoldingSet.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/GraphWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Host.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/ManagedStatic.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/MemoryBuffer.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Mutex.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Path.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/PathV2.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Program.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/RWMutex.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/SmallPtrSet.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/SourceMgr.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Statistic.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/StringExtras.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/StringMap.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/StringRef.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/TargetRegistry.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/ThreadLocal.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Threading.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Timer.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Triple.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Unix/Host.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Unix/Path.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Unix/PathV2.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Unix/Process.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Unix/Program.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Unix/Signals.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Valgrind.cpp user/attilio/vmcontention/contrib/llvm/lib/Support/Windows/Host.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Windows/Path.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Windows/PathV2.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Windows/Process.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Windows/Program.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Windows/Signals.inc user/attilio/vmcontention/contrib/llvm/lib/Support/Windows/Windows.h user/attilio/vmcontention/contrib/llvm/lib/Support/raw_ostream.cpp user/attilio/vmcontention/contrib/llvm/lib/TableGen/Error.cpp user/attilio/vmcontention/contrib/llvm/lib/TableGen/Record.cpp user/attilio/vmcontention/contrib/llvm/lib/TableGen/TGLexer.cpp user/attilio/vmcontention/contrib/llvm/lib/TableGen/TGLexer.h user/attilio/vmcontention/contrib/llvm/lib/TableGen/TGParser.cpp user/attilio/vmcontention/contrib/llvm/lib/TableGen/TGParser.h user/attilio/vmcontention/contrib/llvm/lib/TableGen/TableGenBackend.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARM.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARM.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMBuildAttrs.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMCallingConv.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMCallingConv.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMJITInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMPerfectShuffle.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMRelocations.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMSchedule.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMScheduleA8.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMScheduleV6.td user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMSubtarget.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmLexer.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/CellSDKIntrinsics.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPU.h user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPU.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPU128InstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPU64InstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUCallingConv.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUInstrBuilder.h user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUInstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.h user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUMathInstr.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUNodes.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUNopFiller.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUOperands.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUSchedule.td user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUSubtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmLexer.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/InstPrinter/MBlazeInstPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlaze.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeDelaySlotFiller.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFPU.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFSL.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsics.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeRelocations.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule3.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule5.td user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeBaseInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430.td user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430InstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mangler.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/Mips.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/Mips.td user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsCallingConv.td user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsJITInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsRelocations.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsSchedule.td user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsSubtarget.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/InstPrinter/PTXInstPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/InstPrinter/PTXInstPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXBaseInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTX.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTX.td user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXFPRoundingModePass.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXFrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXFrameLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXInstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXInstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXInstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXInstrLoadStore.td user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXIntrinsicInstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXMCAsmStreamer.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXMFInfoExtract.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXParamManager.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXParamManager.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXRegAlloc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXSubtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXSubtarget.h user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXTargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PTX/PTXTargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCBaseInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPC.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPC.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCRelocations.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/FPMover.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/Sparc.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/Sparc.td user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcCallingConv.td user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/TargetData.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/TargetInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/TargetLibraryInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/TargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/TargetRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/AsmParser/X86AsmLexer.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c user/attilio/vmcontention/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86AsmPrinter.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86CallingConv.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86ELFWriterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86FastISel.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86FrameLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86ISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86Instr3DNow.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrBuilder.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrCMovSetCC.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrCompiler.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrControl.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrExtension.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrFMA.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrFPStack.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrMMX.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrSSE.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrSystem.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86InstrVMX.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86JITInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86JITInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86MCInstLower.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86RegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86RegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86Relocations.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86Subtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86Subtarget.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86TargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h user/attilio/vmcontention/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCore.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCore.td user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreInstrFormats.td user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.td user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreSubtarget.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h user/attilio/vmcontention/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/Inliner.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/Internalize.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h user/attilio/vmcontention/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Instrumentation/OptimalEdgeProfiling.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/GVN.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/LICM.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Scalar/Sink.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/Local.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp user/attilio/vmcontention/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/AsmWriter.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Attributes.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/AutoUpgrade.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/BasicBlock.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/ConstantFold.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Constants.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/ConstantsContext.h user/attilio/vmcontention/contrib/llvm/lib/VMCore/Core.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/DebugLoc.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Dominators.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Function.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/GCOV.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/IRBuilder.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Instruction.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Instructions.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/LLVMContext.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/LLVMContextImpl.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/LLVMContextImpl.h user/attilio/vmcontention/contrib/llvm/lib/VMCore/Metadata.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Module.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Pass.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/PassManager.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Type.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Use.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/User.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Value.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/ValueTypes.cpp user/attilio/vmcontention/contrib/llvm/lib/VMCore/Verifier.cpp user/attilio/vmcontention/contrib/llvm/tools/bugpoint/BugDriver.cpp user/attilio/vmcontention/contrib/llvm/tools/bugpoint/CrashDebugger.cpp user/attilio/vmcontention/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp user/attilio/vmcontention/contrib/llvm/tools/bugpoint/ExtractFunction.cpp user/attilio/vmcontention/contrib/llvm/tools/bugpoint/Miscompilation.cpp user/attilio/vmcontention/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp user/attilio/vmcontention/contrib/llvm/tools/bugpoint/ToolRunner.cpp user/attilio/vmcontention/contrib/llvm/tools/bugpoint/ToolRunner.h user/attilio/vmcontention/contrib/llvm/tools/bugpoint/bugpoint.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/LICENSE.TXT user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang-c/Index.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/APValue.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/Attr.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/Decl.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/Expr.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/Mangle.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/Stmt.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/Type.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/TypeVisitor.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/Attr.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Basic/Version.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/Action.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/Driver.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/Job.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/ObjCRuntime.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/OptTable.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/Options.td user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/Tool.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Driver/Types.def user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/Analyses.def user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOptions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Index/ASTLocation.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Lex/Token.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Parse/ParseAST.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Parse/Parser.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Rewrite/ASTConsumers.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Rewrite/FixItRewriter.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Rewrite/FrontendActions.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Rewrite/TokenRewriter.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/LocInfoType.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/Overload.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/Scope.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/Sema.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/SemaConsumer.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/Template.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Serialization/Module.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h user/attilio/vmcontention/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/APValue.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/Decl.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/Expr.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/Mangle.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/Stmt.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/Type.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/ConvertUTF.c user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/Targets.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Basic/Version.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/Action.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/Arg.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/CC1AsOptions.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/CC1Options.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/Driver.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/DriverOptions.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/Job.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/Option.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/ToolChains.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/Tools.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/Tools.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Driver/Types.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/LangStandards.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/avxintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/emmintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/float.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/immintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/smmintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/tgmath.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/x86intrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Index/ASTLocation.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Index/Analyzer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/PPCaching.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Parse/Parser.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Rewrite/FixItRewriter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Rewrite/FrontendActions.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Rewrite/HTMLPrint.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Rewrite/RewriteMacros.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Rewrite/RewriteTest.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/Scope.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/Sema.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/Module.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AdjustedReturnValueChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorsChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicConstraintManager.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ObjCMessage.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/tools/driver/driver.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.h user/attilio/vmcontention/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp user/attilio/vmcontention/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.h user/attilio/vmcontention/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp user/attilio/vmcontention/contrib/llvm/tools/llc/llc.cpp user/attilio/vmcontention/contrib/llvm/tools/lli/lli.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-as/llvm-as.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-diff/DiffConsumer.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-diff/DiffConsumer.h user/attilio/vmcontention/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-diff/DifferenceEngine.h user/attilio/vmcontention/contrib/llvm/tools/llvm-diff/llvm-diff.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-dis/llvm-dis.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-extract/llvm-extract.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-ld/llvm-ld.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-link/llvm-link.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-mc/Disassembler.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-mc/llvm-mc.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-nm/llvm-nm.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-objdump/MachODump.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-objdump/llvm-objdump.h user/attilio/vmcontention/contrib/llvm/tools/llvm-prof/llvm-prof.cpp user/attilio/vmcontention/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp user/attilio/vmcontention/contrib/llvm/tools/opt/PrintSCC.cpp user/attilio/vmcontention/contrib/llvm/tools/opt/opt.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/AsmWriterEmitter.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/CodeGenRegisters.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/CodeGenTarget.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/CodeGenTarget.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/DAGISelMatcher.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/EDEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/FastISelEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/InstrInfoEmitter.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/IntrinsicEmitter.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/RegisterInfoEmitter.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/SetTheory.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/SetTheory.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/StringToOffsetTable.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/TableGen.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/X86ModRMFilters.h user/attilio/vmcontention/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp user/attilio/vmcontention/contrib/llvm/utils/TableGen/X86RecognizableInstr.h user/attilio/vmcontention/contrib/openpam/lib/openpam_configure.c user/attilio/vmcontention/etc/mtree/BSD.include.dist user/attilio/vmcontention/gnu/lib/csu/Makefile user/attilio/vmcontention/include/malloc_np.h user/attilio/vmcontention/include/stdlib.h user/attilio/vmcontention/lib/clang/Makefile user/attilio/vmcontention/lib/clang/clang.build.mk user/attilio/vmcontention/lib/clang/include/Makefile user/attilio/vmcontention/lib/clang/include/clang/Basic/Version.inc user/attilio/vmcontention/lib/clang/include/llvm/Config/config.h user/attilio/vmcontention/lib/clang/include/llvm/Config/llvm-config.h user/attilio/vmcontention/lib/clang/libclanganalysis/Makefile user/attilio/vmcontention/lib/clang/libclangarcmigrate/Makefile user/attilio/vmcontention/lib/clang/libclangast/Makefile user/attilio/vmcontention/lib/clang/libclangbasic/Makefile user/attilio/vmcontention/lib/clang/libclangcodegen/Makefile user/attilio/vmcontention/lib/clang/libclangdriver/Makefile user/attilio/vmcontention/lib/clang/libclangfrontend/Makefile user/attilio/vmcontention/lib/clang/libclangindex/Makefile user/attilio/vmcontention/lib/clang/libclanglex/Makefile user/attilio/vmcontention/lib/clang/libclangparse/Makefile user/attilio/vmcontention/lib/clang/libclangrewrite/Makefile user/attilio/vmcontention/lib/clang/libclangsema/Makefile user/attilio/vmcontention/lib/clang/libclangserialization/Makefile user/attilio/vmcontention/lib/clang/libclangstaticanalyzercheckers/Makefile user/attilio/vmcontention/lib/clang/libclangstaticanalyzercore/Makefile user/attilio/vmcontention/lib/clang/libllvmanalysis/Makefile user/attilio/vmcontention/lib/clang/libllvmarmcodegen/Makefile user/attilio/vmcontention/lib/clang/libllvmarmdesc/Makefile user/attilio/vmcontention/lib/clang/libllvmasmprinter/Makefile user/attilio/vmcontention/lib/clang/libllvmcodegen/Makefile user/attilio/vmcontention/lib/clang/libllvmcore/Makefile user/attilio/vmcontention/lib/clang/libllvminstrumentation/Makefile user/attilio/vmcontention/lib/clang/libllvmjit/Makefile user/attilio/vmcontention/lib/clang/libllvmmc/Makefile user/attilio/vmcontention/lib/clang/libllvmmcjit/Makefile user/attilio/vmcontention/lib/clang/libllvmmipscodegen/Makefile user/attilio/vmcontention/lib/clang/libllvmmipsdesc/Makefile user/attilio/vmcontention/lib/clang/libllvmpowerpccodegen/Makefile user/attilio/vmcontention/lib/clang/libllvmpowerpcdesc/Makefile user/attilio/vmcontention/lib/clang/libllvmruntimedyld/Makefile user/attilio/vmcontention/lib/clang/libllvmscalaropts/Makefile user/attilio/vmcontention/lib/clang/libllvmselectiondag/Makefile user/attilio/vmcontention/lib/clang/libllvmsupport/Makefile user/attilio/vmcontention/lib/clang/libllvmtablegen/Makefile user/attilio/vmcontention/lib/clang/libllvmtarget/Makefile user/attilio/vmcontention/lib/clang/libllvmtransformutils/Makefile user/attilio/vmcontention/lib/clang/libllvmx86codegen/Makefile user/attilio/vmcontention/lib/clang/libllvmx86desc/Makefile user/attilio/vmcontention/lib/csu/powerpc/Makefile user/attilio/vmcontention/lib/libc/Makefile user/attilio/vmcontention/lib/libc/arm/gen/Makefile.inc user/attilio/vmcontention/lib/libc/gen/tls.c user/attilio/vmcontention/lib/libc/net/if_nametoindex.c user/attilio/vmcontention/lib/libc/stdlib/Makefile.inc user/attilio/vmcontention/lib/libc/stdlib/Symbol.map user/attilio/vmcontention/lib/libc/sys/chflags.2 user/attilio/vmcontention/lib/libfetch/fetch.c user/attilio/vmcontention/lib/libkse/Makefile user/attilio/vmcontention/lib/libmagic/Makefile user/attilio/vmcontention/lib/libmagic/config.h user/attilio/vmcontention/lib/libpam/modules/pam_exec/pam_exec.c user/attilio/vmcontention/lib/libthr/thread/thr_private.h user/attilio/vmcontention/lib/libulog/ulog_login.c user/attilio/vmcontention/lib/libusb/Makefile user/attilio/vmcontention/lib/libusb/libusb.3 user/attilio/vmcontention/lib/libusb/libusb.h user/attilio/vmcontention/lib/libusb/libusb10.c user/attilio/vmcontention/libexec/rtld-elf/rtld.c user/attilio/vmcontention/libexec/ulog-helper/ulog-helper.c user/attilio/vmcontention/sbin/fdisk/fdisk.c user/attilio/vmcontention/sbin/geom/class/multipath/geom_multipath.c user/attilio/vmcontention/sbin/geom/class/multipath/gmultipath.8 user/attilio/vmcontention/sbin/geom/class/raid/graid.8 user/attilio/vmcontention/sbin/growfs/debug.c user/attilio/vmcontention/sbin/growfs/growfs.c user/attilio/vmcontention/sbin/iscontrol/Makefile user/attilio/vmcontention/sbin/iscontrol/iscontrol.8 user/attilio/vmcontention/sbin/iscontrol/iscontrol.c user/attilio/vmcontention/sbin/iscontrol/iscsi.conf.5 user/attilio/vmcontention/share/doc/bind9/Makefile user/attilio/vmcontention/share/examples/csh/dot.cshrc user/attilio/vmcontention/share/man/man4/iscsi_initiator.4 user/attilio/vmcontention/share/man/man9/Makefile user/attilio/vmcontention/share/man/man9/swi.9 user/attilio/vmcontention/share/misc/bsd-family-tree user/attilio/vmcontention/share/misc/committers-ports.dot user/attilio/vmcontention/share/misc/committers-src.dot user/attilio/vmcontention/share/misc/scsi_modes user/attilio/vmcontention/share/mk/bsd.sys.mk user/attilio/vmcontention/sys/amd64/amd64/mp_machdep.c user/attilio/vmcontention/sys/amd64/conf/NOTES user/attilio/vmcontention/sys/amd64/include/intr_machdep.h user/attilio/vmcontention/sys/amd64/linux32/linux32_dummy.c user/attilio/vmcontention/sys/amd64/linux32/linux32_machdep.c user/attilio/vmcontention/sys/amd64/linux32/linux32_proto.h user/attilio/vmcontention/sys/amd64/linux32/linux32_syscall.h user/attilio/vmcontention/sys/amd64/linux32/linux32_syscalls.c user/attilio/vmcontention/sys/amd64/linux32/linux32_sysent.c user/attilio/vmcontention/sys/amd64/linux32/linux32_systrace_args.c user/attilio/vmcontention/sys/amd64/linux32/syscalls.master user/attilio/vmcontention/sys/arm/at91/at91_pio.c user/attilio/vmcontention/sys/arm/at91/at91_piovar.h user/attilio/vmcontention/sys/arm/at91/at91_pit.c user/attilio/vmcontention/sys/arm/at91/at91_pmc.c user/attilio/vmcontention/sys/arm/at91/at91_rst.c user/attilio/vmcontention/sys/arm/at91/at91_twi.c user/attilio/vmcontention/sys/arm/at91/at91_twireg.h user/attilio/vmcontention/sys/arm/at91/at91_wdt.c user/attilio/vmcontention/sys/arm/at91/at91reg.h user/attilio/vmcontention/sys/arm/at91/at91sam9260.c user/attilio/vmcontention/sys/arm/at91/at91var.h user/attilio/vmcontention/sys/arm/at91/if_ate.c user/attilio/vmcontention/sys/arm/include/armreg.h user/attilio/vmcontention/sys/arm/include/sysarch.h user/attilio/vmcontention/sys/boot/common/gpt.c user/attilio/vmcontention/sys/boot/i386/zfsboot/zfsboot.c user/attilio/vmcontention/sys/cam/ata/ata_da.c user/attilio/vmcontention/sys/cam/scsi/scsi_da.c user/attilio/vmcontention/sys/compat/linux/linux_file.c user/attilio/vmcontention/sys/conf/NOTES user/attilio/vmcontention/sys/conf/files user/attilio/vmcontention/sys/conf/options user/attilio/vmcontention/sys/ddb/db_main.c user/attilio/vmcontention/sys/dev/ath/ah_osdep.c user/attilio/vmcontention/sys/dev/ath/ah_osdep.h user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_power.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c user/attilio/vmcontention/sys/dev/ath/if_ath.c user/attilio/vmcontention/sys/dev/ath/if_ath_pci.c user/attilio/vmcontention/sys/dev/ath/if_ath_tx.c user/attilio/vmcontention/sys/dev/ath/if_athvar.h user/attilio/vmcontention/sys/dev/e1000/if_igb.c user/attilio/vmcontention/sys/dev/e1000/if_igb.h user/attilio/vmcontention/sys/dev/fb/s3_pci.c user/attilio/vmcontention/sys/dev/iscsi/initiator/isc_subr.c user/attilio/vmcontention/sys/dev/iscsi/initiator/iscsi.c user/attilio/vmcontention/sys/dev/iscsi/initiator/iscsi_subr.c user/attilio/vmcontention/sys/dev/iscsi/initiator/iscsivar.h user/attilio/vmcontention/sys/dev/iwn/if_iwn.c user/attilio/vmcontention/sys/dev/ixgbe/ixgbe.c user/attilio/vmcontention/sys/dev/mwl/if_mwl.c user/attilio/vmcontention/sys/dev/mwl/if_mwlvar.h user/attilio/vmcontention/sys/dev/netmap/if_re_netmap.h user/attilio/vmcontention/sys/dev/netmap/ixgbe_netmap.h user/attilio/vmcontention/sys/dev/netmap/netmap.c user/attilio/vmcontention/sys/dev/netmap/netmap_kern.h user/attilio/vmcontention/sys/dev/uart/uart_bus.h user/attilio/vmcontention/sys/dev/uart/uart_core.c user/attilio/vmcontention/sys/dev/uart/uart_if.m user/attilio/vmcontention/sys/dev/usb/serial/umodem.c user/attilio/vmcontention/sys/dev/virtio/balloon/virtio_balloon.c user/attilio/vmcontention/sys/dev/virtio/block/virtio_blk.c user/attilio/vmcontention/sys/dev/virtio/network/if_vtnet.c user/attilio/vmcontention/sys/dev/virtio/pci/virtio_pci.c user/attilio/vmcontention/sys/dev/virtio/virtio_ring.h user/attilio/vmcontention/sys/dev/virtio/virtqueue.c user/attilio/vmcontention/sys/dev/virtio/virtqueue.h user/attilio/vmcontention/sys/fs/coda/coda_subr.c user/attilio/vmcontention/sys/fs/ext2fs/ext2_vfsops.c user/attilio/vmcontention/sys/fs/ext2fs/ext2_vnops.c user/attilio/vmcontention/sys/fs/msdosfs/msdosfs_vfsops.c user/attilio/vmcontention/sys/fs/nfsclient/nfs_clsubs.c user/attilio/vmcontention/sys/fs/nfsclient/nfs_clvfsops.c user/attilio/vmcontention/sys/fs/tmpfs/tmpfs.h user/attilio/vmcontention/sys/fs/tmpfs/tmpfs_subr.c user/attilio/vmcontention/sys/fs/tmpfs/tmpfs_vfsops.c user/attilio/vmcontention/sys/gdb/gdb_main.c user/attilio/vmcontention/sys/geom/multipath/g_multipath.c user/attilio/vmcontention/sys/geom/part/g_part.c user/attilio/vmcontention/sys/geom/part/g_part.h user/attilio/vmcontention/sys/geom/part/g_part_gpt.c user/attilio/vmcontention/sys/geom/part/g_part_mbr.c user/attilio/vmcontention/sys/geom/raid/g_raid.c user/attilio/vmcontention/sys/geom/raid/g_raid.h user/attilio/vmcontention/sys/geom/raid/md_intel.c user/attilio/vmcontention/sys/geom/raid/md_jmicron.c user/attilio/vmcontention/sys/geom/raid/md_nvidia.c user/attilio/vmcontention/sys/geom/raid/md_promise.c user/attilio/vmcontention/sys/geom/raid/md_sii.c user/attilio/vmcontention/sys/i386/conf/NOTES user/attilio/vmcontention/sys/i386/i386/mp_machdep.c user/attilio/vmcontention/sys/i386/i386/vm86.c user/attilio/vmcontention/sys/i386/include/intr_machdep.h user/attilio/vmcontention/sys/i386/linux/linux_dummy.c user/attilio/vmcontention/sys/i386/linux/linux_machdep.c user/attilio/vmcontention/sys/i386/linux/linux_proto.h user/attilio/vmcontention/sys/i386/linux/linux_syscall.h user/attilio/vmcontention/sys/i386/linux/linux_syscalls.c user/attilio/vmcontention/sys/i386/linux/linux_sysent.c user/attilio/vmcontention/sys/i386/linux/linux_systrace_args.c user/attilio/vmcontention/sys/i386/linux/syscalls.master user/attilio/vmcontention/sys/kern/kern_linker.c user/attilio/vmcontention/sys/kern/kern_racct.c user/attilio/vmcontention/sys/kern/kern_rctl.c user/attilio/vmcontention/sys/kern/kern_sig.c user/attilio/vmcontention/sys/kern/kern_thr.c user/attilio/vmcontention/sys/kern/kern_umtx.c user/attilio/vmcontention/sys/kern/subr_acl_nfs4.c user/attilio/vmcontention/sys/kern/subr_bus.c user/attilio/vmcontention/sys/kern/subr_firmware.c user/attilio/vmcontention/sys/kern/subr_kdb.c user/attilio/vmcontention/sys/kern/subr_syscall.c user/attilio/vmcontention/sys/kern/subr_turnstile.c user/attilio/vmcontention/sys/kern/sys_pipe.c user/attilio/vmcontention/sys/kern/vfs_default.c user/attilio/vmcontention/sys/kern/vfs_mount.c user/attilio/vmcontention/sys/kern/vfs_subr.c user/attilio/vmcontention/sys/mips/atheros/ar71xx_chip.c user/attilio/vmcontention/sys/mips/atheros/ar71xx_chip.h user/attilio/vmcontention/sys/mips/atheros/ar71xx_pci.c user/attilio/vmcontention/sys/mips/atheros/ar91xx_chip.c user/attilio/vmcontention/sys/modules/geom/geom_raid/Makefile user/attilio/vmcontention/sys/modules/iscsi/initiator/Makefile user/attilio/vmcontention/sys/modules/mlx4/Makefile user/attilio/vmcontention/sys/modules/mlx4ib/Makefile user/attilio/vmcontention/sys/modules/mlxen/Makefile user/attilio/vmcontention/sys/modules/mthca/Makefile user/attilio/vmcontention/sys/modules/uart/Makefile user/attilio/vmcontention/sys/net/if.c user/attilio/vmcontention/sys/net/if_lagg.c user/attilio/vmcontention/sys/net/netmap.h user/attilio/vmcontention/sys/net/netmap_user.h user/attilio/vmcontention/sys/net80211/ieee80211_ddb.c user/attilio/vmcontention/sys/net80211/ieee80211_ht.c user/attilio/vmcontention/sys/net80211/ieee80211_ht.h user/attilio/vmcontention/sys/net80211/ieee80211_node.h user/attilio/vmcontention/sys/net80211/ieee80211_output.c user/attilio/vmcontention/sys/net80211/ieee80211_superg.c user/attilio/vmcontention/sys/netgraph/ng_source.c user/attilio/vmcontention/sys/netinet/sctp_indata.c user/attilio/vmcontention/sys/netinet/sctp_input.c user/attilio/vmcontention/sys/netinet/sctp_output.c user/attilio/vmcontention/sys/netinet/sctp_timer.c user/attilio/vmcontention/sys/netinet/sctp_usrreq.c user/attilio/vmcontention/sys/netinet/sctp_var.h user/attilio/vmcontention/sys/netinet/sctputil.c user/attilio/vmcontention/sys/netinet/tcp_input.c user/attilio/vmcontention/sys/netinet/tcp_output.c user/attilio/vmcontention/sys/netinet/tcp_subr.c user/attilio/vmcontention/sys/netinet/tcp_var.h user/attilio/vmcontention/sys/nfsclient/nfs_subs.c user/attilio/vmcontention/sys/nfsclient/nfs_vfsops.c user/attilio/vmcontention/sys/ofed/drivers/infiniband/core/addr.c user/attilio/vmcontention/sys/ofed/drivers/infiniband/core/cma.c user/attilio/vmcontention/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c user/attilio/vmcontention/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c user/attilio/vmcontention/sys/ofed/drivers/net/mlx4/en_frag.c user/attilio/vmcontention/sys/ofed/drivers/net/mlx4/en_rx.c user/attilio/vmcontention/sys/ofed/include/linux/in.h user/attilio/vmcontention/sys/ofed/include/linux/in6.h user/attilio/vmcontention/sys/ofed/include/net/ip.h user/attilio/vmcontention/sys/ofed/include/net/ipv6.h user/attilio/vmcontention/sys/pci/intpm.c user/attilio/vmcontention/sys/powerpc/aim/machdep.c user/attilio/vmcontention/sys/powerpc/aim/mmu_oea.c user/attilio/vmcontention/sys/powerpc/aim/mmu_oea64.c user/attilio/vmcontention/sys/powerpc/include/cpu.h user/attilio/vmcontention/sys/sparc64/conf/GENERIC user/attilio/vmcontention/sys/sparc64/sparc64/intr_machdep.c user/attilio/vmcontention/sys/sparc64/sparc64/machdep.c user/attilio/vmcontention/sys/sys/bus.h user/attilio/vmcontention/sys/sys/diskmbr.h user/attilio/vmcontention/sys/sys/gpt.h user/attilio/vmcontention/sys/sys/kdb.h user/attilio/vmcontention/sys/sys/mount.h user/attilio/vmcontention/sys/sys/param.h user/attilio/vmcontention/sys/sys/proc.h user/attilio/vmcontention/sys/sys/vnode.h user/attilio/vmcontention/sys/ufs/ffs/ffs_snapshot.c user/attilio/vmcontention/sys/ufs/ffs/ffs_softdep.c user/attilio/vmcontention/sys/ufs/ffs/ffs_vfsops.c user/attilio/vmcontention/sys/ufs/ufs/ufs_quota.c user/attilio/vmcontention/sys/ufs/ufs/ufs_vnops.c user/attilio/vmcontention/sys/x86/include/specialreg.h user/attilio/vmcontention/sys/x86/pci/pci_bus.c user/attilio/vmcontention/tools/build/mk/OptionalObsoleteFiles.inc user/attilio/vmcontention/tools/tools/netmap/bridge.c user/attilio/vmcontention/usr.bin/calendar/calendars/calendar.freebsd user/attilio/vmcontention/usr.bin/clang/bugpoint/Makefile user/attilio/vmcontention/usr.bin/clang/bugpoint/bugpoint.1 user/attilio/vmcontention/usr.bin/clang/clang/Makefile user/attilio/vmcontention/usr.bin/clang/clang/clang.1 user/attilio/vmcontention/usr.bin/clang/llc/llc.1 user/attilio/vmcontention/usr.bin/clang/lli/Makefile user/attilio/vmcontention/usr.bin/clang/lli/lli.1 user/attilio/vmcontention/usr.bin/clang/llvm-ar/llvm-ar.1 user/attilio/vmcontention/usr.bin/clang/llvm-as/llvm-as.1 user/attilio/vmcontention/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1 user/attilio/vmcontention/usr.bin/clang/llvm-diff/llvm-diff.1 user/attilio/vmcontention/usr.bin/clang/llvm-dis/llvm-dis.1 user/attilio/vmcontention/usr.bin/clang/llvm-extract/llvm-extract.1 user/attilio/vmcontention/usr.bin/clang/llvm-ld/Makefile user/attilio/vmcontention/usr.bin/clang/llvm-ld/llvm-ld.1 user/attilio/vmcontention/usr.bin/clang/llvm-link/llvm-link.1 user/attilio/vmcontention/usr.bin/clang/llvm-nm/llvm-nm.1 user/attilio/vmcontention/usr.bin/clang/llvm-prof/llvm-prof.1 user/attilio/vmcontention/usr.bin/clang/llvm-ranlib/llvm-ranlib.1 user/attilio/vmcontention/usr.bin/clang/opt/Makefile user/attilio/vmcontention/usr.bin/clang/opt/opt.1 user/attilio/vmcontention/usr.bin/clang/tblgen/Makefile user/attilio/vmcontention/usr.bin/clang/tblgen/tblgen.1 user/attilio/vmcontention/usr.bin/file/Makefile user/attilio/vmcontention/usr.bin/m4/eval.c user/attilio/vmcontention/usr.bin/m4/extern.h user/attilio/vmcontention/usr.bin/m4/main.c user/attilio/vmcontention/usr.bin/netstat/inet.c user/attilio/vmcontention/usr.bin/top/machine.c user/attilio/vmcontention/usr.bin/unzip/unzip.1 user/attilio/vmcontention/usr.bin/unzip/unzip.c user/attilio/vmcontention/usr.sbin/Makefile user/attilio/vmcontention/usr.sbin/lpr/lpc/cmds.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/file/ (props changed) user/attilio/vmcontention/contrib/llvm/ (props changed) user/attilio/vmcontention/contrib/llvm/tools/clang/ (props changed) user/attilio/vmcontention/contrib/openpam/ (props changed) user/attilio/vmcontention/gnu/lib/ (props changed) user/attilio/vmcontention/lib/libc/ (props changed) user/attilio/vmcontention/sbin/ (props changed) user/attilio/vmcontention/share/man/man4/ (props changed) user/attilio/vmcontention/sys/ (props changed) user/attilio/vmcontention/sys/boot/ (props changed) user/attilio/vmcontention/sys/conf/ (props changed) user/attilio/vmcontention/usr.bin/calendar/ (props changed) Modified: user/attilio/vmcontention/ObsoleteFiles.inc ============================================================================== --- user/attilio/vmcontention/ObsoleteFiles.inc Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/ObsoleteFiles.inc Fri Apr 20 00:34:15 2012 (r234475) @@ -38,6 +38,22 @@ # xargs -n1 | sort | uniq -d; # done +# 20120415: new clang import which bumps version from 3.0 to 3.1 +OLD_FILES+=usr/include/clang/3.0/altivec.h +OLD_FILES+=usr/include/clang/3.0/avxintrin.h +OLD_FILES+=usr/include/clang/3.0/emmintrin.h +OLD_FILES+=usr/include/clang/3.0/immintrin.h +OLD_FILES+=usr/include/clang/3.0/mm3dnow.h +OLD_FILES+=usr/include/clang/3.0/mm_malloc.h +OLD_FILES+=usr/include/clang/3.0/mmintrin.h +OLD_FILES+=usr/include/clang/3.0/nmmintrin.h +OLD_FILES+=usr/include/clang/3.0/pmmintrin.h +OLD_FILES+=usr/include/clang/3.0/smmintrin.h +OLD_FILES+=usr/include/clang/3.0/tmmintrin.h +OLD_FILES+=usr/include/clang/3.0/wmmintrin.h +OLD_FILES+=usr/include/clang/3.0/x86intrin.h +OLD_FILES+=usr/include/clang/3.0/xmmintrin.h +OLD_DIRS+=usr/include/clang/3.0 # 20120322: Update heimdal to 1.5.1. OLD_FILES+=usr/include/krb5-v4compat.h \ usr/include/krb_err.h \ Modified: user/attilio/vmcontention/UPDATING ============================================================================== --- user/attilio/vmcontention/UPDATING Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/UPDATING Fri Apr 20 00:34:15 2012 (r234475) @@ -19,8 +19,19 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 includes various WITNESS- related kernel options, INVARIANTS, malloc debugging flags in userland, and various verbose features in the kernel. Many developers choose to disable these features on build - machines to maximize performance. (To disable malloc debugging, run - ln -s aj /etc/malloc.conf.) + machines to maximize performance. (To completely disable malloc + debugging, define MALLOC_PRODUCTION in /etc/make.conf, or to merely + disable the most expensive debugging functionality run + "ln -s 'abort:false,junk:false' /etc/malloc.conf".) + +20120417: + The malloc(3) implementation embedded in libc now uses sources imported + as contrib/jemalloc. The most disruptive API change is to + /etc/malloc.conf. If your system has an old-style /etc/malloc.conf, + delete it prior to installworld, and optionally re-create it using the + new format after rebooting. See malloc.conf(5) for details + (specifically the TUNING section and the "opt.*" entries in the MALLCTL + NAMESPACE section). 20120328: Big-endian MIPS TARGET_ARCH values no longer end in "eb". mips64eb Modified: user/attilio/vmcontention/cddl/contrib/opensolaris/cmd/zpool/zpool.8 ============================================================================== --- user/attilio/vmcontention/cddl/contrib/opensolaris/cmd/zpool/zpool.8 Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/cddl/contrib/opensolaris/cmd/zpool/zpool.8 Fri Apr 20 00:34:15 2012 (r234475) @@ -1779,7 +1779,7 @@ The following command creates a storage pool consisting of two, two-way mirrors and mirrored log devices: .Bd -literal -offset 2n -.Li # Ic zpool create pool mirror da0 da1 mirror da2 da3 log miror da4 da5 +.Li # Ic zpool create pool mirror da0 da1 mirror da2 da3 log mirror da4 da5 .Ed .It Sy Example 14 No Adding Cache Devices to a Tn ZFS No Pool .Pp Modified: user/attilio/vmcontention/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.c ============================================================================== --- user/attilio/vmcontention/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.c Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.c Fri Apr 20 00:34:15 2012 (r234475) @@ -811,7 +811,7 @@ dt_proc_destroy(dtrace_hdl_t *dtp, struc #if defined(sun) (void) _lwp_kill(dpr->dpr_tid, SIGCANCEL); #else - pthread_kill(dpr->dpr_tid, SIGUSR1); + pthread_kill(dpr->dpr_tid, SIGTHR); #endif /* Modified: user/attilio/vmcontention/contrib/file/ChangeLog ============================================================================== --- user/attilio/vmcontention/contrib/file/ChangeLog Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/ChangeLog Fri Apr 20 00:34:15 2012 (r234475) @@ -1,3 +1,309 @@ +2012-02-20 17:33 Christos Zoulas + + * Fix CDF parsing issues found by CERT's fuzzing tool (Will Dormann) + +2011-12-15 12:17 Chris Metcalf + + * Support Tilera architectures (tile64, tilepro, tilegx). + +2011-12-16 16:33 Reuben Thomas + + * Add magic for /usr/bin/env Perl scripts + * Weaken generic script magic to avoid clashing with + language-specific magic. + +2011-12-08 13:37 Reuben Thomas + + * Simplify if (p) free(p) to free(p). + +2011-12-08 13:07 Reuben Thomas + + * Remove hardwired token finding (names.h), turning it into soft + magic. Patterns are either anchored regexs or search/8192. English + language detection and PL/1 detection have been removed as they + were too fragile. -e tokens is still accepted for backwards + compatibility. + * Move 3ds patterns (which are commented out anyway) into autodesk + (they were, oddly, in c-lang). + +2011-12-06 00:16 Reuben Thomas + + * Tweak strength of generic hash-bang detectors to be less than + specific ones. + * Make an inconsistent description of Python scripts consistent. + +2011-12-05 23:58 Reuben Thomas + + * Fix minor error in file(1). + +2011-11-05 00:00 Reuben Thomas + + * Fix issue #150 (I hope). + +2011-09-22 12:57 Christos Zoulas + + * Python3 binding fixes from Kelly Anderson + +2011-09-20 11:32 Christos Zoulas + + * If a string type magic entry is marked as text or binary + only match text files against text entries and binary + files against binary entries. + +2011-09-01 12:12 Christos Zoulas + + * Don't wait for any subprocess, just the one we forked. + +2011-08-26 16:40 Christos Zoulas + + * If the application name is not set in a cdf file, try to see + if it has a directory with the application name on it. + +2011-08-17 14:32 Christos Zoulas + + * Fix ELF lseek(2) madness. Inspired by PR/134 by Jan Kaluza + +2011-08-14 09:03 Christos Zoulas + + * Don't use variable string formats. + +2011-07-12 12:32 Reuben Thomas + + * Fix detection of Zip files (Mantis #128). + * Make some minor improvements to file(1). + * Rename MIME types for filesystem objects for consistency with + xdg-utils. Typically this means that application/x-foo becomes + inode/foo, but some names also change slightly, e.g. + application/x-character-device becomes inode/chardevice. + +2011-05-10 20:57 Christos Zoulas + + * fix mingw compilation (Abradoks) + +2011-05-10 20:57 Christos Zoulas + + * remove patchlevel.h + * Fix read past allocated memory caused by double-incrementing + a pointer in a loop (reported by Roberto Maar) + +2011-03-30 15:45 Christos Zoulas + + * Fix cdf string buffer setting (Sven Anders) + +2011-03-20 16:35 Christos Zoulas + + * Eliminate MAXPATHLEN and use dynamic allocation for + path and file buffers. + +2011-03-15 18:15 Christos Zoulas + + * binary tests on magic entries with masks could spuriously + get converted to ascii. + +2011-03-12 18:06 Reuben Thomas + + * Improve file.man (remove BUGS, present email addresses consistently). + +2011-03-07 19:38 Christos Zoulas + + * add lrzip support (from Ville Skytta) + +2011-02-10 16:36 Christos Zoulas + + * fix CDF bounds checking (Guy Helmer) + +2011-02-10 12:03 Christos Zoulas + + * add cdf_ctime() that prints a meaningful error when time cannot + be converted. + +2011-02-02 20:40 Christos Zoulas + + * help and version output to stdout. + + * When matching softmagic for ascii files, don't just print + the softmagic classification, keep going and print the + text classification too. This fixes broken troff files when + we moved them from keyword recognition to softmagic + (they stopped printing "with CRLF" etc.) + Reported by Doug McIlroy. + +2011-01-16 19:31 Reuben Thomas + + * Fix two potential buffer overruns in apprentice_list. + +2011-01-14 22:33 Reuben Thomas + + * New Python binding in pure Python. + * Update libmagic(3). + +2011-01-06 21:40 Reuben Thomas + + * Fix Python bindings (including recent Python 3 compatibility + update). + +2011-01-04 18:43 Reuben Thomas + + * magic/Makefile.am: make it easier to recover from magic build failures. + * Fix pstring length specifier parsing to avoid generating invalid + magic files. + * Add pstring length "J" (for "JPEG") to specify that the length + include itself. + * Fix JPEG comment parsing at last using pstring/HJ! + * Ignore section 5 man pages in doc/.cvsignore. + +2010-12-22 13:12 Christos Zoulas + + * Add pstring/BHhLl to specify the type of the length of pascal + strings. + +2010-11-26 18:39 Reuben Thomas + + * Fix "-e soft": it was ignored when softmagic was called + during asciimagic. + * Improve comments and use "unsigned char" in tar.h/is_tar.c. + +2010-11-05 17:26 Reuben Thomas + + * Make bug reporting addresses more visible. + +2010-11-01 18:35 Reuben Thomas + + * Add tcl magic from Gustaf Neumann + +2010-10-24 10:42 Christos Zoulas + + * Fix the whitespace comparing code (Christopher Chittleborough) + +2010-10-06 21:05 Christos Zoulas + + * allow string/t to work (Jan Kaluza) + +2010-09-20 22:11 Reuben Thomas + + * Apply some patches from Ubuntu and Fedora. + +2010-09-20 21:16 Reuben Thomas + + * Apply all patches from Debian package 5.04-6 which have not + already been applied and are not Debian-specific. + +2010-09-20 15:24 Reuben Thomas + + * Minor security fix to softmagic.c (don't use untrusted + string as printf format). + +2010-07-21 12:20 Christos Zoulas + + * MINGW32 portability from LRN + + * Don't warn about escaping magic regex chars when we are in a regex. + +2010-07-19 10:55 Christos Zoulas + + * Only try to print prpsinfo for core files. (Jan Kaluza) + +2010-04-22 12:55 Christos Zoulas + + * Try more elf offsets for Debian core files. (Arnaud Giersch) + +2010-02-20 15:18 Reuben Thomas + + * Clarify which sort of CDF we mean. + +2010-02-14 22:58 Reuben Thomas + + * Re-jig Zip file type magic so that unsupported special + Zip types (those with "mimetype" at offset 30) can be + recognized. + +2010-02-02 21:50 Reuben Thomas + + * Add support for OCF (EPUB) files (application/epub+zip) + +2010-01-28 18:25 Christos Zoulas + + * Fix core-dump from unbound loop: + https://bugzilla.redhat.com/show_bug.cgi?id=533245 + +2010-01-22 15:45 Christos Zoulas + + * print proper mime for crystal reports file + + * print the last summary information of a cdf document, not the + first so that nested documents print the right info + +2010-01-16 18:42 Charles Longeau + + * bring back some fixes from OpenBSD: + - make gcc2 builds file + - fix typos in a magic file comment + +2009-11-17 18:35 Christos Zoulas + + * ctime/asctime can return NULL on some OS's although + they should not (Toshit Antani) + +2009-09-14 13:49 Christos Zoulas + + * Centralize magic path handling routines and remove the + special-casing from file.c so that the python module for + example comes up with the same magic path (Fixes ~/.magic + handling) (from Gab) + +2009-09-11 23:38 Reuben Thomas + + * When magic argument is a directory, read the files in + strcmp-sorted order (fixes Debian bug #488562 and our own FIXME). + +2009-09-11 13:11 Reuben Thomas + + * Combine overlapping epoc and psion magic files into one (epoc). + + * Add some more EPOC MIME types. + +2009-08-19 15:55 Christos Zoulas + + * Fix 3 bugs (From Ian Darwin): + - file_showstr could move one past the end of the array + - parse_apple did not nul terminate the string in the overflow case + - parse_mime truncated the wrong string in the overflow case + +2009-08-12 12:28 Robert Byrnes + + * Include Localstuff when compiling magic. + +2009-07-15 10:05 Christos Zoulas + + * Fix logic for including mygetopts.h + + * Make cdf.c compile again with debugging + + * Add the necessary field handling for crystal reports files to work + +2009-06-23 01:34 Reuben Thomas + + * Stop "(if" identifying Lisp files, that's plain dumb! + +2009-06-09 22:13 Reuben Thomas + + * Add a couple of missing MP3 MIME types. + +2009-05-27 23:00 Reuben Thomas + + * Add full range of hash-bang tests for Python and Ruby. + + * Add MIME types for Python and Ruby scripts. + +2009-05-13 10:44 Christos Zoulas + + * off by one in parsing hw capabilities in elf + (Cheng Renquan) + +2009-05-08 13:40 Christos Zoulas + + * lint fixes and more from NetBSD + 2009-05-06 10:25 Christos Zoulas * Avoid null dereference in cdf code (Drew Yao) Modified: user/attilio/vmcontention/contrib/file/Header ============================================================================== --- user/attilio/vmcontention/contrib/file/Header Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/Header Fri Apr 20 00:34:15 2012 (r234475) @@ -1,5 +1,5 @@ -# Magic # Magic data for file(1) command. -# Machine-generated from src/cmd/file/magdir/*; edit there only! # Format is described in magic(files), where: -# files is 5 on V7 and BSD, 4 on SV, and ?? in the SVID. +# files is 5 on V7 and BSD, 4 on SV, and ?? on SVID. +# Don't edit this file, edit /etc/magic or send your magic improvements +# to the maintainers, at file@mx.gw.com Modified: user/attilio/vmcontention/contrib/file/INSTALL ============================================================================== --- user/attilio/vmcontention/contrib/file/INSTALL Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/INSTALL Fri Apr 20 00:34:15 2012 (r234475) @@ -2,18 +2,24 @@ Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, -2006 Free Software Foundation, Inc. +2006, 2007, 2008, 2009 Free Software Foundation, Inc. -This file is free documentation; the Free Software Foundation gives -unlimited permission to copy, distribute and modify it. + Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without warranty of any kind. Basic Installation ================== -Briefly, the shell commands `./configure; make; make install' should + Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for -instructions specific to this package. +instructions specific to this package. Some packages provide this +`INSTALL' file but do not implement all of the features documented +below. The lack of an optional feature in a given package is not +necessarily a bug. More recommendations for GNU packages can be found +in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses @@ -42,7 +48,7 @@ may remove or edit it. you want to change it or regenerate `configure' using a newer version of `autoconf'. -The simplest way to compile this package is: + The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. @@ -53,12 +59,22 @@ The simplest way to compile this package 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with - the package. + the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and - documentation. + documentation. When installing into a prefix owned by root, it is + recommended that the package be configured and built as a regular + user, and only the `make install' phase executed with root + privileges. + + 5. Optionally, type `make installcheck' to repeat any self-tests, but + this time using the binaries in their final installed location. + This target does not install anything. Running this target as a + regular user, particularly if the prior `make install' required + root privileges, verifies that the installation completed + correctly. - 5. You can remove the program binaries and object files from the + 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is @@ -67,12 +83,22 @@ The simplest way to compile this package all sorts of other programs in order to regenerate files that came with the distribution. + 7. Often, you can also type `make uninstall' to remove the installed + files again. In practice, not all packages have tested that + uninstallation works correctly, even though it is required by the + GNU Coding Standards. + + 8. Some packages, particularly those that use Automake, provide `make + distcheck', which can by used by developers to test that all other + targets like `make install' and `make uninstall' work correctly. + This target is generally not run by end users. + Compilers and Options ===================== -Some systems require unusual options for compilation or linking that the -`configure' script does not know about. Run `./configure --help' for -details on some of the pertinent environment variables. + Some systems require unusual options for compilation or linking that +the `configure' script does not know about. Run `./configure --help' +for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here @@ -85,25 +111,41 @@ is an example: Compiling For Multiple Architectures ==================================== -You can compile the package for more than one kind of computer at the + You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the -source code in the directory that `configure' is in and in `..'. +source code in the directory that `configure' is in and in `..'. This +is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. + On MacOS X 10.5 and later systems, you can create libraries and +executables that work on multiple system types--known as "fat" or +"universal" binaries--by specifying multiple `-arch' options to the +compiler but only a single `-arch' option to the preprocessor. Like +this: + + ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CPP="gcc -E" CXXCPP="g++ -E" + + This is not guaranteed to produce working output in all cases, you +may have to build one architecture at a time and combine the results +using the `lipo' tool if you have problems. + Installation Names ================== -By default, `make install' installs the package's commands under + By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving -`configure' the option `--prefix=PREFIX'. +`configure' the option `--prefix=PREFIX', where PREFIX must be an +absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you @@ -114,16 +156,47 @@ Documentation and other data files still In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories -you can set and what kinds of files go in them. +you can set and what kinds of files go in them. In general, the +default for these options is expressed in terms of `${prefix}', so that +specifying just `--prefix' will affect all of the other directory +specifications that were not explicitly provided. + + The most portable way to affect installation locations is to pass the +correct locations to `configure'; however, many packages provide one or +both of the following shortcuts of passing variable assignments to the +`make install' command line to change installation locations without +having to reconfigure or recompile. + + The first method involves providing an override variable for each +affected directory. For example, `make install +prefix=/alternate/directory' will choose an alternate location for all +directory configuration variables that were expressed in terms of +`${prefix}'. Any directories that were specified during `configure', +but not in terms of `${prefix}', must each be overridden at install +time for the entire installation to be relocated. The approach of +makefile variable overrides for each directory variable is required by +the GNU Coding Standards, and ideally causes no recompilation. +However, some platforms have known limitations with the semantics of +shared libraries that end up requiring recompilation when using this +method, particularly noticeable in packages that use GNU Libtool. + + The second method involves providing the `DESTDIR' variable. For +example, `make install DESTDIR=/alternate/directory' will prepend +`/alternate/directory' before all installation names. The approach of +`DESTDIR' overrides is not required by the GNU Coding Standards, and +does not work on platforms that have drive letters. On the other hand, +it does better at avoiding recompilation issues, and works well even +when some directory options were not specified in terms of `${prefix}' +at `configure' time. + +Optional Features +================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. -Optional Features -================= - -Some packages pay attention to `--enable-FEATURE' options to + Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The @@ -135,14 +208,53 @@ find the X include and library files aut you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. + Some packages offer the ability to configure how verbose the +execution of `make' will be. For these packages, running `./configure +--enable-silent-rules' sets the default to minimal output, which can be +overridden with `make V=1'; while running `./configure +--disable-silent-rules' sets the default to verbose, which can be +overridden with `make V=0'. + +Particular systems +================== + + On HP-UX, the default C compiler is not ANSI C compatible. If GNU +CC is not installed, it is recommended to use the following options in +order to use an ANSI C compiler: + + ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" + +and if that doesn't work, install pre-built binaries of GCC for HP-UX. + + On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot +parse its `' header file. The option `-nodtk' can be used as +a workaround. If GNU CC is not installed, it is therefore recommended +to try + + ./configure CC="cc" + +and if that doesn't work, try + + ./configure CC="cc -nodtk" + + On Solaris, don't put `/usr/ucb' early in your `PATH'. This +directory contains several dysfunctional programs; working variants of +these programs are available in `/usr/bin'. So, if you need `/usr/ucb' +in your `PATH', put it _after_ `/usr/bin'. + + On Haiku, software installed for all users goes in `/boot/common', +not `/usr/local'. It is recommended to use the following options: + + ./configure --prefix=/boot/common + Specifying the System Type ========================== -There may be some features `configure' cannot figure out automatically, -but needs to determine by the type of machine the package will run on. -Usually, assuming the package is built to be run on the _same_ -architectures, `configure' can figure that out, but if it prints a -message saying it cannot guess the machine type, give it the + There may be some features `configure' cannot figure out +automatically, but needs to determine by the type of machine the package +will run on. Usually, assuming the package is built to be run on the +_same_ architectures, `configure' can figure that out, but if it prints +a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: @@ -150,7 +262,8 @@ type, such as `sun4', or a canonical nam where SYSTEM can have one of these forms: - OS KERNEL-OS + OS + KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't @@ -168,9 +281,9 @@ eventually be run) with `--host=TYPE'. Sharing Defaults ================ -If you want to set default values for `configure' scripts to share, you -can create a site shell script called `config.site' that gives default -values for variables like `CC', `cache_file', and `prefix'. + If you want to set default values for `configure' scripts to share, +you can create a site shell script called `config.site' that gives +default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. @@ -179,7 +292,7 @@ A warning: not all `configure' scripts l Defining Variables ================== -Variables not defined in a site shell script can be set in the + Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set @@ -198,11 +311,19 @@ an Autoconf bug. Until the bug is fixed `configure' Invocation ====================== -`configure' recognizes the following options to control how it operates. + `configure' recognizes the following options to control how it +operates. `--help' `-h' - Print a summary of the options to `configure', and exit. + Print a summary of all of the options to `configure', and exit. + +`--help=short' +`--help=recursive' + Print a summary of the options unique to this package's + `configure', and exit. The `short' variant lists options used + only in the top level, while the `recursive' variant lists options + also present in any nested packages. `--version' `-V' @@ -229,6 +350,16 @@ an Autoconf bug. Until the bug is fixed Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. +`--prefix=DIR' + Use DIR as the installation prefix. *note Installation Names:: + for more details, including other options available for fine-tuning + the installation locations. + +`--no-create' +`-n' + Run the configure checks, but stop before creating any output + files. + `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. Modified: user/attilio/vmcontention/contrib/file/Magdir/acorn ============================================================================== --- user/attilio/vmcontention/contrib/file/Magdir/acorn Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/Magdir/acorn Fri Apr 20 00:34:15 2012 (r234475) @@ -1,4 +1,6 @@ + #------------------------------------------------------------------------------ +# $File: acorn,v 1.5 2009/09/19 16:28:07 christos Exp $ # acorn: file(1) magic for files found on Acorn systems # Modified: user/attilio/vmcontention/contrib/file/Magdir/adi ============================================================================== --- user/attilio/vmcontention/contrib/file/Magdir/adi Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/Magdir/adi Fri Apr 20 00:34:15 2012 (r234475) @@ -1,5 +1,6 @@ #------------------------------------------------------------------------------ +# $File: adi,v 1.4 2009/09/19 16:28:07 christos Exp $ # adi: file(1) magic for ADi's objects # From Gregory McGarry # Modified: user/attilio/vmcontention/contrib/file/Magdir/adventure ============================================================================== --- user/attilio/vmcontention/contrib/file/Magdir/adventure Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/Magdir/adventure Fri Apr 20 00:34:15 2012 (r234475) @@ -1,5 +1,6 @@ #------------------------------------------------------------------------------ +# $File: adventure,v 1.13 2010/12/31 16:32:54 christos Exp $ # adventure: file(1) magic for Adventure game files # # from Allen Garvin @@ -16,18 +17,26 @@ # Infocom (see z-machine) #------------------------------------------------------------------------------ # Z-machine: file(1) magic for Z-machine binaries. +# Updated by Adam Buchbinder # -# This will match ${TEX_BASE}/texmf/omega/ocp/char2uni/inbig5.ocp which -# appears to be a version-0 Z-machine binary. -# -# The (false match) message is to correct that behavior. Perhaps it is -# not needed. -# -16 belong&0xfe00f0f0 0x3030 Infocom game data ->0 ubyte 0 (false match) ->0 ubyte >0 (Z-machine %d, ->>2 ubeshort x Release %d / ->>18 string >\0 Serial %.6s) +#http://www.gnelson.demon.co.uk/zspec/sect11.html +#http://www.jczorkmid.net/~jpenney/ZSpec11-latest.txt +#http://en.wikipedia.org/wiki/Z-machine +# The first byte is the Z-machine revision; it is always between 1 and 8. We +# had false matches (for instance, inbig5.ocp from the Omega TeX extension as +# well as an occasional MP3 file), so we sanity-check the version number. +# +# It might be possible to sanity-check the release number as well, as it seems +# (at least in classic Infocom games) to always be a relatively small number, +# always under 150 or so, but as this isn't rigorous, we'll wait on that until +# it becomes clear that it's needed. +# +0 ubyte >0 +>0 ubyte <9 +>>16 belong&0xfe00f0f0 0x3030 Infocom game data +>>>0 ubyte x (Z-machine %d, +>>>>2 ubeshort x Release %d / +>>>>18 string >\0 Serial %.6s) #------------------------------------------------------------------------------ # Glulx: file(1) magic for Glulx binaries. @@ -45,10 +54,9 @@ # For Quetzal and blorb magic see iff -# TADS (Text Adventure Development System) +# TADS (Text Adventure Development System) version 2 # All files are machine-independent (games compile to byte-code) and are tagged -# with a version string of the form "V2..\0" (but TADS 3 is -# on the way). +# with a version string of the form "V2..\0". # Game files start with "TADS2 bin\n\r\032\0" then the compiler version. 0 string TADS2\ bin TADS >9 belong !0x0A0D1A00 game data, CORRUPTED @@ -73,6 +81,19 @@ >10 belong 0x0A0D1A00 >>14 string >\0 %s saved game data +# TADS (Text Adventure Development System) version 3 +# Game files start with "T3-image\015\012\032" +0 string T3-image\015\012\032 +>11 leshort x TADS 3 game data (format version %d) +# Saved game files start with "T3-state-v####\015\012\032" +# where #### is a format version number +0 string T3-state-v +>14 string \015\012\032 TADS 3 saved game data (format version +>>10 byte x %c +>>11 byte x \b%c +>>12 byte x \b%c +>>13 byte x \b%c) + # Danny Milosavljevic # this are adrift (adventure game standard) game files, extension .taf # depending on version magic continues with 0x93453E6139FA (V 4.0) Modified: user/attilio/vmcontention/contrib/file/Magdir/allegro ============================================================================== --- user/attilio/vmcontention/contrib/file/Magdir/allegro Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/Magdir/allegro Fri Apr 20 00:34:15 2012 (r234475) @@ -1,4 +1,6 @@ + #------------------------------------------------------------------------------ +# $File: allegro,v 1.4 2009/09/19 16:28:07 christos Exp $ # allegro: file(1) magic for Allegro datafiles # Toby Deshane # Modified: user/attilio/vmcontention/contrib/file/Magdir/alliant ============================================================================== --- user/attilio/vmcontention/contrib/file/Magdir/alliant Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/Magdir/alliant Fri Apr 20 00:34:15 2012 (r234475) @@ -1,5 +1,6 @@ #------------------------------------------------------------------------------ +# $File: alliant,v 1.7 2009/09/19 16:28:07 christos Exp $ # alliant: file(1) magic for Alliant FX series a.out files # # If the FX series is the one that had a processor with a 68K-derived Modified: user/attilio/vmcontention/contrib/file/Magdir/amanda ============================================================================== --- user/attilio/vmcontention/contrib/file/Magdir/amanda Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/Magdir/amanda Fri Apr 20 00:34:15 2012 (r234475) @@ -1,4 +1,6 @@ + #------------------------------------------------------------------------------ +# $File: amanda,v 1.5 2009/09/19 16:28:07 christos Exp $ # amanda: file(1) magic for amanda file format # 0 string AMANDA:\ AMANDA Modified: user/attilio/vmcontention/contrib/file/Magdir/amigaos ============================================================================== --- user/attilio/vmcontention/contrib/file/Magdir/amigaos Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/Magdir/amigaos Fri Apr 20 00:34:15 2012 (r234475) @@ -1,4 +1,6 @@ + #------------------------------------------------------------------------------ +# $File: amigaos,v 1.14 2009/09/19 16:28:07 christos Exp $ # amigaos: file(1) magic for AmigaOS binary formats: # Modified: user/attilio/vmcontention/contrib/file/Magdir/animation ============================================================================== --- user/attilio/vmcontention/contrib/file/Magdir/animation Thu Apr 19 23:04:35 2012 (r234474) +++ user/attilio/vmcontention/contrib/file/Magdir/animation Fri Apr 20 00:34:15 2012 (r234475) @@ -1,5 +1,6 @@ #------------------------------------------------------------------------------ +# $File: animation,v 1.45 2011/09/06 11:00:06 christos Exp $ # animation: file(1) magic for animation/movie formats # # animation formats @@ -29,7 +30,7 @@ #!:mime image/x-quicktime 4 string pckg Apple QuickTime compressed archive !:mime application/x-quicktime-player -4 string/B jP JPEG 2000 image +4 string/W jP JPEG 2000 image !:mime image/jp2 4 string ftyp ISO Media >8 string isom \b, MPEG v4 system, version 1 @@ -41,10 +42,18 @@ !:mime video/mp4 >8 string mp7t \b, MPEG v4 system, MPEG v7 XML >8 string mp7b \b, MPEG v4 system, MPEG v7 binary XML ->8 string/B jp2 \b, JPEG 2000 +>8 string/W jp2 \b, JPEG 2000 !:mime image/jp2 +>8 string 3ge \b, MPEG v4 system, 3GPP +!:mime video/3gpp +>8 string 3gg \b, MPEG v4 system, 3GPP +!:mime video/3gpp >8 string 3gp \b, MPEG v4 system, 3GPP !:mime video/3gpp +>8 string 3gs \b, MPEG v4 system, 3GPP +!:mime video/3gpp +>8 string 3g2 \b, MPEG v4 system, 3GPP2 +!:mime video/3gpp2 >>11 byte 4 \b v4 (H.263/AMR GSM 6.10) >>11 byte 5 \b v5 (H.263/AMR GSM 6.10) >>11 byte 6 \b v6 (ITU H.264/AMR GSM 6.10) @@ -52,13 +61,13 @@ !:mime video/mp4 >8 string avc1 \b, MPEG v4 system, 3GPP JVT AVC !:mime video/3gpp ->8 string/B M4A \b, MPEG v4 system, iTunes AAC-LC +>8 string/W M4A \b, MPEG v4 system, iTunes AAC-LC !:mime audio/mp4 ->8 string/B M4V \b, MPEG v4 system, iTunes AVC-LC +>8 string/W M4V \b, MPEG v4 system, iTunes AVC-LC !:mime video/mp4 ->8 string/B M4P \b, MPEG v4 system, iTunes AES encrypted ->8 string/B M4B \b, MPEG v4 system, iTunes bookmarked ->8 string/B qt \b, Apple QuickTime movie +>8 string/W M4P \b, MPEG v4 system, iTunes AES encrypted +>8 string/W M4B \b, MPEG v4 system, iTunes bookmarked +>8 string/W qt \b, Apple QuickTime movie !:mime video/quicktime # MPEG sequences @@ -71,6 +80,7 @@ >>7 byte x \b @ L %u 0 belong&0xFFFFFF00 0x00000100 >3 byte 0xBA MPEG sequence +!:mime video/mpeg >>4 byte &0x40 \b, v2, program multiplex >>4 byte ^0x40 \b, v1, system multiplex >3 byte 0xBB MPEG sequence, v1/2, multiplex (missing pack header) @@ -80,6 +90,7 @@ >>4 byte 88 \b, extended >>6 byte x \b @ L %u >3 byte 0xB0 MPEG sequence, v4 +!:mime video/mpeg4-generic >>5 belong 0x000001B5 >>>9 byte &0x80 >>>>10 byte&0xF0 16 \b, video @@ -149,6 +160,7 @@ >>4 byte 252 \b, FGS @ L4 >>4 byte 253 \b, FGS @ L5 >3 byte 0xB5 MPEG sequence, v4 +!:mime video/mpeg4-generic >>4 byte &0x80 >>>5 byte&0xF0 16 \b, video (missing profile header) >>>5 byte&0xF0 32 \b, still texture (missing profile header) @@ -159,6 +171,7 @@ >>4 byte&0xF8 24 \b, mesh (missing profile header) >>4 byte&0xF8 32 \b, face (missing profile header) >3 byte 0xB3 MPEG sequence +!:mime video/mpeg >>12 belong 0x000001B8 \b, v1, progressive Y'CbCr 4:2:0 video >>12 belong 0x000001B2 \b, v1, progressive Y'CbCr 4:2:0 video >>12 belong 0x000001B5 \b, v2, @@ -469,6 +482,7 @@ # MPA, M2A 0 beshort&0xFFFE 0xFFF6 MPEG ADTS, layer I, v2 +!:mime audio/mpeg # rate >2 byte&0xF0 0x10 \b, 32 kbps >2 byte&0xF0 0x20 \b, 48 kbps @@ -503,6 +517,7 @@ # MP3, M25A 0 beshort&0xFFFE 0xFFE2 MPEG ADTS, layer III, v2.5 +!:mime audio/mpeg # rate >2 byte&0xF0 0x10 \b, 8 kbps >2 byte&0xF0 0x20 \b, 16 kbps @@ -697,6 +712,7 @@ # Microsoft Advanced Streaming Format (ASF) 0 belong 0x3026b275 Microsoft ASF +!:mime video/x-ms-asf # MNG Video Format, 0 string \x8aMNG MNG video data, @@ -718,16 +734,16 @@ 3 string \x0D\x0AVersion:Vivo Vivo video data # VRML (Virtual Reality Modelling Language) -0 string/b #VRML\ V1.0\ ascii VRML 1 file +0 string/w #VRML\ V1.0\ ascii VRML 1 file !:mime model/vrml -0 string/b #VRML\ V2.0\ utf8 ISO/IEC 14772 VRML 97 file +0 string/w #VRML\ V2.0\ utf8 ISO/IEC 14772 VRML 97 file !:mime model/vrml # X3D (Extensible 3D) [http://www.web3d.org/specifications/x3d-3.0.dtd] # From Michel Briand -0 string \20 search/1000/cb \20 search/1000/cw \ 2008-07-18 0 string BIK Bink Video >3 regex =[a-z] rev.%s @@ -813,3 +830,66 @@ >>51 byte&0x20 !0 stereo #>>51 byte&0x10 0 FFT #>>51 byte&0x10 !0 DCT + +# Type: NUT Container *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Fri Apr 20 07:24:55 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CE271065688; Fri, 20 Apr 2012 07:24:55 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 308348FC17; Fri, 20 Apr 2012 07:24: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 q3K7Otfw027812; Fri, 20 Apr 2012 07:24:55 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3K7OsWk027810; Fri, 20 Apr 2012 07:24:54 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204200724.q3K7OsWk027810@svn.freebsd.org> From: Navdeep Parhar Date: Fri, 20 Apr 2012 07:24: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: r234484 - user/np/toe_iwarp/sys/modules/cxgb 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, 20 Apr 2012 07:24:55 -0000 Author: np Date: Fri Apr 20 07:24:54 2012 New Revision: 234484 URL: http://svn.freebsd.org/changeset/base/234484 Log: Fix typo. Modified: user/np/toe_iwarp/sys/modules/cxgb/Makefile Modified: user/np/toe_iwarp/sys/modules/cxgb/Makefile ============================================================================== --- user/np/toe_iwarp/sys/modules/cxgb/Makefile Fri Apr 20 07:00:28 2012 (r234483) +++ user/np/toe_iwarp/sys/modules/cxgb/Makefile Fri Apr 20 07:24:54 2012 (r234484) @@ -1,4 +1,4 @@ - $FreeBSD$ +# $FreeBSD$ SUBDIR= cxgb SUBDIR+= cxgb_t3fw SUBDIR+= tom From owner-svn-src-user@FreeBSD.ORG Fri Apr 20 16:51:57 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75D0A106564A; Fri, 20 Apr 2012 16:51:57 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 61F148FC08; Fri, 20 Apr 2012 16:51:57 +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 q3KGpvSZ047648; Fri, 20 Apr 2012 16:51:57 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3KGpvBr047646; Fri, 20 Apr 2012 16:51:57 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204201651.q3KGpvBr047646@svn.freebsd.org> From: Navdeep Parhar Date: Fri, 20 Apr 2012 16:51:57 +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: r234498 - user/np/toe_iwarp/sys/netinet 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, 20 Apr 2012 16:51:57 -0000 Author: np Date: Fri Apr 20 16:51:56 2012 New Revision: 234498 URL: http://svn.freebsd.org/changeset/base/234498 Log: Return once the data has been handled over for output. Modified: user/np/toe_iwarp/sys/netinet/tcp_output.c Modified: user/np/toe_iwarp/sys/netinet/tcp_output.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/tcp_output.c Fri Apr 20 16:20:16 2012 (r234497) +++ user/np/toe_iwarp/sys/netinet/tcp_output.c Fri Apr 20 16:51:56 2012 (r234498) @@ -196,7 +196,7 @@ tcp_output(struct tcpcb *tp) #ifdef TCP_OFFLOAD if (tp->t_flags & TF_TOE) - tcp_offload_output(tp); + return (tcp_offload_output(tp)); #endif /* From owner-svn-src-user@FreeBSD.ORG Fri Apr 20 16:53:55 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D1D8106564A; Fri, 20 Apr 2012 16:53:55 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1784E8FC12; Fri, 20 Apr 2012 16:53: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 q3KGrseD047740; Fri, 20 Apr 2012 16:53:54 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3KGrsTA047738; Fri, 20 Apr 2012 16:53:54 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204201653.q3KGrsTA047738@svn.freebsd.org> From: Navdeep Parhar Date: Fri, 20 Apr 2012 16:53: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: r234499 - user/np/toe_iwarp/sys/ofed/drivers/infiniband/core 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, 20 Apr 2012 16:53:55 -0000 Author: np Date: Fri Apr 20 16:53:54 2012 New Revision: 234499 URL: http://svn.freebsd.org/changeset/base/234499 Log: Connection manager should allocate sockets on FreeBSD. Obtained from: Chelsio Modified: user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/cma.c Modified: user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/cma.c ============================================================================== --- user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/cma.c Fri Apr 20 16:51:56 2012 (r234498) +++ user/np/toe_iwarp/sys/ofed/drivers/infiniband/core/cma.c Fri Apr 20 16:53:54 2012 (r234499) @@ -59,10 +59,10 @@ static int tavor_quirk = 0; module_param_named(tavor_quirk, tavor_quirk, int, 0644); MODULE_PARM_DESC(tavor_quirk, "Tavor performance quirk: limit MTU to 1K if > 0"); -int unify_tcp_port_space = 0; +int unify_tcp_port_space = 1; module_param(unify_tcp_port_space, int, 0644); MODULE_PARM_DESC(unify_tcp_port_space, "Unify the host TCP and RDMA port " - "space allocation (default=0)"); + "space allocation (default=1)"); #define CMA_CM_RESPONSE_TIMEOUT 20 #define CMA_MAX_CM_RETRIES 15 @@ -2257,6 +2257,12 @@ static int cma_get_tcp_port(struct rdma_ sock_release(sock); return ret; } +/* + * sock_getname does not seem to work here and it seems more similar to getpeername. + * Instead something like kern_getsockname should be used. Till that change is done + * lets disable the below code. + */ +#if 0 size = ip_addr_size((struct sockaddr *) &id_priv->id.route.addr.src_addr); ret = sock_getname(sock, (struct sockaddr *) &id_priv->id.route.addr.src_addr, @@ -2265,6 +2271,7 @@ static int cma_get_tcp_port(struct rdma_ sock_release(sock); return ret; } +#endif id_priv->sock = sock; return 0; } From owner-svn-src-user@FreeBSD.ORG Fri Apr 20 16:56:14 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E359D1065672; Fri, 20 Apr 2012 16:56:14 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CF8578FC0A; Fri, 20 Apr 2012 16:56:14 +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 q3KGuEHn047855; Fri, 20 Apr 2012 16:56:14 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3KGuE5H047853; Fri, 20 Apr 2012 16:56:14 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201204201656.q3KGuE5H047853@svn.freebsd.org> From: Navdeep Parhar Date: Fri, 20 Apr 2012 16:56:14 +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: r234500 - user/np/toe_iwarp/sys/netinet 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, 20 Apr 2012 16:56:15 -0000 Author: np Date: Fri Apr 20 16:56:14 2012 New Revision: 234500 URL: http://svn.freebsd.org/changeset/base/234500 Log: Avoid arming the TT_KEEP timer for TCP/IPv6 TOE active open too, just like for TCP/IP. Modified: user/np/toe_iwarp/sys/netinet/tcp_usrreq.c Modified: user/np/toe_iwarp/sys/netinet/tcp_usrreq.c ============================================================================== --- user/np/toe_iwarp/sys/netinet/tcp_usrreq.c Fri Apr 20 16:53:54 2012 (r234499) +++ user/np/toe_iwarp/sys/netinet/tcp_usrreq.c Fri Apr 20 16:56:14 2012 (r234500) @@ -553,6 +553,7 @@ tcp6_usr_connect(struct socket *so, stru (error = tcp_offload_connect(so, nam)) == 0) goto out; #endif + tcp_timer_activate(tp, TT_KEEP, TP_KEEPINIT(tp)); error = tcp_output(tp); out: @@ -1218,7 +1219,6 @@ tcp6_connect(struct tcpcb *tp, struct so soisconnecting(so); TCPSTAT_INC(tcps_connattempt); tp->t_state = TCPS_SYN_SENT; - tcp_timer_activate(tp, TT_KEEP, TP_KEEPINIT(tp)); tp->iss = tcp_new_isn(tp); tcp_sendseqinit(tp); From owner-svn-src-user@FreeBSD.ORG Sat Apr 21 00:32:56 2012 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 B2D07106564A; Sat, 21 Apr 2012 00:32:56 +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 9EF5B8FC14; Sat, 21 Apr 2012 00:32: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 q3L0Wu9T063007; Sat, 21 Apr 2012 00:32:56 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3L0Wud6063005; Sat, 21 Apr 2012 00:32:56 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201204210032.q3L0Wud6063005@svn.freebsd.org> From: Attilio Rao Date: Sat, 21 Apr 2012 00:32:56 +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: r234522 - user/attilio/vmcontention/sys/vm 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, 21 Apr 2012 00:32:56 -0000 Author: attilio Date: Sat Apr 21 00:32:56 2012 New Revision: 234522 URL: http://svn.freebsd.org/changeset/base/234522 Log: Fix a brain-o. vm_page_lookup_cache() is not exported and cannot be used arbitrarely. Reported by: pho Modified: user/attilio/vmcontention/sys/vm/vm_mmap.c Modified: user/attilio/vmcontention/sys/vm/vm_mmap.c ============================================================================== --- user/attilio/vmcontention/sys/vm/vm_mmap.c Sat Apr 21 00:28:29 2012 (r234521) +++ user/attilio/vmcontention/sys/vm/vm_mmap.c Sat Apr 21 00:32:56 2012 (r234522) @@ -81,6 +81,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #ifdef HWPMC_HOOKS @@ -887,11 +888,13 @@ RestartScan: object->type == OBJT_VNODE) { pindex = OFF_TO_IDX(current->offset + (addr - current->start)); - m = vm_page_lookup(object, pindex); + m = vm_radix_lookup(&object->rtree, + pindex, VM_RADIX_ANY); + + /* Lock just for consistency. */ mtx_lock(&vm_page_queue_free_mtx); - if (m == NULL && - vm_page_cache_lookup(object, - pindex) != NULL) + if (m != NULL && + (m->flags & PG_CACHED) != 0) mincoreinfo = MINCORE_INCORE; mtx_unlock(&vm_page_queue_free_mtx); if (m != NULL && m->valid == 0) From owner-svn-src-user@FreeBSD.ORG Sat Apr 21 05:26:02 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D52301065672; Sat, 21 Apr 2012 05:26:02 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A7E8E8FC14; Sat, 21 Apr 2012 05:26: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 q3L5Q2ou073074; Sat, 21 Apr 2012 05:26:02 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3L5Q2Ek073073; Sat, 21 Apr 2012 05:26:02 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201204210526.q3L5Q2Ek073073@svn.freebsd.org> From: Warner Losh Date: Sat, 21 Apr 2012 05:26: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: r234527 - user/imp/ext_comp 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, 21 Apr 2012 05:26:02 -0000 Author: imp Date: Sat Apr 21 05:26:02 2012 New Revision: 234527 URL: http://svn.freebsd.org/changeset/base/234527 Log: Create a tree for publishing my external compiler patches... Added: - copied from r234526, head/ Directory Properties: user/imp/ext_comp/ (props changed) From owner-svn-src-user@FreeBSD.ORG Sat Apr 21 06:29:45 2012 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 109E5106566B; Sat, 21 Apr 2012 06:29:45 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F114A8FC12; Sat, 21 Apr 2012 06:29:44 +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 q3L6TilV075140; Sat, 21 Apr 2012 06:29:44 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3L6Ti2a075138; Sat, 21 Apr 2012 06:29:44 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201204210629.q3L6Ti2a075138@svn.freebsd.org> From: Hiroki Sato Date: Sat, 21 Apr 2012 06:29:44 +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: r234532 - user/hrs/ipv6/sys/dev/usb 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, 21 Apr 2012 06:29:45 -0000 Author: hrs Date: Sat Apr 21 06:29:44 2012 New Revision: 234532 URL: http://svn.freebsd.org/changeset/base/234532 Log: - Fix ifname matching. - Return non-zero status when unit < 0. Modified: user/hrs/ipv6/sys/dev/usb/usb_pf.c Modified: user/hrs/ipv6/sys/dev/usb/usb_pf.c ============================================================================== --- user/hrs/ipv6/sys/dev/usb/usb_pf.c Sat Apr 21 06:10:18 2012 (r234531) +++ user/hrs/ipv6/sys/dev/usb/usb_pf.c Sat Apr 21 06:29:44 2012 (r234532) @@ -129,7 +129,7 @@ usbpf_ifname2ubus(const char *ifname) int unit; int error; - if (strncmp(ifname, USBUSNAME, sizeof(USBUSNAME)) <= 0) + if (strncmp(ifname, USBUSNAME, sizeof(USBUSNAME) - 1) != 0) return (NULL); error = ifc_name2unit(ifname, &unit); if (error || unit < 0) @@ -167,8 +167,10 @@ usbpf_clone_create(struct if_clone *ifc, struct usb_bus *ubus; error = ifc_name2unit(name, &unit); - if (error || unit < 0) + if (error) return (error); + if (unit < 0) + return (EINVAL); ubus = usbpf_ifname2ubus(name); if (ubus == NULL) From owner-svn-src-user@FreeBSD.ORG Sat Apr 21 15:35:58 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E93A106564A; Sat, 21 Apr 2012 15:35:58 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 018FA8FC0A; Sat, 21 Apr 2012 15:35:58 +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 q3LFZvah094031; Sat, 21 Apr 2012 15:35:57 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3LFZv6A094030; Sat, 21 Apr 2012 15:35:57 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201204211535.q3LFZv6A094030@svn.freebsd.org> From: Warner Losh Date: Sat, 21 Apr 2012 15:35:57 +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: r234544 - user/imp/ext_comp 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, 21 Apr 2012 15:35:58 -0000 Author: imp Date: Sat Apr 21 15:35:57 2012 New Revision: 234544 URL: http://svn.freebsd.org/changeset/base/234544 Log: revert -- sorry for the noise Deleted: user/imp/ext_comp/ From owner-svn-src-user@FreeBSD.ORG Sat Apr 21 15:37:39 2012 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 47125106566B; Sat, 21 Apr 2012 15:37:39 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 185DE8FC12; Sat, 21 Apr 2012 15:37:39 +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 q3LFbcxQ094115; Sat, 21 Apr 2012 15:37:38 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3LFbc72094114; Sat, 21 Apr 2012 15:37:38 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201204211537.q3LFbc72094114@svn.freebsd.org> From: Warner Losh Date: Sat, 21 Apr 2012 15:37:38 +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: r234545 - user/imp/extern_cc 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, 21 Apr 2012 15:37:39 -0000 Author: imp Date: Sat Apr 21 15:37:38 2012 New Revision: 234545 URL: http://svn.freebsd.org/changeset/base/234545 Log: another attempt to create branch for external compiler patches. Added: - copied from r234544, head/ Directory Properties: user/imp/extern_cc/ (props changed) From owner-svn-src-user@FreeBSD.ORG Sat Apr 21 16:07:11 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C60971065673; Sat, 21 Apr 2012 16:07:11 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B16788FC08; Sat, 21 Apr 2012 16:07: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 q3LG7B76095098; Sat, 21 Apr 2012 16:07:11 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3LG7BCm095096; Sat, 21 Apr 2012 16:07:11 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201204211607.q3LG7BCm095096@svn.freebsd.org> From: Warner Losh Date: Sat, 21 Apr 2012 16:07: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: r234547 - user/imp/extern_cc/gnu/lib/libgcc 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, 21 Apr 2012 16:07:11 -0000 Author: imp Date: Sat Apr 21 16:07:11 2012 New Revision: 234547 URL: http://svn.freebsd.org/changeset/base/234547 Log: integrate from head@234546 Modified: user/imp/extern_cc/gnu/lib/libgcc/Makefile Directory Properties: user/imp/extern_cc/ (props changed) user/imp/extern_cc/gnu/lib/ (props changed) Modified: user/imp/extern_cc/gnu/lib/libgcc/Makefile ============================================================================== --- user/imp/extern_cc/gnu/lib/libgcc/Makefile Sat Apr 21 16:02:00 2012 (r234546) +++ user/imp/extern_cc/gnu/lib/libgcc/Makefile Sat Apr 21 16:07:11 2012 (r234547) @@ -276,7 +276,7 @@ ${ASM_S}: ${LIB1ASMSRC} ${ASM_V}: ${LIB1ASMSRC} ${CC} -x assembler-with-cpp -c ${CFLAGS} -DL${.PREFIX} \ -o ${.PREFIX}.vo ${.ALLSRC:N*.h} - ( nm -pg ${.PREFIX}.vo | \ + ( ${NM} -pg ${.PREFIX}.vo | \ awk 'NF == 3 && $$2 !~ /^[UN]$$/ { print "\t.hidden ", $$3 }'\ ) > ${.TARGET} @@ -325,7 +325,7 @@ SHLIB_MAPFILES = ${GCCDIR}/libgcc-std. VERSION_MAP = libgcc.map libgcc.map: ${SHLIB_MKMAP} ${SHLIB_MAPFILES} ${SOBJS} ${OBJS:R:S/$/.So/} - ( nm -pg ${SOBJS};echo %% ; \ + ( ${NM} -pg ${SOBJS};echo %% ; \ cat ${SHLIB_MAPFILES} \ | sed -e '/^[ ]*#/d' \ -e 's/^%\(if\|else\|elif\|endif\|define\)/#\1/' \ From owner-svn-src-user@FreeBSD.ORG Sat Apr 21 16:27:51 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 90FFA1065670; Sat, 21 Apr 2012 16:27:51 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 796138FC0A; Sat, 21 Apr 2012 16:27:51 +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 q3LGRpCu095758; Sat, 21 Apr 2012 16:27:51 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3LGRp5X095740; Sat, 21 Apr 2012 16:27:51 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201204211627.q3LGRp5X095740@svn.freebsd.org> From: Warner Losh Date: Sat, 21 Apr 2012 16:27:51 +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: r234548 - in user/imp/extern_cc: . contrib/binutils contrib/binutils/bfd gnu/usr.bin/binutils gnu/usr.bin/binutils/as gnu/usr.bin/binutils/ld gnu/usr.bin/binutils/libbfd gnu/usr.bin/cc ... 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, 21 Apr 2012 16:27:51 -0000 Author: imp Date: Sat Apr 21 16:27:50 2012 New Revision: 234548 URL: http://svn.freebsd.org/changeset/base/234548 Log: Two, unrelated patches intermerged (sorry) o Add support for TARGET_ARCH=armv6. This is just the compile phase and hasn't done things like get uname to return armv6. o Add support for external compilers: - Define EXT_COMP to be the prefix to prepend to the normal commands (either the full path or just armv6-freebsd-) - Some things don't work: KERBEROS and RESCUE. To test it out: o sudo make xdev XDEV=arm XDEV_ARCH=armv6 o make buildworld WITHOUT_RESCUE=y WITHOUT_KERBEROS=y TARGET=arm TARGET_ARCH=armv6 Things missing: o We still build some tools we don't need to. o Really need to have a SYSTEM_COMPILER={gcc,clang,external} to make this nicer. In fact, we may need gcc42, gcc43, etc to get the warnings flags right (or GCC_VERSION and CLANG_VERSION). o crunchgen is busted in this configuration. I fixed one thing, but it needs more love for rescue to work. Also, it likely just needs to be a bootstrap tool again, and the test needs to include a freebsd version bump. o External toolchains, like those delivered by the chip vendors, have not been tested. There's likely tweaks needed. o It assumes that the standard tools are called the stanard things. This isn't true, afaik, with externally built clang without symlinks. It is 'stage 2' in my roadmap: o stage 1: cross build kernels with minimal effort o stage 2: cross build with xdev built compilers o stage 3: cross build with external gcc compilers o stage 4: cross build with external clang o stage 5: profit. Modified: user/imp/extern_cc/Makefile user/imp/extern_cc/Makefile.inc1 user/imp/extern_cc/contrib/binutils/bfd/config.bfd user/imp/extern_cc/contrib/binutils/config.sub user/imp/extern_cc/gnu/usr.bin/binutils/Makefile.inc0 user/imp/extern_cc/gnu/usr.bin/binutils/as/Makefile user/imp/extern_cc/gnu/usr.bin/binutils/ld/Makefile.arm user/imp/extern_cc/gnu/usr.bin/binutils/libbfd/Makefile.arm user/imp/extern_cc/gnu/usr.bin/cc/Makefile.inc user/imp/extern_cc/gnu/usr.bin/cc/Makefile.tgt user/imp/extern_cc/gnu/usr.bin/gdb/Makefile.inc user/imp/extern_cc/share/mk/bsd.endian.mk user/imp/extern_cc/share/mk/sys.mk user/imp/extern_cc/sys/conf/kern.pre.mk user/imp/extern_cc/sys/conf/kmod.mk user/imp/extern_cc/usr.bin/xlint/Makefile.inc user/imp/extern_cc/usr.sbin/crunch/crunchgen/crunchgen.c Modified: user/imp/extern_cc/Makefile ============================================================================== --- user/imp/extern_cc/Makefile Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/Makefile Sat Apr 21 16:27:50 2012 (r234548) @@ -135,7 +135,7 @@ _MAKE= PATH=${PATH} ${BINMAKE} -f Makefi _TARGET_ARCH= ${TARGET:S/pc98/i386/} .elif !defined(TARGET) && defined(TARGET_ARCH) && \ ${TARGET_ARCH} != ${MACHINE_ARCH} -_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/} +_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/} .endif # Legacy names, for another transition period mips:mips(n32|64)?eb -> mips:mips\1 .if defined(TARGET) && defined(TARGET_ARCH) && \ @@ -329,7 +329,7 @@ kernel-toolchains: # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64 -TARGET_ARCHES_arm?= arm armeb +TARGET_ARCHES_arm?= arm armeb armv6 armv6eb TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 Modified: user/imp/extern_cc/Makefile.inc1 ============================================================================== --- user/imp/extern_cc/Makefile.inc1 Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/Makefile.inc1 Sat Apr 21 16:27:50 2012 (r234548) @@ -136,7 +136,7 @@ VERSION!= uname -srp VERSION+= ${OSRELDATE} .endif -KNOWN_ARCHES?= amd64 arm armeb/arm i386 i386/pc98 ia64 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 +KNOWN_ARCHES?= amd64 arm armeb/arm armv6/arm armv6eb/arm i386 i386/pc98 ia64 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 .if ${TARGET} == ${TARGET_ARCH} _t= ${TARGET} .else @@ -231,6 +231,9 @@ CROSSENV+= GROFF_BIN_PATH=${WORLDTMP}/le GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \ GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac .endif +.if ${EXT_COMP} +CROSSENV+= __X=${EXT_COMP} +.endif # bootstrap-tools stage BMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ @@ -521,7 +524,7 @@ WMAKE_TGTS= WMAKE_TGTS+= _worldtmp _legacy _bootstrap-tools .endif WMAKE_TGTS+= _cleanobj _obj _build-tools -.if !defined(SUBDIR_OVERRIDE) +.if !defined(SUBDIR_OVERRIDE) && !defined(EXT_COMP) WMAKE_TGTS+= _cross-tools .endif WMAKE_TGTS+= _includes _libraries _depend everything @@ -1035,7 +1038,7 @@ _gensnmptree= usr.sbin/bsnmpd/gensnmptre .endif .if ${MK_RESCUE} != "no" && \ - ${BOOTSTRAPPING} < 700026 + (${BOOTSTRAPPING} < 700026 || defined(EXT_COMP)) _crunchgen= usr.sbin/crunch/crunchgen .endif Modified: user/imp/extern_cc/contrib/binutils/bfd/config.bfd ============================================================================== --- user/imp/extern_cc/contrib/binutils/bfd/config.bfd Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/contrib/binutils/bfd/config.bfd Sat Apr 21 16:27:50 2012 (r234548) @@ -277,6 +277,14 @@ case "${targ}" in targ_defvec=bfd_elf32_bigarm_vec targ_selvecs=bfd_elf32_littlearm_vec ;; + armv6eb-*-freebsd*) + targ_defvec=bfd_elf32_bigarm_vec + targ_selvecs=bfd_elf32_littlearm_vec + ;; + armv6-*-freebsd*) + targ_defvec=bfd_elf32_littlearm_vec + targ_selvecs=bfd_elf32_bigarm_vec + ;; arm-*-elf | arm-*-freebsd* | arm*-*-linux-* | arm*-*-conix* | \ arm*-*-uclinux* | arm-*-kfreebsd*-gnu | \ arm*-*-eabi* ) Modified: user/imp/extern_cc/contrib/binutils/config.sub ============================================================================== --- user/imp/extern_cc/contrib/binutils/config.sub Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/contrib/binutils/config.sub Sat Apr 21 16:27:50 2012 (r234548) @@ -241,7 +241,7 @@ case $basic_machine in | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | arc | arm | arm[bl]e | arme[lb] | armv[23456] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ Modified: user/imp/extern_cc/gnu/usr.bin/binutils/Makefile.inc0 ============================================================================== --- user/imp/extern_cc/gnu/usr.bin/binutils/Makefile.inc0 Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/gnu/usr.bin/binutils/Makefile.inc0 Sat Apr 21 16:27:50 2012 (r234548) @@ -7,7 +7,7 @@ VERSION= "2.17.50 [FreeBSD] 2007-07-03" .if defined(TARGET_ARCH) -TARGET_CPUARCH=${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/:C/powerpc64/powerpc/} +TARGET_CPUARCH=${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/:C/powerpc64/powerpc/} .else TARGET_CPUARCH=${MACHINE_CPUARCH} .endif @@ -16,7 +16,7 @@ TARGET_VENDOR?= unknown TARGET_OS?= freebsd BINUTILS_ARCH=${TARGET_ARCH:C/amd64/x86_64/} TARGET_TUPLE?= ${BINUTILS_ARCH}-${TARGET_VENDOR}-${TARGET_OS} -.if ${TARGET_ARCH} == "armeb" || \ +.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb" || \ (${TARGET_CPUARCH} == "mips" && ${TARGET_ARCH:Mmips*el} == "") TARGET_BIG_ENDIAN=t .endif Modified: user/imp/extern_cc/gnu/usr.bin/binutils/as/Makefile ============================================================================== --- user/imp/extern_cc/gnu/usr.bin/binutils/as/Makefile Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/gnu/usr.bin/binutils/as/Makefile Sat Apr 21 16:27:50 2012 (r234548) @@ -41,6 +41,10 @@ SRCS+= app.c \ # DEO: why not used? #SRCS+= itbl-ops.c +.if ${TARGET_ARCH} == "armv6" || ${TARGET_ARCH} == "armv6eb" +CFLAGS+= -DCPU_DEFAULT=ARM_ARCH_V6 +.endif + .if ${TARGET_CPUARCH} == "mips" SRCS+= itbl-ops.c itbl-parse.y itbl-lex.l .if ${TARGET_ARCH:Mmips64*} != "" Modified: user/imp/extern_cc/gnu/usr.bin/binutils/ld/Makefile.arm ============================================================================== --- user/imp/extern_cc/gnu/usr.bin/binutils/ld/Makefile.arm Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/gnu/usr.bin/binutils/ld/Makefile.arm Sat Apr 21 16:27:50 2012 (r234548) @@ -1,6 +1,6 @@ # $FreeBSD$ -.if ${TARGET_ARCH} == "armeb" +.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb" NATIVE_EMULATION= armelfb_fbsd .else NATIVE_EMULATION= armelf_fbsd Modified: user/imp/extern_cc/gnu/usr.bin/binutils/libbfd/Makefile.arm ============================================================================== --- user/imp/extern_cc/gnu/usr.bin/binutils/libbfd/Makefile.arm Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/gnu/usr.bin/binutils/libbfd/Makefile.arm Sat Apr 21 16:27:50 2012 (r234548) @@ -1,6 +1,6 @@ # $FreeBSD$ -.if ${TARGET_ARCH} == "armeb" +.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb" DEFAULT_VECTOR= bfd_elf32_bigarm_vec .else DEFAULT_VECTOR= bfd_elf32_littlearm_vec @@ -14,7 +14,7 @@ SRCS+= cpu-arm.c \ elflink.c VECS+= ${DEFAULT_VECTOR} -.if ${TARGET_ARCH} == "armeb" +.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb" VECS+= bfd_elf32_littlearm_vec .else VECS+= bfd_elf32_bigarm_vec Modified: user/imp/extern_cc/gnu/usr.bin/cc/Makefile.inc ============================================================================== --- user/imp/extern_cc/gnu/usr.bin/cc/Makefile.inc Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/gnu/usr.bin/cc/Makefile.inc Sat Apr 21 16:27:50 2012 (r234548) @@ -26,7 +26,7 @@ CSTD?= gnu89 CFLAGS+= -DCROSS_COMPILE .endif -.if ${TARGET_ARCH} == "armeb" +.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb" CFLAGS += -DTARGET_ENDIAN_DEFAULT=MASK_BIG_END .endif Modified: user/imp/extern_cc/gnu/usr.bin/cc/Makefile.tgt ============================================================================== --- user/imp/extern_cc/gnu/usr.bin/cc/Makefile.tgt Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/gnu/usr.bin/cc/Makefile.tgt Sat Apr 21 16:27:50 2012 (r234548) @@ -4,7 +4,7 @@ # MACHINE_CPUARCH, but there's no easy way to export make functions... .if defined(TARGET_ARCH) -TARGET_CPUARCH=${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/:C/powerpc64/powerpc/} +TARGET_CPUARCH=${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/:C/powerpc64/powerpc/} .else TARGET_CPUARCH=${MACHINE_CPUARCH} .endif @@ -17,7 +17,7 @@ TARGET_CPU_DEFAULT= MASK_GNU_AS|MASK_GNU .if ${TARGET_ARCH} == "sparc64" TARGET_CPU_DEFAULT= TARGET_CPU_ultrasparc .endif -.if ${TARGET_ARCH} == "armeb" || \ +.if ${TARGET_ARCH} == "armeb" || ${TARGET_ARCH} == "armv6eb" || \ (${TARGET_CPUARCH} == "mips" && ${TARGET_ARCH:Mmips*el} == "") TARGET_BIG_ENDIAN=t .endif Modified: user/imp/extern_cc/gnu/usr.bin/gdb/Makefile.inc ============================================================================== --- user/imp/extern_cc/gnu/usr.bin/gdb/Makefile.inc Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/gnu/usr.bin/gdb/Makefile.inc Sat Apr 21 16:27:50 2012 (r234548) @@ -20,7 +20,7 @@ OBJ_GDB= ${OBJ_ROOT}/gdb # MACHINE_CPUARCH, but there's no easy way to export make functions... .if defined(TARGET_ARCH) -TARGET_CPUARCH=${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/:C/powerpc64/powerpc/} +TARGET_CPUARCH=${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/:C/powerpc64/powerpc/} .else TARGET_CPUARCH=${MACHINE_CPUARCH} .endif Modified: user/imp/extern_cc/share/mk/bsd.endian.mk ============================================================================== --- user/imp/extern_cc/share/mk/bsd.endian.mk Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/share/mk/bsd.endian.mk Sat Apr 21 16:27:50 2012 (r234548) @@ -4,12 +4,14 @@ ${MACHINE_ARCH} == "i386" || \ ${MACHINE_ARCH} == "ia64" || \ ${MACHINE_ARCH} == "arm" || \ + ${MACHINE_ARCH} == "armv6" || \ ${MACHINE_ARCH:Mmips*el} != "" TARGET_ENDIANNESS= 1234 .elif ${MACHINE_ARCH} == "powerpc" || \ ${MACHINE_ARCH} == "powerpc64" || \ ${MACHINE_ARCH} == "sparc64" || \ ${MACHINE_ARCH} == "armeb" || \ + ${MACHINE_ARCH} == "armv6eb" || \ ${MACHINE_ARCH:Mmips*} != "" TARGET_ENDIANNESS= 4321 .endif Modified: user/imp/extern_cc/share/mk/sys.mk ============================================================================== --- user/imp/extern_cc/share/mk/sys.mk Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/share/mk/sys.mk Sat Apr 21 16:27:50 2012 (r234548) @@ -13,7 +13,7 @@ unix ?= We run FreeBSD, not UNIX. # and/or endian. This is called MACHINE_CPU in NetBSD, but that's used # for something different in FreeBSD. # -MACHINE_CPUARCH=${MACHINE_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/:C/powerpc64/powerpc/} +MACHINE_CPUARCH=${MACHINE_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/:C/powerpc64/powerpc/} .endif # If the special target .POSIX appears (without prerequisites or @@ -31,23 +31,23 @@ MACHINE_CPUARCH=${MACHINE_ARCH:C/mips(n3 .SUFFIXES: .out .a .ln .o .c .cc .cpp .cxx .C .m .F .f .e .r .y .l .S .asm .s .cl .p .h .sh .endif -AR ?= ar +AR ?= ${__X}ar .if defined(%POSIX) ARFLAGS ?= -rv .else ARFLAGS ?= rl .endif -RANLIB ?= ranlib +RANLIB ?= ${__X}ranlib -AS ?= as +AS ?= ${__X}as AFLAGS ?= ACFLAGS ?= .if defined(%POSIX) -CC ?= c89 +CC ?= ${__X}c89 CFLAGS ?= -O .else -CC ?= cc +CC ?= ${__X}cc .if ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "mips" CFLAGS ?= -O -pipe .else @@ -73,11 +73,11 @@ CTFFLAGS += -g #CFLAGS += -g .endif -CXX ?= c++ +CXX ?= ${__X}c++ CXXFLAGS ?= ${CFLAGS:N-std=*:N-Wnested-externs:N-W*-prototypes:N-Wno-pointer-sign:N-Wold-style-definition} PO_CXXFLAGS ?= ${CXXFLAGS} -CPP ?= cpp +CPP ?= ${__X}cpp .if empty(.MAKEFLAGS:M-s) ECHO ?= echo @@ -111,7 +111,7 @@ INSTALL ?= install LEX ?= lex LFLAGS ?= -LD ?= ld +LD ?= ${__X}ld LDFLAGS ?= LINT ?= lint @@ -123,6 +123,10 @@ LINTLIBFLAGS ?= -cghapbxu -C ${LIB} MAKE ?= make +.if !defined(%POSIX) +NM ?= ${__X}nm +.endif + OBJC ?= cc OBJCFLAGS ?= ${OBJCINCLUDES} ${CFLAGS} -Wno-import Modified: user/imp/extern_cc/sys/conf/kern.pre.mk ============================================================================== --- user/imp/extern_cc/sys/conf/kern.pre.mk Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/sys/conf/kern.pre.mk Sat Apr 21 16:27:50 2012 (r234548) @@ -6,7 +6,7 @@ .include # backwards compat option for older systems. -MACHINE_CPUARCH?=${MACHINE_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/:C/powerpc64/powerpc/} +MACHINE_CPUARCH?=${MACHINE_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/:C/powerpc64/powerpc/} # Can be overridden by makeoptions or /etc/make.conf KERNEL_KO?= kernel @@ -19,9 +19,9 @@ M= ${MACHINE_CPUARCH} AWK?= awk LINT?= lint -NM?= nm -OBJCOPY?= objcopy -SIZE?= size +NM?= ${__X}nm +OBJCOPY?= ${__X}objcopy +SIZE?= ${__X}size .if defined(DEBUG) _MINUS_O= -O Modified: user/imp/extern_cc/sys/conf/kmod.mk ============================================================================== --- user/imp/extern_cc/sys/conf/kmod.mk Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/sys/conf/kmod.mk Sat Apr 21 16:27:50 2012 (r234548) @@ -61,7 +61,7 @@ # # backwards compat option for older systems. -MACHINE_CPUARCH?=${MACHINE_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/:C/powerpc64/powerpc/} +MACHINE_CPUARCH?=${MACHINE_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/:C/powerpc64/powerpc/} AWK?= awk KMODLOAD?= /sbin/kldload Modified: user/imp/extern_cc/usr.bin/xlint/Makefile.inc ============================================================================== --- user/imp/extern_cc/usr.bin/xlint/Makefile.inc Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/usr.bin/xlint/Makefile.inc Sat Apr 21 16:27:50 2012 (r234548) @@ -8,7 +8,7 @@ WARNS?= 0 # These assignments duplicate much of the functionality of # MACHINE_CPUARCH, but there's no easy way to export make functions... .if defined(TARGET_ARCH) -TARGET_CPUARCH= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/} +TARGET_CPUARCH= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/} .else TARGET_CPUARCH= ${MACHINE_CPUARCH} TARGET_ARCH= ${MACHINE_ARCH} Modified: user/imp/extern_cc/usr.sbin/crunch/crunchgen/crunchgen.c ============================================================================== --- user/imp/extern_cc/usr.sbin/crunch/crunchgen/crunchgen.c Sat Apr 21 16:07:11 2012 (r234547) +++ user/imp/extern_cc/usr.sbin/crunch/crunchgen/crunchgen.c Sat Apr 21 16:27:50 2012 (r234548) @@ -1078,7 +1078,7 @@ void prog_makefile_rules(FILE *outmk, pr fprintf(outmk, " $(%s_LIBS)", p->ident); fprintf(outmk, "\n"); - fprintf(outmk, "\tld -dc -r -o %s.lo %s_stub.o $(%s_OBJPATHS)", + fprintf(outmk, "\t${LD} -dc -r -o %s.lo %s_stub.o $(%s_OBJPATHS)", p->name, p->name, p->ident); if (p->libs) fprintf(outmk, " $(%s_LIBS)", p->ident);