From owner-svn-soc-all@freebsd.org Sun Nov 29 13:18:27 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0451A3B524 for ; Sun, 29 Nov 2015 13:18:27 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C04E91B11 for ; Sun, 29 Nov 2015 13:18:27 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tATDIRM0079112 for ; Sun, 29 Nov 2015 13:18:27 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tATDIQSB079034 for svn-soc-all@FreeBSD.org; Sun, 29 Nov 2015 13:18:26 GMT (envelope-from def@FreeBSD.org) Date: Sun, 29 Nov 2015 13:18:26 GMT Message-Id: <201511291318.tATDIQSB079034@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294532 - in soc2013/def/crashdump-head: sbin/dumpon sys/dev/null sys/geom sys/sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 13:18:27 -0000 Author: def Date: Sun Nov 29 13:18:25 2015 New Revision: 294532 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294532 Log: Implement separate I/O control for EKCD. Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c soc2013/def/crashdump-head/sys/dev/null/null.c soc2013/def/crashdump-head/sys/geom/geom_dev.c soc2013/def/crashdump-head/sys/sys/disk.h Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c ============================================================================== --- soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Sun Nov 29 12:33:56 2015 (r294531) +++ soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Sun Nov 29 13:18:25 2015 (r294532) @@ -235,11 +235,11 @@ err(EX_OSFILE, "%s", argv[0]); check_size(fd, argv[0]); kda.kda_enable = 0; - i = ioctl(fd, DIOCSKERNELDUMP, &kda); + i = ioctl(fd, DIOCSEKCD, &kda); if (pubkeyfile != NULL) genkey(pubkeyfile, &kda); kda.kda_enable = 1; - i = ioctl(fd, DIOCSKERNELDUMP, &kda); + i = ioctl(fd, DIOCSEKCD, &kda); free(kda.kda_encryptedkey); bzero(&kda, sizeof(kda)); if (i == 0 && verbose) @@ -249,12 +249,12 @@ if (fd < 0) err(EX_OSFILE, "%s", _PATH_DEVNULL); kda.kda_enable = 0; - i = ioctl(fd, DIOCSKERNELDUMP, &kda); + i = ioctl(fd, DIOCSEKCD, &kda); if (i == 0 && verbose) printf("kernel dumps disabled\n"); } if (i < 0) - err(EX_OSERR, "ioctl(DIOCSKERNELDUMP)"); + err(EX_OSERR, "ioctl(DIOCSEKCD)"); exit (0); } Modified: soc2013/def/crashdump-head/sys/dev/null/null.c ============================================================================== --- soc2013/def/crashdump-head/sys/dev/null/null.c Sun Nov 29 12:33:56 2015 (r294531) +++ soc2013/def/crashdump-head/sys/dev/null/null.c Sun Nov 29 13:18:25 2015 (r294532) @@ -108,6 +108,9 @@ error = 0; switch (cmd) { + case DIOCSEKCD: + error = set_dumper(NULL, NULL, td, 0, NULL, 0, NULL); + break; case DIOCSKERNELDUMP: error = set_dumper(NULL, NULL, td, 0, NULL, 0, NULL); break; Modified: soc2013/def/crashdump-head/sys/geom/geom_dev.c ============================================================================== --- soc2013/def/crashdump-head/sys/geom/geom_dev.c Sun Nov 29 12:33:56 2015 (r294531) +++ soc2013/def/crashdump-head/sys/geom/geom_dev.c Sun Nov 29 13:18:25 2015 (r294532) @@ -134,7 +134,7 @@ struct g_consumer *cp; int error, len; - if (dev == NULL) + if (dev == NULL || kda == NULL) return (set_dumper(NULL, NULL, td, 0, NULL, 0, NULL)); cp = dev->si_drv2; @@ -158,12 +158,15 @@ static void init_dumpdev(struct cdev *dev) { + struct diocskerneldump_arg kda; + + kda.kda_enable = 1; if (dumpdev == NULL) return; if (strcmp(devtoname(dev), dumpdev) != 0) return; - if (g_dev_setdumpdev(dev, NULL, curthread) == 0) { + if (g_dev_setdumpdev(dev, &kda, curthread) == 0) { freeenv(dumpdev); dumpdev = NULL; } @@ -465,7 +468,7 @@ case DIOCGFRONTSTUFF: error = g_io_getattr("GEOM::frontstuff", cp, &i, data); break; - case DIOCSKERNELDUMP: { + case DIOCSEKCD: { struct diocskerneldump_arg *kda; kda = (struct diocskerneldump_arg *)data; if (kda->kda_enable == 0) @@ -474,6 +477,15 @@ error = g_dev_setdumpdev(dev, kda, td); break; } + case DIOCSKERNELDUMP: { + struct diocskerneldump_arg kda; + kda.kda_enable = (uint8_t)*(u_int *)data; + if (kda.kda_enable == 0) + error = g_dev_setdumpdev(NULL, NULL, td); + else + error = g_dev_setdumpdev(dev, &kda, td); + break; + } case DIOCGFLUSH: error = g_io_flush(cp); break; Modified: soc2013/def/crashdump-head/sys/sys/disk.h ============================================================================== --- soc2013/def/crashdump-head/sys/sys/disk.h Sun Nov 29 12:33:56 2015 (r294531) +++ soc2013/def/crashdump-head/sys/sys/disk.h Sun Nov 29 13:18:25 2015 (r294532) @@ -61,11 +61,17 @@ uint32_t kda_encryptedkeysize; uint8_t *kda_encryptedkey; }; -#define DIOCSKERNELDUMP _IOW('d', 133, struct diocskerneldump_arg) +#define DIOCSEKCD _IOW('d', 132, struct diocskerneldump_arg) /* * Enable/Disable the device for kernel core dumps. */ +#define DIOCSKERNELDUMP _IOW('d', 133, u_int) /* Set/Clear kernel dumps */ + /* + * Enable/Disable (the argument is boolean) the device for kernel + * core dumps. + */ + #define DIOCGFRONTSTUFF _IOR('d', 134, off_t) /* * Many disk formats have some amount of space reserved at the From owner-svn-soc-all@freebsd.org Sun Nov 29 13:27:38 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D832BA3B69A for ; Sun, 29 Nov 2015 13:27:38 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C90DE1D7A for ; Sun, 29 Nov 2015 13:27:38 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tATDRcLD000761 for ; Sun, 29 Nov 2015 13:27:38 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tATDRcVw000730 for svn-soc-all@FreeBSD.org; Sun, 29 Nov 2015 13:27:38 GMT (envelope-from def@FreeBSD.org) Date: Sun, 29 Nov 2015 13:27:38 GMT Message-Id: <201511291327.tATDRcVw000730@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294533 - soc2013/def/crashdump-head/sys/sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 13:27:38 -0000 Author: def Date: Sun Nov 29 13:27:37 2015 New Revision: 294533 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294533 Log: Revert changed line. Modified: soc2013/def/crashdump-head/sys/sys/disk.h Modified: soc2013/def/crashdump-head/sys/sys/disk.h ============================================================================== --- soc2013/def/crashdump-head/sys/sys/disk.h Sun Nov 29 13:18:25 2015 (r294532) +++ soc2013/def/crashdump-head/sys/sys/disk.h Sun Nov 29 13:27:37 2015 (r294533) @@ -71,7 +71,7 @@ * Enable/Disable (the argument is boolean) the device for kernel * core dumps. */ - + #define DIOCGFRONTSTUFF _IOR('d', 134, off_t) /* * Many disk formats have some amount of space reserved at the From owner-svn-soc-all@freebsd.org Sun Nov 29 16:04:59 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9EF5A3B2D9 for ; Sun, 29 Nov 2015 16:04:59 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9F4D19DC for ; Sun, 29 Nov 2015 16:04:59 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tATG4xWL048894 for ; Sun, 29 Nov 2015 16:04:59 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tATG4xhN048890 for svn-soc-all@FreeBSD.org; Sun, 29 Nov 2015 16:04:59 GMT (envelope-from def@FreeBSD.org) Date: Sun, 29 Nov 2015 16:04:59 GMT Message-Id: <201511291604.tATG4xhN048890@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294537 - soc2013/def/crashdump-head/sys/kern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 16:05:00 -0000 Author: def Date: Sun Nov 29 16:04:58 2015 New Revision: 294537 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294537 Log: Add ifdefs in order to compile kernel without EKCD. Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c ============================================================================== --- soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Sun Nov 29 14:44:40 2015 (r294536) +++ soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Sun Nov 29 16:04:58 2015 (r294537) @@ -157,7 +157,7 @@ uint32_t kdc_encryptedkeysize; uint8_t kdc_encryptedkey[]; }; -#endif /* EKCD */ +#endif /* * Variable panicstr contains argument to first call to panic; used as flag @@ -897,9 +897,13 @@ kerneldumpcrypto_dumpkeysize(const struct kerneldumpcrypto *kdc) { +#ifdef EKCD if (kdc == NULL) return (0); return (kdc->kdc_dumpkeysize); +#else + return (0); +#endif } /* Registration of dumpers */ @@ -916,7 +920,9 @@ return (error); if (di == NULL) { +#ifdef EKCD free(dumper.kdc, M_EKCD); +#endif bzero(&dumper, sizeof dumper); dumpdevname[0] = '\0'; return (0); @@ -1026,7 +1032,7 @@ return (0); } -#endif +#endif /* EKCD */ /* Call dumper with bounds checking. */ static int @@ -1065,6 +1071,7 @@ return (dump_raw_write(di, kdh, physical, offset, sizeof(*kdh))); } +#ifdef EKCD int dump_write_key(struct dumperinfo *di, vm_offset_t physical, off_t offset) { @@ -1092,6 +1099,15 @@ free(buf, M_EKCD); return (ret); } +#else /* !EKCD */ +int +dump_write_key(struct dumperinfo *di __unused, vm_offset_t physical __unused, + off_t offset __unused) +{ + + return (0); +} +#endif /* EKCD */ void mkdumpheader(struct kerneldumpheader *kdh, char *magic, uint32_t archver, From owner-svn-soc-all@freebsd.org Sun Nov 29 16:34:54 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79D50A3BB21 for ; Sun, 29 Nov 2015 16:34:54 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A16F157A for ; Sun, 29 Nov 2015 16:34:54 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tATGYsGD007342 for ; Sun, 29 Nov 2015 16:34:54 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tATGYrZ9007340 for svn-soc-all@FreeBSD.org; Sun, 29 Nov 2015 16:34:53 GMT (envelope-from def@FreeBSD.org) Date: Sun, 29 Nov 2015 16:34:53 GMT Message-Id: <201511291634.tATGYrZ9007340@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294538 - soc2013/def/crashdump-head/sys/conf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 16:34:54 -0000 Author: def Date: Sun Nov 29 16:34:53 2015 New Revision: 294538 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294538 Log: Add missing dot. Modified: soc2013/def/crashdump-head/sys/conf/NOTES Modified: soc2013/def/crashdump-head/sys/conf/NOTES ============================================================================== --- soc2013/def/crashdump-head/sys/conf/NOTES Sun Nov 29 16:04:58 2015 (r294537) +++ soc2013/def/crashdump-head/sys/conf/NOTES Sun Nov 29 16:34:53 2015 (r294538) @@ -2983,5 +2983,5 @@ # This enables support for compressed core dumps. options GZIO -# Unattended encrypted kernel crash dumps +# Unattended encrypted kernel crash dumps. options EKCD From owner-svn-soc-all@freebsd.org Sun Nov 29 16:44:27 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C76D2A3BDD1 for ; Sun, 29 Nov 2015 16:44:27 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B74D119F0 for ; Sun, 29 Nov 2015 16:44:27 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tATGiREk025365 for ; Sun, 29 Nov 2015 16:44:27 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tATGiQGi025345 for svn-soc-all@FreeBSD.org; Sun, 29 Nov 2015 16:44:26 GMT (envelope-from def@FreeBSD.org) Date: Sun, 29 Nov 2015 16:44:26 GMT Message-Id: <201511291644.tATGiQGi025345@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294539 - in soc2013/def/crashdump-head/sbin: decryptcore dumpon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 16:44:27 -0000 Author: def Date: Sun Nov 29 16:44:26 2015 New Revision: 294539 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294539 Log: Fix message format for OpenSSL errors. Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c ============================================================================== --- soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Sun Nov 29 16:34:53 2015 (r294538) +++ soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Sun Nov 29 16:44:26 2015 (r294539) @@ -166,7 +166,7 @@ privkey = RSA_new(); if (privkey == NULL) { - pjdlog_error("Unable to allocate an RSA structure. %s", + pjdlog_error("Unable to allocate an RSA structure: %s", ERR_error_string(ERR_get_error(), NULL)); goto failed; } @@ -195,7 +195,7 @@ if (RSA_private_decrypt(kdk->kdk_encryptedkeysize, kdk->kdk_encryptedkey, key, privkey, RSA_PKCS1_PADDING) != sizeof(key)) { - pjdlog_error("Unable to decrypt key. %s", + pjdlog_error("Unable to decrypt key: %s", ERR_error_string(ERR_get_error(), NULL)); goto failed; } Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c ============================================================================== --- soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Sun Nov 29 16:34:53 2015 (r294538) +++ soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Sun Nov 29 16:44:26 2015 (r294539) @@ -125,7 +125,7 @@ pubkey = RSA_new(); if (pubkey == NULL) { - warnx("Unable to allocate an RSA structure. %s", + warnx("Unable to allocate an RSA structure: %s", ERR_error_string(ERR_get_error(), NULL)); goto failed; } From owner-svn-soc-all@freebsd.org Mon Nov 30 21:19:18 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D42BA3DA8E for ; Mon, 30 Nov 2015 21:19:18 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F29431E2D for ; Mon, 30 Nov 2015 21:19:17 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAULJHO5046491 for ; Mon, 30 Nov 2015 21:19:17 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAULJGpV046485 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 21:19:16 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 21:19:16 GMT Message-Id: <201511302119.tAULJGpV046485@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294581 - in soc2013/def/crashdump-head/etc: defaults rc.d MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 21:19:18 -0000 Author: def Date: Mon Nov 30 21:19:16 2015 New Revision: 294581 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294581 Log: Use dumppubkey variable for public key. Modified: soc2013/def/crashdump-head/etc/defaults/rc.conf soc2013/def/crashdump-head/etc/rc.d/dumpon Modified: soc2013/def/crashdump-head/etc/defaults/rc.conf ============================================================================== --- soc2013/def/crashdump-head/etc/defaults/rc.conf Mon Nov 30 19:16:58 2015 (r294580) +++ soc2013/def/crashdump-head/etc/defaults/rc.conf Mon Nov 30 21:19:16 2015 (r294581) @@ -589,6 +589,7 @@ chkprintcap_flags="-d" # Create missing directories by default. dumpdev="AUTO" # Device to crashdump to (device name, AUTO, or NO). dumpdir="/var/crash" # Directory where crash dumps are to be stored +dumppubkey="" # Public key for encrypted kernel crash dumps. savecore_flags="-m 10" # Used if dumpdev is enabled above, and present. # By default, only the 10 most recent kernel dumps # are saved. Modified: soc2013/def/crashdump-head/etc/rc.d/dumpon ============================================================================== --- soc2013/def/crashdump-head/etc/rc.d/dumpon Mon Nov 30 19:16:58 2015 (r294580) +++ soc2013/def/crashdump-head/etc/rc.d/dumpon Mon Nov 30 21:19:16 2015 (r294581) @@ -16,7 +16,12 @@ dumpon_try() { - if /sbin/dumpon ${dumpon_flags} "${1}" ; then + if [ -n "${dumppubkey}" ]; then + /sbin/dumpon -k "${dumppubkey}" "${1}" + else + /sbin/dumpon "${1}" + fi + if [ $? -eq 0 ]; then # Make a symlink in devfs for savecore ln -fs "${1}" /dev/dumpdev return 0 From owner-svn-soc-all@freebsd.org Mon Nov 30 21:23:02 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31996A3DC2B for ; Mon, 30 Nov 2015 21:23:02 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 165921241 for ; Mon, 30 Nov 2015 21:23:02 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAULN1dZ057303 for ; Mon, 30 Nov 2015 21:23:01 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAULN1wv057301 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 21:23:01 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 21:23:01 GMT Message-Id: <201511302123.tAULN1wv057301@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294582 - soc2013/def/crashdump-head/sbin/dumpon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 21:23:02 -0000 Author: def Date: Mon Nov 30 21:23:00 2015 New Revision: 294582 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294582 Log: Don't free resources but exit immediately after an error. Clear keys after use. Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c ============================================================================== --- soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Mon Nov 30 21:19:16 2015 (r294581) +++ soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Mon Nov 30 21:23:00 2015 (r294582) @@ -113,56 +113,39 @@ pubkey = NULL; fp = fopen(pubkeyfile, "r"); - if (fp == NULL) { - warn("Unable to open %s", pubkeyfile); - goto failed; - } + if (fp == NULL) + err(1, "Unable to open %s", pubkeyfile); - if (cap_enter() == -1) { - warn("Unable to enter capability mode"); - goto failed; - } + if (cap_enter() == -1) + err(1, "Unable to enter capability mode"); pubkey = RSA_new(); if (pubkey == NULL) { - warnx("Unable to allocate an RSA structure: %s", + errx(1, "Unable to allocate an RSA structure: %s", ERR_error_string(ERR_get_error(), NULL)); - goto failed; } pubkey = PEM_read_RSA_PUBKEY(fp, &pubkey, NULL, NULL); fclose(fp); fp = NULL; - if (pubkey == NULL) { - warnx("Unable to read data from %s.", pubkeyfile); - goto failed; - } + if (pubkey == NULL) + errx(1, "Unable to read data from %s.", pubkeyfile); kda->kda_encryptedkeysize = RSA_size(pubkey); kda->kda_encryptedkey = calloc(1, kda->kda_encryptedkeysize); - if (kda->kda_encryptedkey == NULL) { - warn("Unable to allocate encrypted key"); - goto failed; - } + if (kda->kda_encryptedkey == NULL) + err(1, "Unable to allocate encrypted key"); + kda->kda_encryption = KERNELDUMP_ENC_AES_256_CBC; arc4random_buf(kda->kda_key, sizeof(kda->kda_key)); if (RSA_public_encrypt(sizeof(kda->kda_key), kda->kda_key, kda->kda_encryptedkey, pubkey, RSA_PKCS1_PADDING) != (int)kda->kda_encryptedkeysize) { - warn("Unable to encrypt the one-time key"); - goto failed; + errx(1, "Unable to encrypt the one-time key."); } RSA_free(pubkey); - pubkey = NULL; kda->kda_encrypt = 1; - return; -failed: - if (fp != NULL) - fclose(fp); - free(kda->kda_encryptedkey); - RSA_free(pubkey); - exit(1); } static void @@ -200,7 +183,6 @@ int i, fd; int do_listdumpdev = 0; - bzero(&kda, sizeof(kda)); pubkeyfile = NULL; while ((ch = getopt(argc, argv, "k:lv")) != -1) @@ -234,12 +216,15 @@ if (fd < 0) err(EX_OSFILE, "%s", argv[0]); check_size(fd, argv[0]); + bzero(&kda, sizeof(kda)); kda.kda_enable = 0; i = ioctl(fd, DIOCSEKCD, &kda); + bzero(&kda, sizeof(kda)); if (pubkeyfile != NULL) genkey(pubkeyfile, &kda); kda.kda_enable = 1; i = ioctl(fd, DIOCSEKCD, &kda); + bzero(kda.kda_encryptedkey, kda.kda_encryptedkeysize); free(kda.kda_encryptedkey); bzero(&kda, sizeof(kda)); if (i == 0 && verbose) From owner-svn-soc-all@freebsd.org Mon Nov 30 21:25:10 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6021A3DD32 for ; Mon, 30 Nov 2015 21:25:10 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B7420160A for ; Mon, 30 Nov 2015 21:25:10 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAULPAFY060150 for ; Mon, 30 Nov 2015 21:25:10 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAULPA3T060060 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 21:25:10 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 21:25:10 GMT Message-Id: <201511302125.tAULPA3T060060@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294583 - soc2013/def/crashdump-head/sbin/savecore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 21:25:10 -0000 Author: def Date: Mon Nov 30 21:25:09 2015 New Revision: 294583 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294583 Log: Log error message. Simplify code. Modified: soc2013/def/crashdump-head/sbin/savecore/savecore.c Modified: soc2013/def/crashdump-head/sbin/savecore/savecore.c ============================================================================== --- soc2013/def/crashdump-head/sbin/savecore/savecore.c Mon Nov 30 21:23:00 2015 (r294582) +++ soc2013/def/crashdump-head/sbin/savecore/savecore.c Mon Nov 30 21:25:09 2015 (r294583) @@ -191,12 +191,13 @@ fd = open(keyname, O_WRONLY | O_CREAT | O_TRUNC, 0600); if (fd == -1) { - syslog(LOG_ERR, "Unable to open %s to write the key.", keyname); + syslog(LOG_ERR, "Unable to open %s to write the key: %m.", + keyname); return (false); } if (write(fd, dumpkey, dumpkeysize) != (ssize_t)dumpkeysize) { - syslog(LOG_ERR, "Unable to write the key to %s.", keyname); + syslog(LOG_ERR, "Unable to write the key to %s: %m.", keyname); close(fd); return (false); } @@ -705,8 +706,9 @@ xo_finish_h(xoinfo); fclose(info); - isencrypted = false; - if (dumpkeysize > 0) { + if (dumpkeysize == 0) { + isencrypted = false; + } else { isencrypted = true; dumpkey = calloc(1, dumpkeysize); if (dumpkey == NULL) { @@ -715,9 +717,8 @@ goto closeall; } - error = read(fd, dumpkey, dumpkeysize); - if (error != (int)dumpkeysize) { - syslog(LOG_ERR, "Unable to read kernel dump key."); + if (read(fd, dumpkey, dumpkeysize) != (ssize_t)dumpkeysize) { + syslog(LOG_ERR, "Unable to read kernel dump key: %m."); nerr++; goto closeall; } From owner-svn-soc-all@freebsd.org Mon Nov 30 22:00:03 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A1034A3DF03 for ; Mon, 30 Nov 2015 22:00:03 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92BA11CFE for ; Mon, 30 Nov 2015 22:00:03 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAUM030O024836 for ; Mon, 30 Nov 2015 22:00:03 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAUM029A024741 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 22:00:02 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 22:00:02 GMT Message-Id: <201511302200.tAUM029A024741@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294585 - soc2013/def/crashdump-head/sys/sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 22:00:03 -0000 Author: def Date: Mon Nov 30 22:00:02 2015 New Revision: 294585 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294585 Log: Replace old DIOCSKERNELDUMP I/O control with a new one. Modified: soc2013/def/crashdump-head/sys/sys/disk.h Modified: soc2013/def/crashdump-head/sys/sys/disk.h ============================================================================== --- soc2013/def/crashdump-head/sys/sys/disk.h Mon Nov 30 21:16:26 2015 (r294584) +++ soc2013/def/crashdump-head/sys/sys/disk.h Mon Nov 30 22:00:02 2015 (r294585) @@ -54,19 +54,7 @@ * disk label formats. Don't use it unless you have to. */ -struct diocskerneldump_arg { - uint8_t kda_enable; - uint8_t kda_encrypt; - uint8_t kda_key[KERNELDUMP_KEY_SIZE]; - uint32_t kda_encryptedkeysize; - uint8_t *kda_encryptedkey; -}; -#define DIOCSEKCD _IOW('d', 132, struct diocskerneldump_arg) - /* - * Enable/Disable the device for kernel core dumps. - */ - -#define DIOCSKERNELDUMP _IOW('d', 133, u_int) /* Set/Clear kernel dumps */ +#define DIOCSKERNELDUMPOLD _IOW('d', 133, u_int) /* Set/Clear kernel dumps */ /* * Enable/Disable (the argument is boolean) the device for kernel * core dumps. @@ -149,4 +137,16 @@ }; #define DIOCGATTR _IOWR('d', 142, struct diocgattr_arg) +struct diocskerneldump_arg { + uint8_t kda_enable; + uint8_t kda_encryption; + uint8_t kda_key[KERNELDUMP_KEY_MAX_SIZE]; + uint32_t kda_encryptedkeysize; + uint8_t *kda_encryptedkey; +}; +#define DIOCSKERNELDUMP _IOW('d', 132, struct diocskerneldump_arg) + /* + * Enable/Disable the device for kernel core dumps. + */ + #endif /* _SYS_DISK_H_ */ From owner-svn-soc-all@freebsd.org Mon Nov 30 22:00:57 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 032A6A3DF17 for ; Mon, 30 Nov 2015 22:00:57 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E87DB1D55 for ; Mon, 30 Nov 2015 22:00:56 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAUM0uOF042618 for ; Mon, 30 Nov 2015 22:00:56 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAUM0uZQ042406 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 22:00:56 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 22:00:56 GMT Message-Id: <201511302200.tAUM0uZQ042406@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294616 - soc2013/def/crashdump-head/sys/sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 22:00:57 -0000 Author: def Date: Mon Nov 30 22:00:55 2015 New Revision: 294616 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294616 Log: Add macros for encryption algorithms. Fix size macros. Modified: soc2013/def/crashdump-head/sys/sys/kerneldump.h Modified: soc2013/def/crashdump-head/sys/sys/kerneldump.h ============================================================================== --- soc2013/def/crashdump-head/sys/sys/kerneldump.h Mon Nov 30 22:00:55 2015 (r294615) +++ soc2013/def/crashdump-head/sys/sys/kerneldump.h Mon Nov 30 22:00:55 2015 (r294616) @@ -55,9 +55,14 @@ #define htod64(x) (x) #endif +#define KERNELDUMP_ENC_NONE 0 +#define KERNELDUMP_ENC_AES_256_CBC 1 + #define KERNELDUMP_BLOCK_SIZE 512 -#define KERNELDUMP_IV_SIZE 16 -#define KERNELDUMP_KEY_SIZE 32 +#define KERNELDUMP_IV_MAX_SIZE 32 +#define KERNELDUMP_KEY_MAX_SIZE 64 + +#define KERNELDUMP_ENCKEYLEN_MAX (16384 / 8) /* * All uintX_t fields are in dump byte order, which is the same as @@ -92,8 +97,8 @@ }; struct kerneldumpkey { - uint8_t kdk_algorithm; - uint8_t kdk_iv[KERNELDUMP_IV_SIZE]; + uint8_t kdk_encryption; + uint8_t kdk_iv[KERNELDUMP_IV_MAX_SIZE]; uint32_t kdk_encryptedkeysize; uint8_t kdk_encryptedkey[]; }; From owner-svn-soc-all@freebsd.org Mon Nov 30 22:01:51 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 920D5A3D00A for ; Mon, 30 Nov 2015 22:01:51 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 837BA1F0E for ; Mon, 30 Nov 2015 22:01:51 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAUM1pph058297 for ; Mon, 30 Nov 2015 22:01:51 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAUM1opi058093 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 22:01:50 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 22:01:50 GMT Message-Id: <201511302201.tAUM1opi058093@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294623 - soc2013/def/crashdump-head/sbin/dumpon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 22:01:51 -0000 Author: def Date: Mon Nov 30 22:01:50 2015 New Revision: 294623 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294623 Log: Use new DIOCSKERNELDUMP I/O control. Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c ============================================================================== --- soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Mon Nov 30 21:58:51 2015 (r294622) +++ soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Mon Nov 30 22:01:50 2015 (r294623) @@ -144,8 +144,6 @@ errx(1, "Unable to encrypt the one-time key."); } RSA_free(pubkey); - - kda->kda_encrypt = 1; } static void @@ -218,12 +216,12 @@ check_size(fd, argv[0]); bzero(&kda, sizeof(kda)); kda.kda_enable = 0; - i = ioctl(fd, DIOCSEKCD, &kda); + i = ioctl(fd, DIOCSKERNELDUMP, &kda); bzero(&kda, sizeof(kda)); if (pubkeyfile != NULL) genkey(pubkeyfile, &kda); kda.kda_enable = 1; - i = ioctl(fd, DIOCSEKCD, &kda); + i = ioctl(fd, DIOCSKERNELDUMP, &kda); bzero(kda.kda_encryptedkey, kda.kda_encryptedkeysize); free(kda.kda_encryptedkey); bzero(&kda, sizeof(kda)); @@ -234,12 +232,12 @@ if (fd < 0) err(EX_OSFILE, "%s", _PATH_DEVNULL); kda.kda_enable = 0; - i = ioctl(fd, DIOCSEKCD, &kda); + i = ioctl(fd, DIOCSKERNELDUMP, &kda); if (i == 0 && verbose) printf("kernel dumps disabled\n"); } if (i < 0) - err(EX_OSERR, "ioctl(DIOCSEKCD)"); + err(EX_OSERR, "ioctl(DIOCSKERNELDUMP)"); exit (0); } From owner-svn-soc-all@freebsd.org Mon Nov 30 22:04:03 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6CC7A3D03E for ; Mon, 30 Nov 2015 22:04:03 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 91AE71FE2 for ; Mon, 30 Nov 2015 22:04:03 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAUM43IT070479 for ; Mon, 30 Nov 2015 22:04:03 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAUM42lS070419 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 22:04:02 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 22:04:02 GMT Message-Id: <201511302204.tAUM42lS070419@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294624 - in soc2013/def/crashdump-head/sys: dev/null geom MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 22:04:03 -0000 Author: def Date: Mon Nov 30 22:04:02 2015 New Revision: 294624 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294624 Log: Support DIOCSKERNELDUMPOLD I/O control only in FreeBSD 10. Copy encrypted key to kernel. Use new structures. Simplify code. Modified: soc2013/def/crashdump-head/sys/dev/null/null.c soc2013/def/crashdump-head/sys/geom/geom_dev.c Modified: soc2013/def/crashdump-head/sys/dev/null/null.c ============================================================================== --- soc2013/def/crashdump-head/sys/dev/null/null.c Mon Nov 30 22:01:50 2015 (r294623) +++ soc2013/def/crashdump-head/sys/dev/null/null.c Mon Nov 30 22:04:02 2015 (r294624) @@ -30,6 +30,8 @@ #include __FBSDID("$FreeBSD$"); +#include "opt_compat.h" + #include #include #include @@ -108,9 +110,11 @@ error = 0; switch (cmd) { - case DIOCSEKCD: +#ifdef COMPAT_FREEBSD10 + case DIOCSKERNELDUMPOLD: error = set_dumper(NULL, NULL, td, 0, NULL, 0, NULL); break; +#endif case DIOCSKERNELDUMP: error = set_dumper(NULL, NULL, td, 0, NULL, 0, NULL); break; Modified: soc2013/def/crashdump-head/sys/geom/geom_dev.c ============================================================================== --- soc2013/def/crashdump-head/sys/geom/geom_dev.c Mon Nov 30 22:01:50 2015 (r294623) +++ soc2013/def/crashdump-head/sys/geom/geom_dev.c Mon Nov 30 22:04:02 2015 (r294624) @@ -36,6 +36,8 @@ #include __FBSDID("$FreeBSD$"); +#include "opt_compat.h" + #include #include #include @@ -145,14 +147,13 @@ if (error != 0) return (error); - error = set_dumper(&kd.di, devtoname(dev), td, kda->kda_encrypt, + error = set_dumper(&kd.di, devtoname(dev), td, kda->kda_encryption, kda->kda_key, kda->kda_encryptedkeysize, kda->kda_encryptedkey); - if (error != 0) - return (error); + if (error == 0) + dev->si_flags |= SI_DUMPDEV; - dev->si_flags |= SI_DUMPDEV; - return (0); + return (error); } static void @@ -468,24 +469,56 @@ case DIOCGFRONTSTUFF: error = g_io_getattr("GEOM::frontstuff", cp, &i, data); break; - case DIOCSEKCD: { - struct diocskerneldump_arg *kda; - kda = (struct diocskerneldump_arg *)data; - if (kda->kda_enable == 0) - error = g_dev_setdumpdev(NULL, NULL, td); - else - error = g_dev_setdumpdev(dev, kda, td); - break; - } - case DIOCSKERNELDUMP: { +#ifdef COMPAT_FREEBSD10 + case DIOCSKERNELDUMPOLD: + { struct diocskerneldump_arg kda; + + bzero(&kda, sizeof(kda)); + kda.kda_encryption = KERNELDUMP_ENC_NONE; kda.kda_enable = (uint8_t)*(u_int *)data; if (kda.kda_enable == 0) - error = g_dev_setdumpdev(NULL, NULL, td); + error = g_dev_setdumpdev(NULL, NULL, td); else - error = g_dev_setdumpdev(dev, &kda, td); + error = g_dev_setdumpdev(dev, &kda, td); break; - } + } +#endif + case DIOCSKERNELDUMP: + { + struct diocskerneldump_arg *kda; + uint8_t *encryptedkey; + + kda = (struct diocskerneldump_arg *)data; + if (kda->kda_enable == 0) { + error = g_dev_setdumpdev(NULL, NULL, td); + break; + } + + if (kda->kda_encryption != KERNELDUMP_ENC_NONE) { + if (kda->kda_encryptedkeysize <= 0 || + kda->kda_encryptedkeysize > + KERNELDUMP_ENCKEYLEN_MAX) { + return (EINVAL); + } + encryptedkey = malloc(kda->kda_encryptedkeysize, M_TEMP, + M_WAITOK); + error = copyin(kda->kda_encryptedkey, encryptedkey, + kda->kda_encryptedkeysize); + } else { + encryptedkey = NULL; + } + if (error == 0) { + kda->kda_encryptedkey = encryptedkey; + error = g_dev_setdumpdev(dev, kda, td); + } + if (encryptedkey != NULL) { + bzero(encryptedkey, kda->kda_encryptedkeysize); + free(encryptedkey, M_TEMP); + } + bzero(kda, sizeof(*kda)); + break; + } case DIOCGFLUSH: error = g_io_flush(cp); break; From owner-svn-soc-all@freebsd.org Mon Nov 30 22:06:13 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C58D4A3D068 for ; Mon, 30 Nov 2015 22:06:13 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5630103C for ; Mon, 30 Nov 2015 22:06:13 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAUM6DXF073293 for ; Mon, 30 Nov 2015 22:06:13 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAUM6Cfh073251 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 22:06:12 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 22:06:12 GMT Message-Id: <201511302206.tAUM6Cfh073251@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294625 - in soc2013/def/crashdump-head: sbin/decryptcore sys/conf sys/kern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 22:06:14 -0000 Author: def Date: Mon Nov 30 22:06:11 2015 New Revision: 294625 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294625 Log: Allow to use chosen encryption algorithm. Simplify code. Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c soc2013/def/crashdump-head/sys/conf/files soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c ============================================================================== --- soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Mon Nov 30 22:04:02 2015 (r294624) +++ soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Mon Nov 30 22:06:11 2015 (r294625) @@ -33,12 +33,12 @@ if (waitpid(pid, &status, WUNTRACED | WEXITED) == -1) { pjdlog_errno(LOG_ERR, "Unable to wait for a child process"); - goto failed; + return (1); } if (WIFEXITED(status)) return (WEXITSTATUS(status)); -failed: + return (1); } @@ -47,6 +47,7 @@ { uint8_t *buf, *p; struct kerneldumpkey *kdk; + uint32_t encryptedkeysize; ssize_t size; size_t kdksize, bytes; @@ -62,7 +63,7 @@ goto failed; } - bytes = sizeof(kdk->kdk_algorithm) + sizeof(kdk->kdk_iv) + + bytes = sizeof(kdk->kdk_encryption) + sizeof(kdk->kdk_iv) + sizeof(kdk->kdk_encryptedkeysize); buf = calloc(1, bytes); if (buf == NULL) { @@ -73,12 +74,13 @@ size = read(kfd, buf, bytes); if (size == (ssize_t)bytes) { p = buf; - kdk->kdk_algorithm = *p; - p += sizeof(kdk->kdk_algorithm); + kdk->kdk_encryption = *p; + p += sizeof(kdk->kdk_encryption); bcopy(p, kdk->kdk_iv, sizeof(kdk->kdk_iv)); p += sizeof(kdk->kdk_iv); - kdk->kdk_encryptedkeysize = le32dec(p); - p += sizeof(kdk->kdk_encryptedkeysize); + bcopy(p, &encryptedkeysize, sizeof(encryptedkeysize)); + kdk->kdk_encryptedkeysize = dtoh32(encryptedkeysize); + p += sizeof(encryptedkeysize); kdksize += (size_t)kdk->kdk_encryptedkeysize; kdk = realloc(kdk, kdksize); @@ -107,14 +109,14 @@ decrypt(const char *privkeyfile, const char *keyfile, const char *input, const char *output) { - uint8_t buf[2 * KERNELDUMP_BLOCK_SIZE], key[KERNELDUMP_KEY_SIZE]; + uint8_t buf[2 * KERNELDUMP_BLOCK_SIZE], key[KERNELDUMP_KEY_MAX_SIZE]; EVP_CIPHER_CTX ctx; + const EVP_CIPHER *cipher; FILE *fp; struct kerneldumpkey *kdk; RSA *privkey; int ifd, kfd, ofd, olen, privkeysize; ssize_t bytes; - size_t bufused; pid_t pid; PJDLOG_ASSERT(privkeyfile != NULL); @@ -122,13 +124,11 @@ PJDLOG_ASSERT(input != NULL); PJDLOG_ASSERT(output != NULL); - fp = NULL; - ifd = -1; - kdk = NULL; - kfd = -1; - ofd = -1; privkey = NULL; + /* + * TODO: comment. + */ pid = fork(); if (pid == -1) { pjdlog_errno(LOG_ERR, "Unable to create child process"); @@ -174,13 +174,11 @@ kdk = read_key(kfd); close(kfd); - kfd = -1; if (kdk == NULL) goto failed; privkey = PEM_read_RSAPrivateKey(fp, &privkey, NULL, NULL); fclose(fp); - fp = NULL; if (privkey == NULL) { pjdlog_error("Unable to read data from %s.", privkeyfile); goto failed; @@ -192,9 +190,19 @@ 8 * privkeysize, 8 * kdk->kdk_encryptedkeysize); goto failed; } + + switch (kdk->kdk_encryption) { + case KERNELDUMP_ENC_AES_256_CBC: + cipher = EVP_aes_256_cbc(); + break; + default: + pjdlog_error("Invalid encryption algorithm."); + goto failed; + } + if (RSA_private_decrypt(kdk->kdk_encryptedkeysize, kdk->kdk_encryptedkey, key, privkey, - RSA_PKCS1_PADDING) != sizeof(key)) { + RSA_PKCS1_PADDING) != EVP_CIPHER_key_length(cipher)) { pjdlog_error("Unable to decrypt key: %s", ERR_error_string(ERR_get_error(), NULL)); goto failed; @@ -202,56 +210,52 @@ RSA_free(privkey); privkey = NULL; - EVP_DecryptInit_ex(&ctx, EVP_aes_256_cbc(), NULL, key, kdk->kdk_iv); - EVP_CIPHER_CTX_set_key_length(&ctx, sizeof(key)); + EVP_DecryptInit_ex(&ctx, cipher, NULL, key, kdk->kdk_iv); EVP_CIPHER_CTX_set_padding(&ctx, 0); - bufused = 0; - while ((bytes = read(ifd, buf + bufused, sizeof(buf) - bufused)) > 0) { - bufused += bytes; - if (bufused != sizeof(buf)) - continue; + bzero(key, sizeof(key)); - if (EVP_DecryptUpdate(&ctx, buf, &olen, buf, - sizeof(buf)) == 0) { - pjdlog_error("Unable to decrypt core."); + do { + bytes = read(ifd, buf, sizeof(buf)); + if (bytes < 0) { + pjdlog_errno(LOG_ERR, "Unable to read data from %s", + input); goto failed; + } else if (bytes == 0) { + break; + } + + if (bytes > 0) { + if (EVP_DecryptUpdate(&ctx, buf, &olen, buf, + bytes) == 0) { + pjdlog_error("Unable to decrypt core."); + goto failed; + } + } else { + if (EVP_DecryptFinal(&ctx, buf, &olen) == 0) { + pjdlog_error("Unable to decrypt core."); + goto failed; + } } - PJDLOG_ASSERT(olen == (int)sizeof(buf)); - if (write(ofd, buf, sizeof(buf)) != (ssize_t)sizeof(buf)) { + if (olen == 0) + continue; + + if (write(ofd, buf, olen) != olen) { pjdlog_errno(LOG_ERR, "Unable to write data to %s", output); goto failed; } - bufused = 0; - } - if (bytes < 0) { - pjdlog_errno(LOG_ERR, "Unable to read data from %s", input); - goto failed; - } + } while (bytes > 0); - close(ofd); - close(ifd); - bzero(key, sizeof(key)); bzero(buf, sizeof(buf)); EVP_CIPHER_CTX_cleanup(&ctx); - free(kdk); exit(0); failed: - if (ofd >= 0) - close(ofd); - if (ifd >= 0) - close(kfd); - if (kfd >= 0) - close(kfd); - if (fp != NULL) - fclose(fp); bzero(key, sizeof(key)); bzero(buf, sizeof(buf)); - EVP_CIPHER_CTX_cleanup(&ctx); - free(kdk); RSA_free(privkey); + EVP_CIPHER_CTX_cleanup(&ctx); exit(1); } @@ -315,5 +319,5 @@ pjdlog_fini(); - return (0); + exit(0); } Modified: soc2013/def/crashdump-head/sys/conf/files ============================================================================== --- soc2013/def/crashdump-head/sys/conf/files Mon Nov 30 22:04:02 2015 (r294624) +++ soc2013/def/crashdump-head/sys/conf/files Mon Nov 30 22:06:11 2015 (r294625) @@ -524,8 +524,8 @@ netgraph_mppc_encryption | sctp crypto/sha2/sha2.c optional crypto | geom_bde | ipsec | random | \ sctp | zfs -crypto/sha2/sha256c.c optional crypto | geom_bde | ipsec | random | \ - sctp | zfs +crypto/sha2/sha256c.c optional crypto | ekcd | geom_bde | ipsec | \ + random | sctp | zfs crypto/siphash/siphash.c optional inet | inet6 crypto/siphash/siphash_test.c optional inet | inet6 ddb/db_access.c optional ddb Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c ============================================================================== --- soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Mon Nov 30 22:04:02 2015 (r294624) +++ soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Mon Nov 30 22:06:11 2015 (r294625) @@ -73,6 +73,7 @@ #include #include +#include #include @@ -148,8 +149,8 @@ MALLOC_DEFINE(M_EKCD, "ekcd", "Encrypted kernel crash dumps data"); struct kerneldumpcrypto { - uint8_t kdc_algorithm; - uint8_t kdc_iv[KERNELDUMP_IV_SIZE]; + uint8_t kdc_encryption; + uint8_t kdc_iv[KERNELDUMP_IV_MAX_SIZE]; keyInstance kdc_ki; cipherInstance kdc_ci; off_t kdc_nextoffset; @@ -850,37 +851,40 @@ #ifdef EKCD static struct kerneldumpcrypto * -kerneldumpcrypto_create(uint8_t *key, uint32_t encryptedkeysize, - uint8_t *encryptedkey) +kerneldumpcrypto_create(const uint8_t *key, uint8_t encryption, + uint32_t encryptedkeysize, const uint8_t *encryptedkey) { struct kerneldumpcrypto *kdc; - int error; kdc = malloc(sizeof(*kdc) + encryptedkeysize, M_EKCD, M_WAITOK | M_ZERO); - kdc->kdc_algorithm = CRYPTO_AES_CBC; - error = rijndael_makeKey(&kdc->kdc_ki, DIR_ENCRYPT, - 8 * KERNELDUMP_KEY_SIZE, key); - bzero(key, KERNELDUMP_KEY_SIZE); - if (error <= 0) - goto failed; - arc4rand(kdc->kdc_iv, sizeof(kdc->kdc_iv), 0); - error = rijndael_cipherInit(&kdc->kdc_ci, MODE_CBC, kdc->kdc_iv); - if (error <= 0) + + kdc->kdc_encryption = encryption; + switch (kdc->kdc_encryption) { + case KERNELDUMP_ENC_AES_256_CBC: + if (rijndael_makeKey(&kdc->kdc_ki, DIR_ENCRYPT, 256, key) <= 0) + goto failed; + if (rijndael_cipherInit(&kdc->kdc_ci, MODE_CBC, + kdc->kdc_iv) <= 0) { + goto failed; + } + break; + default: goto failed; + } kdc->kdc_encryptedkeysize = encryptedkeysize; - bcopy(encryptedkey, kdc->kdc_encryptedkey, kdc->kdc_encryptedkeysize); - kdc->kdc_dumpkeysize = (sizeof(kdc->kdc_algorithm) + + kdc->kdc_dumpkeysize = (sizeof(kdc->kdc_encryption) + sizeof(kdc->kdc_iv) + sizeof(kdc->kdc_encryptedkeysize) + kdc->kdc_encryptedkeysize + KERNELDUMP_BLOCK_SIZE - 1) / KERNELDUMP_BLOCK_SIZE * KERNELDUMP_BLOCK_SIZE; return (kdc); failed: + bzero(kdc, sizeof(*kdc)); free(kdc, M_EKCD); return (NULL); } @@ -888,7 +892,17 @@ static void kerneldumpcrypto_init(struct kerneldumpcrypto *kdc) { + uint8_t hash[SHA256_DIGEST_LENGTH]; + SHA256_CTX ctx; + /* + * When a user enters ddb it can write a crash dump multiple times. + * Each time it should be encrypted using a different IV. + */ + SHA256_Init(&ctx); + SHA256_Update(&ctx, kdc->kdc_iv, sizeof(kdc->kdc_iv)); + SHA256_Final(hash, &ctx); + bcopy(hash, kdc->kdc_iv, sizeof(kdc->kdc_iv)); kdc->kdc_nextoffset = 0; } #endif /* EKCD */ @@ -909,8 +923,8 @@ /* Registration of dumpers */ int set_dumper(struct dumperinfo *di, const char *devname, struct thread *td, - uint8_t encrypt, uint8_t *key, uint32_t encryptedkeysize, - uint8_t *encryptedkey) + uint8_t encryption, const uint8_t *key, uint32_t encryptedkeysize, + const uint8_t *encryptedkey) { size_t wantcopy; int error; @@ -920,27 +934,28 @@ return (error); if (di == NULL) { -#ifdef EKCD - free(dumper.kdc, M_EKCD); -#endif - bzero(&dumper, sizeof dumper); - dumpdevname[0] = '\0'; - return (0); + error = 0; + goto cleanup; } if (dumper.dumper != NULL) return (EBUSY); dumper = *di; dumper.kdc = NULL; + if (encryption != KERNELDUMP_ENC_NONE) { #ifdef EKCD - if (encrypt == 1) { - dumper.kdc = kerneldumpcrypto_create(key, encryptedkeysize, - encryptedkey); - if (dumper.kdc == NULL) - return (EINVAL); + dumper.kdc = kerneldumpcrypto_create(key, encryption, + encryptedkeysize, encryptedkey); + if (dumper.kdc == NULL) { + error = EINVAL; + goto cleanup; + } kerneldumpcrypto_init(dumper.kdc); - } +#else + error = EOPTNOTSUPP; + goto cleanup; #endif + } wantcopy = strlcpy(dumpdevname, devname, sizeof(dumpdevname)); if (wantcopy >= sizeof(dumpdevname)) { @@ -949,6 +964,17 @@ } return (0); +cleanup: +#ifdef EKCD + if (dumper.kdc != NULL) { + bzero(dumper.kdc, sizeof(*dumper.kdc) + + dumper.kdc->kdc_encryptedkeysize); + free(dumper.kdc, M_EKCD); + } +#endif + bzero(&dumper, sizeof(dumper)); + dumpdevname[0] = '\0'; + return (error); } static int @@ -968,6 +994,30 @@ } #ifdef EKCD +static int +dump_encrypt(struct kerneldumpcrypto *kdc, const uint8_t *src, uint8_t *dst, + size_t size) +{ + int error; + + switch (kdc->kdc_encryption) { + case KERNELDUMP_ENC_AES_256_CBC: + error = rijndael_blockEncrypt(&kdc->kdc_ci, &kdc->kdc_ki, src, + 8 * size, dst); + if (error <= 0) + return (EIO); + error = rijndael_cipherInit(&kdc->kdc_ci, MODE_CBC, + dst + size - 16 /* IV size for AES-256-CBC */); + if (error <= 0) + return (EIO); + break; + default: + return (EINVAL); + } + + return (0); +} + /* Encrypt data and call dumper. */ static int dump_encrypted_write(struct dumperinfo *di, void *virtual, vm_offset_t physical, @@ -997,7 +1047,10 @@ if ((length % KERNELDUMP_BLOCK_SIZE) != 0) return (EINVAL); - /* Data have to be written continuously. */ + /* + * Data have to be written continuously becase we're encrypting using + * CBC mode which has this assumption. + */ if (kdc->kdc_nextoffset != 0 && kdc->kdc_nextoffset != offset) return (EINVAL); @@ -1008,14 +1061,9 @@ nbytes = sizeof(buf); else nbytes = length; - memcpy(buf, virtual, nbytes); + bcopy(virtual, buf, nbytes); - error = rijndael_blockEncrypt(&kdc->kdc_ci, &kdc->kdc_ki, buf, - 8 * nbytes, buf); - if (error <= 0) - return (EIO); - error = rijndael_cipherInit(&kdc->kdc_ci, MODE_CBC, - buf + nbytes - KERNELDUMP_IV_SIZE); + error = dump_encrypt(kdc, buf, buf, nbytes); if (error <= 0) return (EIO); @@ -1071,12 +1119,15 @@ return (dump_raw_write(di, kdh, physical, offset, sizeof(*kdh))); } -#ifdef EKCD int dump_write_key(struct dumperinfo *di, vm_offset_t physical, off_t offset) { +#ifndef EKCD + return (0); +#else /* EKCD */ uint8_t *buf, *p; struct kerneldumpcrypto *kdc; + uint32_t encryptedkeysize; int ret; kdc = di->kdc; @@ -1086,28 +1137,22 @@ buf = malloc(kdc->kdc_dumpkeysize, M_EKCD, M_WAITOK | M_ZERO); p = buf; - *p = kdc->kdc_algorithm; - p += sizeof(kdc->kdc_algorithm); + *p = kdc->kdc_encryption; + p += sizeof(kdc->kdc_encryption); bcopy(kdc->kdc_iv, p, sizeof(kdc->kdc_iv)); p += sizeof(kdc->kdc_iv); - le32enc(p, kdc->kdc_encryptedkeysize); - p += sizeof(kdc->kdc_encryptedkeysize); + encryptedkeysize = htod32(kdc->kdc_encryptedkeysize); + bcopy(&encryptedkeysize, p, sizeof(encryptedkeysize)); + p += sizeof(encryptedkeysize); bcopy(kdc->kdc_encryptedkey, p, kdc->kdc_encryptedkeysize); p += kdc->kdc_encryptedkeysize; ret = dump_raw_write(di, buf, physical, offset, kdc->kdc_dumpkeysize); + bzero(buf, kdc->kdc_dumpkeysize); free(buf, M_EKCD); return (ret); +#endif /* !EKCD */ } -#else /* !EKCD */ -int -dump_write_key(struct dumperinfo *di __unused, vm_offset_t physical __unused, - off_t offset __unused) -{ - - return (0); -} -#endif /* EKCD */ void mkdumpheader(struct kerneldumpheader *kdh, char *magic, uint32_t archver, From owner-svn-soc-all@freebsd.org Mon Nov 30 22:06:48 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF75DA3D085 for ; Mon, 30 Nov 2015 22:06:48 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B0FF2106E for ; Mon, 30 Nov 2015 22:06:48 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAUM6mqJ074403 for ; Mon, 30 Nov 2015 22:06:48 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAUM6maO074369 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 22:06:48 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 22:06:48 GMT Message-Id: <201511302206.tAUM6maO074369@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294626 - soc2013/def/crashdump-head/sys/sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 22:06:48 -0000 Author: def Date: Mon Nov 30 22:06:47 2015 New Revision: 294626 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294626 Log: Don't allow to modify keys. Modified: soc2013/def/crashdump-head/sys/sys/conf.h Modified: soc2013/def/crashdump-head/sys/sys/conf.h ============================================================================== --- soc2013/def/crashdump-head/sys/sys/conf.h Mon Nov 30 22:06:11 2015 (r294625) +++ soc2013/def/crashdump-head/sys/sys/conf.h Mon Nov 30 22:06:47 2015 (r294626) @@ -323,8 +323,8 @@ }; int set_dumper(struct dumperinfo *di, const char *devname, struct thread *td, - uint8_t encrypt, uint8_t *key, uint32_t encryptedkeysize, - uint8_t *encryptedkey); + uint8_t encrypt, const uint8_t *key, uint32_t encryptedkeysize, + const uint8_t *encryptedkey); int dump_write(struct dumperinfo *, void *, vm_offset_t, off_t, size_t); int dump_write_header(struct dumperinfo *di, struct kerneldumpheader *kdh, vm_offset_t physical, off_t offset); From owner-svn-soc-all@freebsd.org Mon Nov 30 22:15:00 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 015CBA3D328 for ; Mon, 30 Nov 2015 22:15:00 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E70A11A13 for ; Mon, 30 Nov 2015 22:14:59 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tAUMExLl090993 for ; Mon, 30 Nov 2015 22:14:59 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tAUMEx9n090991 for svn-soc-all@FreeBSD.org; Mon, 30 Nov 2015 22:14:59 GMT (envelope-from def@FreeBSD.org) Date: Mon, 30 Nov 2015 22:14:59 GMT Message-Id: <201511302214.tAUMEx9n090991@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294627 - soc2013/def/crashdump-head/sbin/dumpon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 22:15:00 -0000 Author: def Date: Mon Nov 30 22:14:58 2015 New Revision: 294627 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294627 Log: Zero DIOCSKERNELDUMP argument after use. Style. Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c ============================================================================== --- soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Mon Nov 30 22:06:47 2015 (r294626) +++ soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Mon Nov 30 22:14:58 2015 (r294627) @@ -215,9 +215,11 @@ err(EX_OSFILE, "%s", argv[0]); check_size(fd, argv[0]); bzero(&kda, sizeof(kda)); + kda.kda_enable = 0; i = ioctl(fd, DIOCSKERNELDUMP, &kda); bzero(&kda, sizeof(kda)); + if (pubkeyfile != NULL) genkey(pubkeyfile, &kda); kda.kda_enable = 1; @@ -231,8 +233,10 @@ fd = open(_PATH_DEVNULL, O_RDONLY); if (fd < 0) err(EX_OSFILE, "%s", _PATH_DEVNULL); + kda.kda_enable = 0; i = ioctl(fd, DIOCSKERNELDUMP, &kda); + bzero(&kda, sizeof(kda)); if (i == 0 && verbose) printf("kernel dumps disabled\n"); } From owner-svn-soc-all@freebsd.org Tue Dec 1 18:31:09 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2470A3E5DE for ; Tue, 1 Dec 2015 18:31:09 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B21F81790 for ; Tue, 1 Dec 2015 18:31:09 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1IV9Hn089567 for ; Tue, 1 Dec 2015 18:31:09 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1IV9GV089556 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 18:31:09 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 18:31:09 GMT Message-Id: <201512011831.tB1IV9GV089556@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294696 - soc2013/def/crashdump-head/sbin/dumpon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 18:31:09 -0000 Author: def Date: Tue Dec 1 18:31:08 2015 New Revision: 294696 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294696 Log: Add -k flag description to dumpon(8). Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.8 Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.8 ============================================================================== --- soc2013/def/crashdump-head/sbin/dumpon/dumpon.8 Tue Dec 1 17:38:52 2015 (r294695) +++ soc2013/def/crashdump-head/sbin/dumpon/dumpon.8 Tue Dec 1 18:31:08 2015 (r294696) @@ -37,6 +37,7 @@ .Sh SYNOPSIS .Nm .Op Fl v +.Op Fl k Ar public_key .Ar special_file .Nm .Op Fl v @@ -56,7 +57,9 @@ .Pa /etc/rc , controlled by the .Dq dumpdev -variable in the boot time configuration file +and +.Dq dumppubkey +variables in the boot time configuration file .Pa /etc/rc.conf . .Pp The default type of kernel crash dump is the mini crash dump. @@ -82,6 +85,29 @@ variable. .Pp The +.Op Fl k Ar public_key +flag causes +.Nm +to generate an one-time key for kernel crash dump encryption. The key is +encrypted using +.Ar public_key . +This process is sandboxed using +.Xr capsicum 4 . +Both plain and encrypted keys are send to kernel using +.Dv DIOCSKERNELDUMP +.Xr ioctl 2 . +User can specify +.Ar public_key +in +.Dq dumppubkey +variable defined in +.Pa /etc/rc.conf +for use with +.Pa /etc/rc.d/dumpon +.Xr rc 8 +script. +.Pp +The .Fl l flag causes .Nm From owner-svn-soc-all@freebsd.org Tue Dec 1 20:39:32 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0481A3E1B6 for ; Tue, 1 Dec 2015 20:39:32 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D02D11125 for ; Tue, 1 Dec 2015 20:39:32 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1KdWqK021759 for ; Tue, 1 Dec 2015 20:39:32 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1KdWxE021755 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 20:39:32 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 20:39:32 GMT Message-Id: <201512012039.tB1KdWxE021755@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294707 - soc2013/def/crashdump-head/sbin/savecore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 20:39:33 -0000 Author: def Date: Tue Dec 1 20:39:31 2015 New Revision: 294707 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294707 Log: Add description about an encrypted core in savecore(8). Modified: soc2013/def/crashdump-head/sbin/savecore/savecore.8 Modified: soc2013/def/crashdump-head/sbin/savecore/savecore.8 ============================================================================== --- soc2013/def/crashdump-head/sbin/savecore/savecore.8 Tue Dec 1 19:58:08 2015 (r294706) +++ soc2013/def/crashdump-head/sbin/savecore/savecore.8 Tue Dec 1 20:39:31 2015 (r294707) @@ -111,6 +111,10 @@ .Ar directory Ns Pa /vmcore.# and information about the core in .Ar directory Ns Pa /info.# . +If the core is encrypted, it saves the dump key in +.Ar directory Ns Pa /key.# . +The core can be later decrypted using +.Xr decryptcore 8 . For kernel textdumps generated with the .Xr textdump 4 facility, output will be stored in the @@ -156,6 +160,7 @@ .Xr getbootfile 3 , .Xr textdump 4 , .Xr tar 5 , +.Xr decryptcore 8 , .Xr dumpon 8 , .Xr syslogd 8 .Sh HISTORY From owner-svn-soc-all@freebsd.org Tue Dec 1 20:59:25 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8058A3E73D for ; Tue, 1 Dec 2015 20:59:25 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A8961112B for ; Tue, 1 Dec 2015 20:59:25 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1KxPjR063231 for ; Tue, 1 Dec 2015 20:59:25 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1KxPw0063229 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 20:59:25 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 20:59:25 GMT Message-Id: <201512012059.tB1KxPw0063229@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294708 - soc2013/def/crashdump-head/share/man/man5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 20:59:25 -0000 Author: def Date: Tue Dec 1 20:59:24 2015 New Revision: 294708 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294708 Log: Add description about dumppubkey in rc.conf(5). Modified: soc2013/def/crashdump-head/share/man/man5/rc.conf.5 Modified: soc2013/def/crashdump-head/share/man/man5/rc.conf.5 ============================================================================== --- soc2013/def/crashdump-head/share/man/man5/rc.conf.5 Tue Dec 1 20:39:31 2015 (r294707) +++ soc2013/def/crashdump-head/share/man/man5/rc.conf.5 Tue Dec 1 20:59:24 2015 (r294708) @@ -3511,6 +3511,14 @@ at boot time when .Va dumpdir is set. +.It Va dumppubkey +.Pq Vt str +Path to a public key. It is used by +.Xr dumpon 8 +to encrypt an one-time key for a crash dump. The public key has to match +a private key used by +.Xr decryptcore 8 +to decrypt a crash dump after reboot. .It Va savecore_flags .Pq Vt str If crash dumps are enabled, these are the flags to pass to the From owner-svn-soc-all@freebsd.org Tue Dec 1 22:14:48 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86E65A3C998 for ; Tue, 1 Dec 2015 22:14:48 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77E3B1D03 for ; Tue, 1 Dec 2015 22:14:48 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1MEm4m039647 for ; Tue, 1 Dec 2015 22:14:48 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1MElR8039602 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 22:14:47 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 22:14:47 GMT Message-Id: <201512012214.tB1MElR8039602@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294715 - soc2013/def/crashdump-head/sbin/decryptcore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:14:48 -0000 Author: def Date: Tue Dec 1 22:14:46 2015 New Revision: 294715 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294715 Log: Add manual page for decryptcore(8). Added: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.8 Modified: soc2013/def/crashdump-head/sbin/decryptcore/Makefile Modified: soc2013/def/crashdump-head/sbin/decryptcore/Makefile ============================================================================== --- soc2013/def/crashdump-head/sbin/decryptcore/Makefile Tue Dec 1 21:25:18 2015 (r294714) +++ soc2013/def/crashdump-head/sbin/decryptcore/Makefile Tue Dec 1 22:14:46 2015 (r294715) @@ -4,7 +4,7 @@ LIBADD= crypto pjdlog -MAN= +MAN= decryptcore.8 CFLAGS+=-I${.CURDIR}/../../sys CFLAGS+=-I${.CURDIR}/../../lib/libpjdlog Added: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.8 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.8 Tue Dec 1 22:14:46 2015 (r294715) @@ -0,0 +1,81 @@ +.\" Copyright (c) 2015 The FreeBSD Foundation +.\" 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 AUTHORS 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 AUTHORS 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. +.\" +.Dd December 1, 2015 +.Dt DECRYPTCORE 8 +.Os +.Sh NAME +.Nm decryptcore +.Nd "decrypt a core dump of the operating system" +.Sh SYNOPSIS +.Nm +.Op Fl L +.Op Fl v +.Ar privatekey +.Ar encryptedkey +.Ar encryptedcore +.Ar decryptedcore +.Sh DESCRIPTION +The +.Nm +first decrypts +.Ar encryptedkey +using +.Ar privatekey +and then uses the resulting key to decrypt +.Ar encryptedcore +saved by +.Xr savecore 8 . +Result is saved in +.Ar decryptedcore . +.Pp +The +.Nm +utility can be started with the following command line arguments: +.Bl -tag -width ".Fl L" +.It Fl L +Write log messages to +.Xr syslogd 8 . +.It Fl v +Print or log verbose/debugging information. +This option can be specified multiple times to raise the verbosity +level. +.El +.Sh EXIT STATUS +The +.Nm +utility exits 0 on success, and >0 if an error occurs. +.Sh SEE ALSO +.Xr capsicum 4 , +.Xr dumpon 8 , +.Xr savecore 8 , +.Xr syslogd 8 +.Sh AUTHORS +The +.Nm +was implemented by +.An -nosplit +.An Konrad Witaszczyk Aq Mt def@FreeBSD.org +and +.An Pawel Jakub Dawidek Aq Mt pjd@FreeBSD.org . From owner-svn-soc-all@freebsd.org Tue Dec 1 22:35:11 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BEA7FA3CEDB for ; Tue, 1 Dec 2015 22:35:11 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B05BF19D5 for ; Tue, 1 Dec 2015 22:35:11 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1MZBAK080203 for ; Tue, 1 Dec 2015 22:35:11 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1MZBKD080181 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 22:35:11 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 22:35:11 GMT Message-Id: <201512012235.tB1MZBKD080181@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294716 - soc2013/def/crashdump-head/sbin/decryptcore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:35:11 -0000 Author: def Date: Tue Dec 1 22:35:10 2015 New Revision: 294716 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294716 Log: Change decryptcore arguments. Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c ============================================================================== --- soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Tue Dec 1 22:14:46 2015 (r294715) +++ soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Tue Dec 1 22:35:10 2015 (r294716) @@ -23,7 +23,7 @@ usage(void) { - pjdlog_exitx(1, "usage: decryptcore [-Lv] -p privatekey -k encryptedkey -i encryptedcore -o decryptedcore"); + pjdlog_exitx(1, "usage: decryptcore [-Lv] privatekey encryptedkey encryptedcore decryptedcore"); } static int @@ -273,23 +273,11 @@ debug = 0; rsakeyfile = NULL; usesyslog = false; - while ((ch = getopt(argc, argv, "Li:k:o:p:v")) != -1) { + while ((ch = getopt(argc, argv, "Lv")) != -1) { switch (ch) { case 'L': usesyslog = true; break; - case 'i': - input = optarg; - break; - case 'k': - keyfile = optarg; - break; - case 'o': - output = optarg; - break; - case 'p': - rsakeyfile = optarg; - break; case 'v': debug++; break; @@ -300,12 +288,29 @@ argc -= optind; argv += optind; - if (argc != 0) + rsakeyfile = *argv; + argc--; + argv++; + if (rsakeyfile == NULL) usage(); - if (input == NULL || keyfile == NULL || output == NULL || - rsakeyfile == NULL) { + keyfile = *argv; + argc--; + argv++; + if (keyfile == NULL) + usage(); + input = *argv; + argc--; + argv++; + if (input == NULL) + usage(); + output = *argv; + argc--; + argv++; + if (output == NULL) + usage(); + + if (argc != 0) usage(); - } if (usesyslog) pjdlog_mode_set(PJDLOG_MODE_SYSLOG); From owner-svn-soc-all@freebsd.org Tue Dec 1 22:44:53 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CC01A3E1C2 for ; Tue, 1 Dec 2015 22:44:53 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CAB7100F for ; Tue, 1 Dec 2015 22:44:53 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1MirQm099144 for ; Tue, 1 Dec 2015 22:44:53 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1Miqbc099071 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 22:44:52 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 22:44:52 GMT Message-Id: <201512012244.tB1Miqbc099071@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294717 - soc2013/def/crashdump-head/sbin/decryptcore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:44:53 -0000 Author: def Date: Tue Dec 1 22:44:52 2015 New Revision: 294717 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294717 Log: Add a comment why decryptcore decrypts a core dump in a separate process. Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c ============================================================================== --- soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Tue Dec 1 22:35:10 2015 (r294716) +++ soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Tue Dec 1 22:44:52 2015 (r294717) @@ -127,7 +127,8 @@ privkey = NULL; /* - * TODO: comment. + * Decrypt a core dump in a child process so we can unlink a partially + * decrypted core if the child process fails. */ pid = fork(); if (pid == -1) { From owner-svn-soc-all@freebsd.org Tue Dec 1 22:52:29 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C780A3E4D7 for ; Tue, 1 Dec 2015 22:52:29 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E376191F for ; Tue, 1 Dec 2015 22:52:29 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1MqTXD014667 for ; Tue, 1 Dec 2015 22:52:29 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1MqSoU014657 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 22:52:28 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 22:52:28 GMT Message-Id: <201512012252.tB1MqSoU014657@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294718 - soc2013/def/crashdump-head/sys/sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:52:29 -0000 Author: def Date: Tue Dec 1 22:52:28 2015 New Revision: 294718 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294718 Log: Use unused I/O control number for the new DIOCSKERNELDUMP I/O control. Modified: soc2013/def/crashdump-head/sys/sys/disk.h Modified: soc2013/def/crashdump-head/sys/sys/disk.h ============================================================================== --- soc2013/def/crashdump-head/sys/sys/disk.h Tue Dec 1 22:44:52 2015 (r294717) +++ soc2013/def/crashdump-head/sys/sys/disk.h Tue Dec 1 22:52:28 2015 (r294718) @@ -144,7 +144,7 @@ uint32_t kda_encryptedkeysize; uint8_t *kda_encryptedkey; }; -#define DIOCSKERNELDUMP _IOW('d', 132, struct diocskerneldump_arg) +#define DIOCSKERNELDUMP _IOW('d', 143, struct diocskerneldump_arg) /* * Enable/Disable the device for kernel core dumps. */ From owner-svn-soc-all@freebsd.org Tue Dec 1 22:58:47 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6771BA3E630 for ; Tue, 1 Dec 2015 22:58:47 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59D6E1A76 for ; Tue, 1 Dec 2015 22:58:47 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1MwlkE023407 for ; Tue, 1 Dec 2015 22:58:47 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1MwkbP023318 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 22:58:46 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 22:58:46 GMT Message-Id: <201512012258.tB1MwkbP023318@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294719 - soc2013/def/crashdump-head/sys/sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:58:47 -0000 Author: def Date: Tue Dec 1 22:58:46 2015 New Revision: 294719 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294719 Log: Style. Modified: soc2013/def/crashdump-head/sys/sys/conf.h Modified: soc2013/def/crashdump-head/sys/sys/conf.h ============================================================================== --- soc2013/def/crashdump-head/sys/sys/conf.h Tue Dec 1 22:52:28 2015 (r294718) +++ soc2013/def/crashdump-head/sys/sys/conf.h Tue Dec 1 22:58:46 2015 (r294719) @@ -308,9 +308,9 @@ int dev_stdclone(char *_name, char **_namep, const char *_stem, int *_unit); EVENTHANDLER_DECLARE(dev_clone, dev_clone_fn); -/* EKCD structures. */ -struct kerneldumpheader; +/* Stuff relating to kernel-dump */ struct kerneldumpcrypto; +struct kerneldumpheader; struct dumperinfo { dumper_t *dumper; /* Dumping function. */ From owner-svn-soc-all@freebsd.org Tue Dec 1 23:09:26 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9AF92A3E7EC for ; Tue, 1 Dec 2015 23:09:26 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8599E1DE1 for ; Tue, 1 Dec 2015 23:09:26 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1N9QYD078571 for ; Tue, 1 Dec 2015 23:09:26 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1N9PYF078569 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 23:09:25 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 23:09:25 GMT Message-Id: <201512012309.tB1N9PYF078569@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294726 - soc2013/def/crashdump-head/sbin/dumpon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 23:09:26 -0000 Author: def Date: Tue Dec 1 23:09:25 2015 New Revision: 294726 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294726 Log: Verify if a public key is no longer than 16384b. Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Modified: soc2013/def/crashdump-head/sbin/dumpon/dumpon.c ============================================================================== --- soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Tue Dec 1 22:50:32 2015 (r294725) +++ soc2013/def/crashdump-head/sbin/dumpon/dumpon.c Tue Dec 1 23:09:25 2015 (r294726) @@ -132,6 +132,11 @@ errx(1, "Unable to read data from %s.", pubkeyfile); kda->kda_encryptedkeysize = RSA_size(pubkey); + if (kda->kda_encryptedkeysize > KERNELDUMP_ENCKEY_MAX_SIZE) { + errx(1, "Public key has to be at most %db long.", + 8 * KERNELDUMP_ENCKEY_MAX_SIZE); + } + kda->kda_encryptedkey = calloc(1, kda->kda_encryptedkeysize); if (kda->kda_encryptedkey == NULL) err(1, "Unable to allocate encrypted key"); From owner-svn-soc-all@freebsd.org Tue Dec 1 23:10:12 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 95FEDA3E816 for ; Tue, 1 Dec 2015 23:10:12 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 87FAD1E01 for ; Tue, 1 Dec 2015 23:10:12 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1NACJY079700 for ; Tue, 1 Dec 2015 23:10:12 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1NABxV079677 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 23:10:11 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 23:10:11 GMT Message-Id: <201512012310.tB1NABxV079677@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294727 - in soc2013/def/crashdump-head/sys: geom sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 23:10:12 -0000 Author: def Date: Tue Dec 1 23:10:11 2015 New Revision: 294727 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294727 Log: Style. Modified: soc2013/def/crashdump-head/sys/geom/geom_dev.c soc2013/def/crashdump-head/sys/sys/kerneldump.h Modified: soc2013/def/crashdump-head/sys/geom/geom_dev.c ============================================================================== --- soc2013/def/crashdump-head/sys/geom/geom_dev.c Tue Dec 1 23:09:25 2015 (r294726) +++ soc2013/def/crashdump-head/sys/geom/geom_dev.c Tue Dec 1 23:10:11 2015 (r294727) @@ -498,7 +498,7 @@ if (kda->kda_encryption != KERNELDUMP_ENC_NONE) { if (kda->kda_encryptedkeysize <= 0 || kda->kda_encryptedkeysize > - KERNELDUMP_ENCKEYLEN_MAX) { + KERNELDUMP_ENCKEY_MAX_SIZE) { return (EINVAL); } encryptedkey = malloc(kda->kda_encryptedkeysize, M_TEMP, Modified: soc2013/def/crashdump-head/sys/sys/kerneldump.h ============================================================================== --- soc2013/def/crashdump-head/sys/sys/kerneldump.h Tue Dec 1 23:09:25 2015 (r294726) +++ soc2013/def/crashdump-head/sys/sys/kerneldump.h Tue Dec 1 23:10:11 2015 (r294727) @@ -61,8 +61,7 @@ #define KERNELDUMP_BLOCK_SIZE 512 #define KERNELDUMP_IV_MAX_SIZE 32 #define KERNELDUMP_KEY_MAX_SIZE 64 - -#define KERNELDUMP_ENCKEYLEN_MAX (16384 / 8) +#define KERNELDUMP_ENCKEY_MAX_SIZE (16384 / 8) /* * All uintX_t fields are in dump byte order, which is the same as From owner-svn-soc-all@freebsd.org Tue Dec 1 23:29:20 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20509A3EC5E for ; Tue, 1 Dec 2015 23:29:20 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0ABB31A2D for ; Tue, 1 Dec 2015 23:29:20 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1NTJiD017211 for ; Tue, 1 Dec 2015 23:29:19 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1NTJQ0017180 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 23:29:19 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 23:29:19 GMT Message-Id: <201512012329.tB1NTJQ0017180@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294728 - in soc2013/def/crashdump-head/sys: geom kern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 23:29:20 -0000 Author: def Date: Tue Dec 1 23:29:18 2015 New Revision: 294728 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294728 Log: Zero memory before use. Removed unused header files. Style. Modified: soc2013/def/crashdump-head/sys/geom/geom_dev.c soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Modified: soc2013/def/crashdump-head/sys/geom/geom_dev.c ============================================================================== --- soc2013/def/crashdump-head/sys/geom/geom_dev.c Tue Dec 1 23:10:11 2015 (r294727) +++ soc2013/def/crashdump-head/sys/geom/geom_dev.c Tue Dec 1 23:29:18 2015 (r294728) @@ -148,8 +148,7 @@ return (error); error = set_dumper(&kd.di, devtoname(dev), td, kda->kda_encryption, - kda->kda_key, kda->kda_encryptedkeysize, - kda->kda_encryptedkey); + kda->kda_key, kda->kda_encryptedkeysize, kda->kda_encryptedkey); if (error == 0) dev->si_flags |= SI_DUMPDEV; @@ -161,6 +160,7 @@ { struct diocskerneldump_arg kda; + bzero(&kda, sizeof(kda)); kda.kda_enable = 1; if (dumpdev == NULL) Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c ============================================================================== --- soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Tue Dec 1 23:10:11 2015 (r294727) +++ soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Tue Dec 1 23:29:18 2015 (r294728) @@ -44,7 +44,6 @@ #include "opt_sched.h" #include "opt_watchdog.h" -#include #include #include #include @@ -82,8 +81,6 @@ #include #include -#include - #include #include From owner-svn-soc-all@freebsd.org Tue Dec 1 23:33:40 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB016A3EDE9 for ; Tue, 1 Dec 2015 23:33:40 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DAA41CA7 for ; Tue, 1 Dec 2015 23:33:40 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1NXe21028885 for ; Tue, 1 Dec 2015 23:33:40 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1NXeR9028826 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 23:33:40 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 23:33:40 GMT Message-Id: <201512012333.tB1NXeR9028826@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294729 - soc2013/def/crashdump-head/sys/kern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 23:33:40 -0000 Author: def Date: Tue Dec 1 23:33:39 2015 New Revision: 294729 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294729 Log: Change arguments' order. Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c ============================================================================== --- soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Tue Dec 1 23:29:18 2015 (r294728) +++ soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Tue Dec 1 23:33:39 2015 (r294729) @@ -848,7 +848,7 @@ #ifdef EKCD static struct kerneldumpcrypto * -kerneldumpcrypto_create(const uint8_t *key, uint8_t encryption, +kerneldumpcrypto_create(uint8_t encryption, const uint8_t *key, uint32_t encryptedkeysize, const uint8_t *encryptedkey) { struct kerneldumpcrypto *kdc; @@ -941,7 +941,7 @@ if (encryption != KERNELDUMP_ENC_NONE) { #ifdef EKCD - dumper.kdc = kerneldumpcrypto_create(key, encryption, + dumper.kdc = kerneldumpcrypto_create(encryption, key, encryptedkeysize, encryptedkey); if (dumper.kdc == NULL) { error = EINVAL; From owner-svn-soc-all@freebsd.org Tue Dec 1 23:37:37 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 201CAA3EE6A for ; Tue, 1 Dec 2015 23:37:37 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 12EEF1CFE for ; Tue, 1 Dec 2015 23:37:37 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1NbaNi034029 for ; Tue, 1 Dec 2015 23:37:36 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1Nbaq4034027 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 23:37:36 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 23:37:36 GMT Message-Id: <201512012337.tB1Nbaq4034027@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294730 - soc2013/def/crashdump-head/sys/kern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 23:37:37 -0000 Author: def Date: Tue Dec 1 23:37:35 2015 New Revision: 294730 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294730 Log: Copy encrypted key. Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c ============================================================================== --- soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Tue Dec 1 23:33:39 2015 (r294729) +++ soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Tue Dec 1 23:37:35 2015 (r294730) @@ -873,6 +873,7 @@ } kdc->kdc_encryptedkeysize = encryptedkeysize; + bcopy(encryptedkey, kdc->kdc_encryptedkey, kdc->kdc_encryptedkeysize); kdc->kdc_dumpkeysize = (sizeof(kdc->kdc_encryption) + sizeof(kdc->kdc_iv) + sizeof(kdc->kdc_encryptedkeysize) + From owner-svn-soc-all@freebsd.org Tue Dec 1 23:44:45 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE6A8A3EFCC for ; Tue, 1 Dec 2015 23:44:45 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A94CB1F6E for ; Tue, 1 Dec 2015 23:44:45 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1NijeE049892 for ; Tue, 1 Dec 2015 23:44:45 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB1NijSc049888 for svn-soc-all@FreeBSD.org; Tue, 1 Dec 2015 23:44:45 GMT (envelope-from def@FreeBSD.org) Date: Tue, 1 Dec 2015 23:44:45 GMT Message-Id: <201512012344.tB1NijSc049888@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294731 - soc2013/def/crashdump-head/sys/kern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 23:44:45 -0000 Author: def Date: Tue Dec 1 23:44:44 2015 New Revision: 294731 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294731 Log: Use correct size for kernel dump crypto. Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c ============================================================================== --- soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Tue Dec 1 23:37:35 2015 (r294730) +++ soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Tue Dec 1 23:44:44 2015 (r294731) @@ -882,7 +882,7 @@ return (kdc); failed: - bzero(kdc, sizeof(*kdc)); + bzero(kdc, sizeof(*kdc) + encryptedkeysize); free(kdc, M_EKCD); return (NULL); } From owner-svn-soc-all@freebsd.org Wed Dec 2 01:27:00 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6E37A3EA75 for ; Wed, 2 Dec 2015 01:27:00 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 97BE0130E for ; Wed, 2 Dec 2015 01:27:00 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB21R0Al068623 for ; Wed, 2 Dec 2015 01:27:00 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB21R0KO068533 for svn-soc-all@FreeBSD.org; Wed, 2 Dec 2015 01:27:00 GMT (envelope-from def@FreeBSD.org) Date: Wed, 2 Dec 2015 01:27:00 GMT Message-Id: <201512020127.tB21R0KO068533@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294739 - soc2013/def/crashdump-head/sys/kern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 01:27:00 -0000 Author: def Date: Wed Dec 2 01:26:59 2015 New Revision: 294739 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294739 Log: dump_encrypt returns zero on success. Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Modified: soc2013/def/crashdump-head/sys/kern/kern_shutdown.c ============================================================================== --- soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Wed Dec 2 00:54:05 2015 (r294738) +++ soc2013/def/crashdump-head/sys/kern/kern_shutdown.c Wed Dec 2 01:26:59 2015 (r294739) @@ -1062,7 +1062,7 @@ bcopy(virtual, buf, nbytes); error = dump_encrypt(kdc, buf, buf, nbytes); - if (error <= 0) + if (error != 0) return (EIO); error = di->dumper(di->priv, buf, physical, offset, nbytes); From owner-svn-soc-all@freebsd.org Wed Dec 2 01:58:46 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04736A3E1FE for ; Wed, 2 Dec 2015 01:58:46 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E893F14A6 for ; Wed, 2 Dec 2015 01:58:45 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB21wjQB076259 for ; Wed, 2 Dec 2015 01:58:45 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB21wjMq076071 for svn-soc-all@FreeBSD.org; Wed, 2 Dec 2015 01:58:45 GMT (envelope-from def@FreeBSD.org) Date: Wed, 2 Dec 2015 01:58:45 GMT Message-Id: <201512020158.tB21wjMq076071@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294740 - soc2013/def/crashdump-head/sbin/decryptcore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 01:58:46 -0000 Author: def Date: Wed Dec 2 01:58:44 2015 New Revision: 294740 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294740 Log: We always encrypt KERNELDUMP_KEY_MAX_SIZE bytes. Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Modified: soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c ============================================================================== --- soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Wed Dec 2 01:26:59 2015 (r294739) +++ soc2013/def/crashdump-head/sbin/decryptcore/decryptcore.c Wed Dec 2 01:58:44 2015 (r294740) @@ -203,7 +203,7 @@ if (RSA_private_decrypt(kdk->kdk_encryptedkeysize, kdk->kdk_encryptedkey, key, privkey, - RSA_PKCS1_PADDING) != EVP_CIPHER_key_length(cipher)) { + RSA_PKCS1_PADDING) != sizeof(key)) { pjdlog_error("Unable to decrypt key: %s", ERR_error_string(ERR_get_error(), NULL)); goto failed; From owner-svn-soc-all@freebsd.org Wed Dec 2 10:32:05 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51D23A3D761 for ; Wed, 2 Dec 2015 10:32:05 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 37DB713A9 for ; Wed, 2 Dec 2015 10:32:05 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB2AW5ql061492 for ; Wed, 2 Dec 2015 10:32:05 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB2AW41g061484 for svn-soc-all@FreeBSD.org; Wed, 2 Dec 2015 10:32:04 GMT (envelope-from def@FreeBSD.org) Date: Wed, 2 Dec 2015 10:32:04 GMT Message-Id: <201512021032.tB2AW41g061484@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294755 - in soc2013/def/crashdump-head: . cddl cddl/contrib/opensolaris cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs cddl/contrib/opensolaris/cmd/dtrace/test/tst/common... MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 10:32:05 -0000 Author: def Date: Wed Dec 2 10:31:52 2015 New Revision: 294755 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294755 Log: IFC@294754. Added: soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.kpriv.ksh - copied unchanged from r294754, mirror/FreeBSD/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.kpriv.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scalars/err.bigglobal.d - copied unchanged from r294754, mirror/FreeBSD/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scalars/err.bigglobal.d soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scalars/err.biglocal.d - copied unchanged from r294754, mirror/FreeBSD/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scalars/err.biglocal.d soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/aarch64/ - copied from r294754, mirror/FreeBSD/head/cddl/contrib/opensolaris/lib/libdtrace/aarch64/ soc2013/def/crashdump-head/cddl/lib/drti/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/drti/Makefile.depend soc2013/def/crashdump-head/cddl/lib/libavl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libavl/Makefile.depend soc2013/def/crashdump-head/cddl/lib/libctf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libctf/Makefile.depend soc2013/def/crashdump-head/cddl/lib/libdtrace/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libdtrace/Makefile.depend soc2013/def/crashdump-head/cddl/lib/libdtrace/siftr.d - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libdtrace/siftr.d soc2013/def/crashdump-head/cddl/lib/libnvpair/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libnvpair/Makefile.depend soc2013/def/crashdump-head/cddl/lib/libumem/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libumem/Makefile.depend soc2013/def/crashdump-head/cddl/lib/libuutil/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libuutil/Makefile.depend soc2013/def/crashdump-head/cddl/lib/libzfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libzfs/Makefile.depend soc2013/def/crashdump-head/cddl/lib/libzfs_core/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libzfs_core/Makefile.depend soc2013/def/crashdump-head/cddl/lib/libzpool/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/lib/libzpool/Makefile.depend soc2013/def/crashdump-head/cddl/sbin/zfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/sbin/zfs/Makefile.depend soc2013/def/crashdump-head/cddl/sbin/zpool/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/sbin/zpool/Makefile.depend soc2013/def/crashdump-head/cddl/usr.bin/ctfconvert/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.bin/ctfconvert/Makefile.depend soc2013/def/crashdump-head/cddl/usr.bin/ctfdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.bin/ctfdump/Makefile.depend soc2013/def/crashdump-head/cddl/usr.bin/ctfmerge/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.bin/ctfmerge/Makefile.depend soc2013/def/crashdump-head/cddl/usr.bin/zinject/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.bin/zinject/Makefile.depend soc2013/def/crashdump-head/cddl/usr.bin/zstreamdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.bin/zstreamdump/Makefile.depend soc2013/def/crashdump-head/cddl/usr.bin/ztest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.bin/ztest/Makefile.depend soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.sbin/dtrace/Makefile.depend soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/dtrace.test.mk - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.sbin/dtrace/tests/dtrace.test.mk soc2013/def/crashdump-head/cddl/usr.sbin/dtruss/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.sbin/dtruss/Makefile.depend soc2013/def/crashdump-head/cddl/usr.sbin/lockstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.sbin/lockstat/Makefile.depend soc2013/def/crashdump-head/cddl/usr.sbin/plockstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.sbin/plockstat/Makefile.depend soc2013/def/crashdump-head/cddl/usr.sbin/zdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.sbin/zdb/Makefile.depend soc2013/def/crashdump-head/cddl/usr.sbin/zhack/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/cddl/usr.sbin/zhack/Makefile.depend soc2013/def/crashdump-head/contrib/bmake/metachar.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/bmake/metachar.c soc2013/def/crashdump-head/contrib/bmake/metachar.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/bmake/metachar.h soc2013/def/crashdump-head/contrib/bmake/unit-tests/cond2.exp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/bmake/unit-tests/cond2.exp soc2013/def/crashdump-head/contrib/bmake/unit-tests/cond2.mk - copied unchanged from r294754, mirror/FreeBSD/head/contrib/bmake/unit-tests/cond2.mk soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/atomic_flag_clear.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/atomic_flag_clear.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/atomic_flag_clear_explicit.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/atomic_flag_clear_explicit.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set_explicit.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set_explicit.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/atomic_signal_fence.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/atomic_signal_fence.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/atomic_thread_fence.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/atomic_thread_fence.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/extendhfsf2.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/extendhfsf2.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/i386/chkstk.S - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/i386/chkstk.S soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/truncdfhf2.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/truncdfhf2.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/truncsfhf2.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/truncsfhf2.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/x86_64/chkstk.S - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/x86_64/chkstk.S soc2013/def/crashdump-head/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/safestack/ - copied from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/safestack/ soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_process_libcdep.cc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_process_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_symbolizer_test.cc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_symbolizer_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_platform.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/ubsan/ubsan_platform.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc soc2013/def/crashdump-head/contrib/elftoolchain/ar/ - copied from r294754, mirror/FreeBSD/head/contrib/elftoolchain/ar/ soc2013/def/crashdump-head/contrib/elftoolchain/brandelf/ - copied from r294754, mirror/FreeBSD/head/contrib/elftoolchain/brandelf/ soc2013/def/crashdump-head/contrib/elftoolchain/elfdump/ - copied from r294754, mirror/FreeBSD/head/contrib/elftoolchain/elfdump/ soc2013/def/crashdump-head/contrib/file/magic/Magdir/cbor - copied unchanged from r294754, mirror/FreeBSD/head/contrib/file/magic/Magdir/cbor soc2013/def/crashdump-head/contrib/file/magic/Magdir/nasa - copied unchanged from r294754, mirror/FreeBSD/head/contrib/file/magic/Magdir/nasa soc2013/def/crashdump-head/contrib/file/src/gmtime_r.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/file/src/gmtime_r.c soc2013/def/crashdump-head/contrib/file/src/localtime_r.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/file/src/localtime_r.c soc2013/def/crashdump-head/contrib/libarchive/libarchive/test/test_read_format_gtar_sparse_skip_entry.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libarchive/libarchive/test/test_read_format_gtar_sparse_skip_entry.c soc2013/def/crashdump-head/contrib/libarchive/libarchive/test/test_read_format_gtar_sparse_skip_entry.tar.Z.uu - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libarchive/libarchive/test/test_read_format_gtar_sparse_skip_entry.tar.Z.uu soc2013/def/crashdump-head/contrib/libucl/examples/ - copied from r294754, mirror/FreeBSD/head/contrib/libucl/examples/ soc2013/def/crashdump-head/contrib/libucl/include/ucl++.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/include/ucl++.h soc2013/def/crashdump-head/contrib/libucl/m4/ - copied from r294754, mirror/FreeBSD/head/contrib/libucl/m4/ soc2013/def/crashdump-head/contrib/libucl/python/ - copied from r294754, mirror/FreeBSD/head/contrib/libucl/python/ soc2013/def/crashdump-head/contrib/libucl/src/ucl_msgpack.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/src/ucl_msgpack.c soc2013/def/crashdump-head/contrib/libucl/src/ucl_sexp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/src/ucl_sexp.c soc2013/def/crashdump-head/contrib/libucl/tests/basic/15.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/15.in soc2013/def/crashdump-head/contrib/libucl/tests/basic/15.res - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/15.res soc2013/def/crashdump-head/contrib/libucl/tests/basic/16.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/16.in soc2013/def/crashdump-head/contrib/libucl/tests/basic/16.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/16.inc soc2013/def/crashdump-head/contrib/libucl/tests/basic/17.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/17.in soc2013/def/crashdump-head/contrib/libucl/tests/basic/17.res - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/17.res soc2013/def/crashdump-head/contrib/libucl/tests/basic/19-append.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/19-append.inc soc2013/def/crashdump-head/contrib/libucl/tests/basic/19-merge.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/19-merge.inc soc2013/def/crashdump-head/contrib/libucl/tests/basic/19.res - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/19.res soc2013/def/crashdump-head/contrib/libucl/tests/basic/20.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/20.in soc2013/def/crashdump-head/contrib/libucl/tests/basic/21.res - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/21.res soc2013/def/crashdump-head/contrib/libucl/tests/basic/22.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/22.in soc2013/def/crashdump-head/contrib/libucl/tests/test_msgpack.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/test_msgpack.c soc2013/def/crashdump-head/contrib/sendmail/cf/feature/bcc.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/sendmail/cf/feature/bcc.m4 soc2013/def/crashdump-head/contrib/sendmail/cf/feature/nopercenthack.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/sendmail/cf/feature/nopercenthack.m4 soc2013/def/crashdump-head/contrib/sendmail/cf/feature/prefixmod.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/sendmail/cf/feature/prefixmod.m4 soc2013/def/crashdump-head/contrib/sendmail/cf/feature/tls_session_features.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/sendmail/cf/feature/tls_session_features.m4 soc2013/def/crashdump-head/contrib/sendmail/cf/hack/xconnect.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/sendmail/cf/hack/xconnect.m4 soc2013/def/crashdump-head/contrib/sendmail/contrib/AuthRealm.p0 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/sendmail/contrib/AuthRealm.p0 soc2013/def/crashdump-head/contrib/wpa/patches/openssl-0.9.8zf-tls-extensions.patch - copied unchanged from r294754, mirror/FreeBSD/head/contrib/wpa/patches/openssl-0.9.8zf-tls-extensions.patch soc2013/def/crashdump-head/contrib/wpa/src/crypto/sha384-prf.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/wpa/src/crypto/sha384-prf.c soc2013/def/crashdump-head/contrib/wpa/src/fst/ - copied from r294754, mirror/FreeBSD/head/contrib/wpa/src/fst/ soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/eapol_test.py - copied unchanged from r294754, mirror/FreeBSD/head/contrib/wpa/wpa_supplicant/eapol_test.py soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/p2p_supplicant_sd.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/wpa/wpa_supplicant/p2p_supplicant_sd.c soc2013/def/crashdump-head/gnu/lib/csu/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/csu/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libdialog/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libdialog/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libgcc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libgcc/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libgcov/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libgcov/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libgomp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libgomp/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libreadline/readline/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libreadline/readline/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libregex/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libregex/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libssp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libssp/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libssp/libssp_nonshared/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libssp/libssp_nonshared/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libstdc++/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libstdc++/Makefile.depend soc2013/def/crashdump-head/gnu/lib/libsupc++/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/lib/libsupc++/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/binutils/as/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/as/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/binutils/doc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/doc/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 soc2013/def/crashdump-head/gnu/usr.bin/binutils/ld/Makefile.depend.host - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/ld/Makefile.depend.host soc2013/def/crashdump-head/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/libbfd/Makefile.depend.amd64 soc2013/def/crashdump-head/gnu/usr.bin/binutils/libbfd/Makefile.depend.host - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/libbfd/Makefile.depend.host soc2013/def/crashdump-head/gnu/usr.bin/binutils/libbinutils/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/libbinutils/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/binutils/libiberty/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/libiberty/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/binutils/libopcodes/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/libopcodes/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/binutils/objcopy/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/objcopy/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/binutils/objdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/binutils/objdump/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/c++/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/c++/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/cc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/cc/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/cc1/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/cc1/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/cc1plus/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/cc1plus/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/cc_int/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/cc_int/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/cc_tools/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/cc_tools/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/cpp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/cpp/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/gcov/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/gcov/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/include/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/libcpp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/libcpp/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/libdecnumber/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/libdecnumber/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/cc/libiberty/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/cc/libiberty/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/dialog/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/dialog/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/diff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/diff/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/diff3/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/diff3/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/dtc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/dtc/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/gdb/gdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/gdb/gdb/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/gdb/gdbserver/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/gdb/gdbserver/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/gdb/gdbtui/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/gdb/gdbtui/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 soc2013/def/crashdump-head/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/gdb/libgdb/Makefile.depend.amd64 soc2013/def/crashdump-head/gnu/usr.bin/gperf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/gperf/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/grep/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/grep/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/contrib/mm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/contrib/mm/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devX100-12/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devX100-12/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devX100/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devX100/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devX75-12/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devX75-12/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devX75/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devX75/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devascii/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devascii/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devcp1047/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devcp1047/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devdvi/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devdvi/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devhtml/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devhtml/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devkoi8-r/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devlatin1/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devlatin1/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devlbp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devlbp/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devlj4/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devlj4/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devps/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devps/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devutf8/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/font/devutf8/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/man/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/man/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/devices/grohtml/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/devices/grops/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/devices/grops/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/libs/libbib/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/libs/libdriver/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/preproc/html/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/preproc/html/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/roff/groff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/roff/groff/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/roff/grog/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/roff/grog/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/roff/psroff/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/roff/troff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/roff/troff/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/tmac/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/tmac/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in soc2013/def/crashdump-head/gnu/usr.bin/groff/tmac/mdoc.local.in - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/tmac/mdoc.local.in soc2013/def/crashdump-head/gnu/usr.bin/groff/tmac/ru.KOI8-R.in - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/groff/tmac/ru.KOI8-R.in soc2013/def/crashdump-head/gnu/usr.bin/rcs/ci/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/ci/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/rcs/co/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/co/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/rcs/lib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/lib/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/rcs/merge/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/merge/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/rcs/rcs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/rcs/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/rcs/rcsclean/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/rcsclean/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/rcs/rcsdiff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/rcsdiff/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/rcsfreeze/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/rcs/rcsmerge/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/rcsmerge/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/rcs/rlog/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/rcs/rlog/Makefile.depend soc2013/def/crashdump-head/gnu/usr.bin/sdiff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/gnu/usr.bin/sdiff/Makefile.depend soc2013/def/crashdump-head/lib/atf/libatf-c++/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/atf/libatf-c++/Makefile.depend soc2013/def/crashdump-head/lib/atf/libatf-c/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/atf/libatf-c/Makefile.depend soc2013/def/crashdump-head/lib/clang/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/include/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclanganalysis/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclanganalysis/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangarcmigrate/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangarcmigrate/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangast/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangast/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangbasic/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangbasic/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangcodegen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangcodegen/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangdriver/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangdriver/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangedit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangedit/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangfrontend/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangfrontend/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangfrontendtool/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangfrontendtool/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclanglex/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclanglex/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangparse/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangparse/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangrewrite/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangrewrite/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangrewritefrontend/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangrewritefrontend/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangsema/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangsema/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangserialization/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangserialization/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangstaticanalyzercheckers/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangstaticanalyzercheckers/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangstaticanalyzercore/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangstaticanalyzercore/Makefile.depend soc2013/def/crashdump-head/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libclangstaticanalyzerfrontend/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldb/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbAPI/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbAPI/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbBreakpoint/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbBreakpoint/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbCommands/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbCommands/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbCore/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbCore/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbDataFormatters/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbDataFormatters/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbExpression/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbExpression/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbHostCommon/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbHostCommon/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbHostFreeBSD/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbHostFreeBSD/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbHostPOSIX/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbHostPOSIX/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbInitialization/ - copied from r294754, mirror/FreeBSD/head/lib/clang/liblldbInitialization/ soc2013/def/crashdump-head/lib/clang/liblldbInterpreter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbInterpreter/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_arm/ - copied from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginABISysV_arm/ soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_arm64/ - copied from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginABISysV_arm64/ soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_i386/ - copied from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginABISysV_i386/ soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_mips/ - copied from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginABISysV_mips/ soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_mips64/ - copied from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginABISysV_mips64/ soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_ppc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginABISysV_ppc/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_ppc64/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginABISysV_ppc64/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_x86_64/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginABISysV_x86_64/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginCXXItaniumABI/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginCXXItaniumABI/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginDisassemblerLLVM/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginDisassemblerLLVM/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginDynamicLoaderPosixDYLD/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginDynamicLoaderPosixDYLD/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginDynamicLoaderStatic/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginDynamicLoaderStatic/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginInstructionARM/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginInstructionARM/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginInstructionARM64/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginInstructionARM64/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginInstructionMIPS/ - copied from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginInstructionMIPS/ soc2013/def/crashdump-head/lib/clang/liblldbPluginInstructionMIPS64/ - copied from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginInstructionMIPS64/ soc2013/def/crashdump-head/lib/clang/liblldbPluginInstrumentationRuntimeAddressSanitizer/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginInstrumentationRuntimeAddressSanitizer/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginJITLoaderGDB/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginJITLoaderGDB/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginMemoryHistoryASan/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginMemoryHistoryASan/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginObjectContainerBSDArchive/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginObjectContainerBSDArchive/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginObjectFileELF/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginObjectFileELF/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginObjectFileJIT/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginObjectFileJIT/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginPlatformFreeBSD/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginPlatformFreeBSD/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginPlatformGDB/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginPlatformGDB/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessElfCore/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginProcessElfCore/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessFreeBSD/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginProcessFreeBSD/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessGDBRemote/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginProcessGDBRemote/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessPOSIX/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginProcessPOSIX/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessUtility/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginProcessUtility/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginSymbolFileDWARF/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginSymbolFileDWARF/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginSymbolFileSymtab/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginSymbolFileSymtab/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginSymbolVendorELF/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginSymbolVendorELF/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginUnwindAssemblyInstEmulation/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginUnwindAssemblyInstEmulation/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbPluginUnwindAssemblyX86/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbPluginUnwindAssemblyX86/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbSymbol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbSymbol/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbTarget/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbTarget/Makefile.depend soc2013/def/crashdump-head/lib/clang/liblldbUtility/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/liblldbUtility/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmaarch64asmparser/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmaarch64asmparser/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmaarch64codegen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmaarch64codegen/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmaarch64desc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmaarch64desc/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmaarch64disassembler/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmaarch64disassembler/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmaarch64info/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmaarch64info/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmaarch64instprinter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmaarch64instprinter/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmaarch64utils/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmaarch64utils/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmanalysis/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmanalysis/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmarmasmparser/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmarmasmparser/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmarmcodegen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmarmcodegen/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmarmdesc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmarmdesc/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmarmdisassembler/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmarmdisassembler/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmarminfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmarminfo/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmarminstprinter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmarminstprinter/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmasmparser/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmasmparser/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmasmprinter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmasmprinter/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmbitreader/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmbitreader/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmbitwriter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmbitwriter/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmcodegen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmcodegen/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmcore/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmcore/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmdebuginfodwarf/ - copied from r294754, mirror/FreeBSD/head/lib/clang/libllvmdebuginfodwarf/ soc2013/def/crashdump-head/lib/clang/libllvmdebuginfopdb/ - copied from r294754, mirror/FreeBSD/head/lib/clang/libllvmdebuginfopdb/ soc2013/def/crashdump-head/lib/clang/libllvmexecutionengine/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmexecutionengine/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvminstcombine/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvminstcombine/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvminstrumentation/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvminstrumentation/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvminterpreter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvminterpreter/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmipa/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmipa/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmipo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmipo/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmirreader/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmirreader/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmlibdriver/ - copied from r294754, mirror/FreeBSD/head/lib/clang/libllvmlibdriver/ soc2013/def/crashdump-head/lib/clang/libllvmlinker/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmlinker/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmlto/ - copied from r294754, mirror/FreeBSD/head/lib/clang/libllvmlto/ soc2013/def/crashdump-head/lib/clang/libllvmmc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmc/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmcdisassembler/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmcdisassembler/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmcjit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmcjit/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmcparser/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmcparser/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmipsasmparser/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmipsasmparser/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmipscodegen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmipscodegen/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmipsdesc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmipsdesc/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmipsdisassembler/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmipsdisassembler/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmipsinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmipsinfo/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmipsinstprinter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmmipsinstprinter/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmmirparser/ - copied from r294754, mirror/FreeBSD/head/lib/clang/libllvmmirparser/ soc2013/def/crashdump-head/lib/clang/libllvmobjcarcopts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmobjcarcopts/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmobject/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmobject/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmoption/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmoption/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmorcjit/ - copied from r294754, mirror/FreeBSD/head/lib/clang/libllvmorcjit/ soc2013/def/crashdump-head/lib/clang/libllvmpasses/ - copied from r294754, mirror/FreeBSD/head/lib/clang/libllvmpasses/ soc2013/def/crashdump-head/lib/clang/libllvmpowerpcasmparser/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmpowerpcasmparser/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmpowerpccodegen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmpowerpccodegen/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmpowerpcdesc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmpowerpcdesc/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmpowerpcdisassembler/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmpowerpcdisassembler/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmpowerpcinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmpowerpcinfo/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmpowerpcinstprinter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmpowerpcinstprinter/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmprofiledata/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmprofiledata/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmruntimedyld/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmruntimedyld/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmscalaropts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmscalaropts/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmselectiondag/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmselectiondag/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmsparcasmparser/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmsparcasmparser/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmsparccodegen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmsparccodegen/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmsparcdesc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmsparcdesc/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmsparcdisassembler/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmsparcdisassembler/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmsparcinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmsparcinfo/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmsparcinstprinter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmsparcinstprinter/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmsupport/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmsupport/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmtablegen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmtablegen/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmtarget/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmtarget/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmtransformutils/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmtransformutils/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmvectorize/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmvectorize/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmx86asmparser/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmx86asmparser/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmx86codegen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmx86codegen/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmx86desc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmx86desc/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmx86disassembler/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmx86disassembler/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmx86info/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmx86info/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmx86instprinter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmx86instprinter/Makefile.depend soc2013/def/crashdump-head/lib/clang/libllvmx86utils/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/clang/libllvmx86utils/Makefile.depend soc2013/def/crashdump-head/lib/csu/amd64/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/csu/amd64/Makefile.depend soc2013/def/crashdump-head/lib/csu/arm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/csu/arm/Makefile.depend soc2013/def/crashdump-head/lib/csu/i386/ - copied from r294754, mirror/FreeBSD/head/lib/csu/i386/ soc2013/def/crashdump-head/lib/csu/mips/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/csu/mips/Makefile.depend soc2013/def/crashdump-head/lib/csu/powerpc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/csu/powerpc/Makefile.depend soc2013/def/crashdump-head/lib/csu/powerpc64/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/csu/powerpc64/Makefile.depend soc2013/def/crashdump-head/lib/csu/sparc64/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/csu/sparc64/Makefile.depend soc2013/def/crashdump-head/lib/lib80211/ - copied from r294754, mirror/FreeBSD/head/lib/lib80211/ soc2013/def/crashdump-head/lib/libalias/libalias/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libalias/libalias/Makefile.depend soc2013/def/crashdump-head/lib/libalias/modules/cuseeme/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libalias/modules/cuseeme/Makefile.depend soc2013/def/crashdump-head/lib/libalias/modules/dummy/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libalias/modules/dummy/Makefile.depend soc2013/def/crashdump-head/lib/libalias/modules/ftp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libalias/modules/ftp/Makefile.depend soc2013/def/crashdump-head/lib/libalias/modules/irc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libalias/modules/irc/Makefile.depend soc2013/def/crashdump-head/lib/libalias/modules/nbt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libalias/modules/nbt/Makefile.depend soc2013/def/crashdump-head/lib/libalias/modules/pptp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libalias/modules/pptp/Makefile.depend soc2013/def/crashdump-head/lib/libalias/modules/skinny/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libalias/modules/skinny/Makefile.depend soc2013/def/crashdump-head/lib/libalias/modules/smedia/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libalias/modules/smedia/Makefile.depend soc2013/def/crashdump-head/lib/libarchive/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libarchive/Makefile.depend soc2013/def/crashdump-head/lib/libarchive/tests/ - copied from r294754, mirror/FreeBSD/head/lib/libarchive/tests/ soc2013/def/crashdump-head/lib/libauditd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libauditd/Makefile.depend soc2013/def/crashdump-head/lib/libbegemot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libbegemot/Makefile.depend soc2013/def/crashdump-head/lib/libblocksruntime/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libblocksruntime/Makefile.depend soc2013/def/crashdump-head/lib/libbluetooth/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libbluetooth/Makefile.depend soc2013/def/crashdump-head/lib/libbsdstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libbsdstat/Makefile.depend soc2013/def/crashdump-head/lib/libbsm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libbsm/Makefile.depend soc2013/def/crashdump-head/lib/libbsnmp/libbsnmp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libbsnmp/libbsnmp/Makefile.depend soc2013/def/crashdump-head/lib/libbz2/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libbz2/Makefile.depend soc2013/def/crashdump-head/lib/libc++/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc++/Makefile.depend soc2013/def/crashdump-head/lib/libc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/Makefile.depend soc2013/def/crashdump-head/lib/libc/aarch64/gen/_ctx_start.S - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/aarch64/gen/_ctx_start.S soc2013/def/crashdump-head/lib/libc/aarch64/gen/fabs.S - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/aarch64/gen/fabs.S soc2013/def/crashdump-head/lib/libc/aarch64/gen/fpgetmask.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/aarch64/gen/fpgetmask.c soc2013/def/crashdump-head/lib/libc/aarch64/gen/fpsetmask.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/aarch64/gen/fpsetmask.c soc2013/def/crashdump-head/lib/libc/aarch64/gen/infinity.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/aarch64/gen/infinity.c soc2013/def/crashdump-head/lib/libc/aarch64/gen/makecontext.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/aarch64/gen/makecontext.c soc2013/def/crashdump-head/lib/libc/secure/ - copied from r294754, mirror/FreeBSD/head/lib/libc/secure/ soc2013/def/crashdump-head/lib/libc/stdlib/reallocarray.3 - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/stdlib/reallocarray.3 soc2013/def/crashdump-head/lib/libc/stdlib/reallocarray.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/stdlib/reallocarray.c soc2013/def/crashdump-head/lib/libc/sys/numa_getaffinity.2 - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/sys/numa_getaffinity.2 soc2013/def/crashdump-head/lib/libc/tests/gen/fmtcheck_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/gen/fmtcheck_test.c soc2013/def/crashdump-head/lib/libc/tests/gen/fmtmsg_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/gen/fmtmsg_test.c soc2013/def/crashdump-head/lib/libc/tests/gen/fnmatch_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/gen/fnmatch_test.c soc2013/def/crashdump-head/lib/libc/tests/gen/fnmatch_testcases.h - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/gen/fnmatch_testcases.h soc2013/def/crashdump-head/lib/libc/tests/gen/ftw_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/gen/ftw_test.c soc2013/def/crashdump-head/lib/libc/tests/gen/popen_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/gen/popen_test.c soc2013/def/crashdump-head/lib/libc/tests/gen/posix_spawn_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/gen/posix_spawn_test.c soc2013/def/crashdump-head/lib/libc/tests/gen/test-fnmatch.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/gen/test-fnmatch.c soc2013/def/crashdump-head/lib/libc/tests/gen/wordexp_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/gen/wordexp_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/btowc_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/btowc_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/c16rtomb_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/c16rtomb_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/iswctype_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/iswctype_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/mblen_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/mblen_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/mbrlen_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/mbrlen_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/mbrtoc16_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/mbrtoc16_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/mbrtowc_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/mbrtowc_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/mbsnrtowcs_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/mbsnrtowcs_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/mbsrtowcs_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/mbsrtowcs_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/mbstowcs_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/mbstowcs_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/mbtowc_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/mbtowc_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/towctrans_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/towctrans_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/wcrtomb_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/wcrtomb_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/wcsnrtombs_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/wcsnrtombs_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/wcsrtombs_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/wcsrtombs_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/wcstombs_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/wcstombs_test.c soc2013/def/crashdump-head/lib/libc/tests/locale/wctomb_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/locale/wctomb_test.c soc2013/def/crashdump-head/lib/libc/tests/net/ether_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/net/ether_test.c soc2013/def/crashdump-head/lib/libc/tests/net/eui64_aton_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/net/eui64_aton_test.c soc2013/def/crashdump-head/lib/libc/tests/net/eui64_ntoa_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/net/eui64_ntoa_test.c soc2013/def/crashdump-head/lib/libc/tests/net/test-eui64.h - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/net/test-eui64.h soc2013/def/crashdump-head/lib/libc/tests/stdio/fdopen_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/fdopen_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/fopen_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/fopen_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/freopen_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/freopen_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/getdelim_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/getdelim_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/mkostemp_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/mkostemp_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/open_memstream_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/open_memstream_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/open_wmemstream_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/open_wmemstream_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/perror_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/perror_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/print_positional_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/print_positional_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/printbasic_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/printbasic_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/printfloat_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/printfloat_test.c soc2013/def/crashdump-head/lib/libc/tests/stdio/scanfloat_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdio/scanfloat_test.c soc2013/def/crashdump-head/lib/libc/tests/stdlib/heapsort_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdlib/heapsort_test.c soc2013/def/crashdump-head/lib/libc/tests/stdlib/mergesort_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdlib/mergesort_test.c soc2013/def/crashdump-head/lib/libc/tests/stdlib/qsort_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdlib/qsort_test.c soc2013/def/crashdump-head/lib/libc/tests/stdlib/test-sort.h - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/stdlib/test-sort.h soc2013/def/crashdump-head/lib/libc/tests/string/stpncpy_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/string/stpncpy_test.c soc2013/def/crashdump-head/lib/libc/tests/string/strerror_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/string/strerror_test.c soc2013/def/crashdump-head/lib/libc/tests/string/wcscasecmp_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/string/wcscasecmp_test.c soc2013/def/crashdump-head/lib/libc/tests/string/wcsnlen_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/string/wcsnlen_test.c soc2013/def/crashdump-head/lib/libc/tests/sys/queue_test.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/tests/sys/queue_test.c soc2013/def/crashdump-head/lib/libc_nonshared/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc_nonshared/Makefile.depend soc2013/def/crashdump-head/lib/libcalendar/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcalendar/Makefile.depend soc2013/def/crashdump-head/lib/libcam/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcam/Makefile.depend soc2013/def/crashdump-head/lib/libcapsicum/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcapsicum/Makefile.depend soc2013/def/crashdump-head/lib/libcasper/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcasper/Makefile.depend soc2013/def/crashdump-head/lib/libclang_rt/asan-preinit/ - copied from r294754, mirror/FreeBSD/head/lib/libclang_rt/asan-preinit/ soc2013/def/crashdump-head/lib/libclang_rt/asan/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libclang_rt/asan/Makefile.depend soc2013/def/crashdump-head/lib/libclang_rt/asan_cxx/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libclang_rt/asan_cxx/Makefile.depend soc2013/def/crashdump-head/lib/libclang_rt/include/ - copied from r294754, mirror/FreeBSD/head/lib/libclang_rt/include/ soc2013/def/crashdump-head/lib/libclang_rt/profile/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libclang_rt/profile/Makefile.depend soc2013/def/crashdump-head/lib/libclang_rt/safestack/ - copied from r294754, mirror/FreeBSD/head/lib/libclang_rt/safestack/ soc2013/def/crashdump-head/lib/libclang_rt/ubsan_standalone/ - copied from r294754, mirror/FreeBSD/head/lib/libclang_rt/ubsan_standalone/ soc2013/def/crashdump-head/lib/libclang_rt/ubsan_standalone_cxx/ - copied from r294754, mirror/FreeBSD/head/lib/libclang_rt/ubsan_standalone_cxx/ soc2013/def/crashdump-head/lib/libcom_err/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcom_err/Makefile.depend soc2013/def/crashdump-head/lib/libcompat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcompat/Makefile.depend soc2013/def/crashdump-head/lib/libcompiler_rt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcompiler_rt/Makefile.depend soc2013/def/crashdump-head/lib/libcrypt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcrypt/Makefile.depend soc2013/def/crashdump-head/lib/libcrypt/tests/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcrypt/tests/Makefile.depend soc2013/def/crashdump-head/lib/libcuse/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcuse/Makefile.depend soc2013/def/crashdump-head/lib/libcxxrt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcxxrt/Makefile.depend soc2013/def/crashdump-head/lib/libcxxrt/Makefile.depend.host - copied unchanged from r294754, mirror/FreeBSD/head/lib/libcxxrt/Makefile.depend.host soc2013/def/crashdump-head/lib/libdevctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libdevctl/Makefile.depend soc2013/def/crashdump-head/lib/libdevinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libdevinfo/Makefile.depend soc2013/def/crashdump-head/lib/libdevstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libdevstat/Makefile.depend soc2013/def/crashdump-head/lib/libdpv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libdpv/Makefile.depend soc2013/def/crashdump-head/lib/libdwarf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libdwarf/Makefile.depend soc2013/def/crashdump-head/lib/libedit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libedit/Makefile.depend soc2013/def/crashdump-head/lib/libedit/edit/readline/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libedit/edit/readline/Makefile.depend soc2013/def/crashdump-head/lib/libelf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libelf/Makefile.depend soc2013/def/crashdump-head/lib/libelftc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libelftc/Makefile.depend soc2013/def/crashdump-head/lib/libevent/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libevent/Makefile.depend soc2013/def/crashdump-head/lib/libexecinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libexecinfo/Makefile.depend soc2013/def/crashdump-head/lib/libexpat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libexpat/Makefile.depend soc2013/def/crashdump-head/lib/libfetch/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libfetch/Makefile.depend soc2013/def/crashdump-head/lib/libfigpar/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libfigpar/Makefile.depend soc2013/def/crashdump-head/lib/libgeom/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libgeom/Makefile.depend soc2013/def/crashdump-head/lib/libgpio/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libgpio/Makefile.depend soc2013/def/crashdump-head/lib/libgssapi/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libgssapi/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/BIG5/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/BIG5/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/DECHanyu/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/DECHanyu/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/EUC/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/EUC/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/EUCTW/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/EUCTW/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/GBK2K/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/GBK2K/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/HZ/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/HZ/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/ISO2022/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/ISO2022/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/JOHAB/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/JOHAB/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/MSKanji/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/MSKanji/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/UES/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/UES/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/UTF1632/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/UTF1632/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/UTF7/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/UTF7/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/UTF8/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/UTF8/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/VIQR/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/VIQR/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/ZW/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/ZW/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/iconv_none/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/iconv_none/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/iconv_std/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/iconv_std/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/mapper_646/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/mapper_646/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/mapper_none/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/mapper_none/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/mapper_parallel/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/mapper_parallel/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/mapper_serial/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/mapper_serial/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/mapper_std/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/mapper_std/Makefile.depend soc2013/def/crashdump-head/lib/libiconv_modules/mapper_zone/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libiconv_modules/mapper_zone/Makefile.depend soc2013/def/crashdump-head/lib/libipsec/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libipsec/Makefile.depend soc2013/def/crashdump-head/lib/libjail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libjail/Makefile.depend soc2013/def/crashdump-head/lib/libkiconv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkiconv/Makefile.depend soc2013/def/crashdump-head/lib/libkvm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkvm/Makefile.depend soc2013/def/crashdump-head/lib/libkvm/kvm_aarch64.h - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkvm/kvm_aarch64.h soc2013/def/crashdump-head/lib/libkvm/kvm_amd64.h - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkvm/kvm_amd64.h soc2013/def/crashdump-head/lib/libkvm/kvm_arm.h - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkvm/kvm_arm.h soc2013/def/crashdump-head/lib/libkvm/kvm_i386.h - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkvm/kvm_i386.h soc2013/def/crashdump-head/lib/libkvm/kvm_minidump_aarch64.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkvm/kvm_minidump_aarch64.c soc2013/def/crashdump-head/lib/libkvm/kvm_mips.h - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkvm/kvm_mips.h soc2013/def/crashdump-head/lib/libkvm/kvm_native.3 - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkvm/kvm_native.3 soc2013/def/crashdump-head/lib/libkvm/kvm_sparc64.h - copied unchanged from r294754, mirror/FreeBSD/head/lib/libkvm/kvm_sparc64.h soc2013/def/crashdump-head/lib/libldns/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libldns/Makefile.depend soc2013/def/crashdump-head/lib/liblzma/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/liblzma/Makefile.depend soc2013/def/crashdump-head/lib/libmagic/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libmagic/Makefile.depend soc2013/def/crashdump-head/lib/libmd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libmd/Makefile.depend soc2013/def/crashdump-head/lib/libmemstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libmemstat/Makefile.depend soc2013/def/crashdump-head/lib/libmilter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libmilter/Makefile.depend soc2013/def/crashdump-head/lib/libmp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libmp/Makefile.depend soc2013/def/crashdump-head/lib/libmt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libmt/Makefile.depend soc2013/def/crashdump-head/lib/libnandfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libnandfs/Makefile.depend soc2013/def/crashdump-head/lib/libnetbsd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libnetbsd/Makefile.depend soc2013/def/crashdump-head/lib/libnetgraph/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libnetgraph/Makefile.depend soc2013/def/crashdump-head/lib/libngatm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libngatm/Makefile.depend soc2013/def/crashdump-head/lib/libnv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libnv/Makefile.depend soc2013/def/crashdump-head/lib/libnv/tests/nv_array_tests.cc - copied unchanged from r294754, mirror/FreeBSD/head/lib/libnv/tests/nv_array_tests.cc soc2013/def/crashdump-head/lib/libopenbsd/ - copied from r294754, mirror/FreeBSD/head/lib/libopenbsd/ soc2013/def/crashdump-head/lib/libopie/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libopie/Makefile.depend soc2013/def/crashdump-head/lib/libpam/libpam/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/libpam/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_chroot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_chroot/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_deny/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_deny/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_echo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_echo/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_exec/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_exec/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_ftpusers/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_ftpusers/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_group/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_group/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_guest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_guest/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_krb5/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_krb5/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_ksu/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_ksu/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_lastlog/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_lastlog/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_login_access/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_login_access/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_nologin/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_nologin/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_opie/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_opie/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_opieaccess/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_opieaccess/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_passwdqc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_passwdqc/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_permit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_permit/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_radius/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_radius/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_rhosts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_rhosts/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_rootok/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_rootok/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_securetty/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_securetty/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_self/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_self/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_ssh/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_ssh/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_tacplus/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_tacplus/Makefile.depend soc2013/def/crashdump-head/lib/libpam/modules/pam_unix/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpam/modules/pam_unix/Makefile.depend soc2013/def/crashdump-head/lib/libpam/static_modules/ - copied from r294754, mirror/FreeBSD/head/lib/libpam/static_modules/ soc2013/def/crashdump-head/lib/libpcap/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpcap/Makefile.depend soc2013/def/crashdump-head/lib/libpjdlog/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpjdlog/Makefile.depend soc2013/def/crashdump-head/lib/libpmc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libpmc/Makefile.depend soc2013/def/crashdump-head/lib/libproc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libproc/Makefile.depend soc2013/def/crashdump-head/lib/libprocstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libprocstat/Makefile.depend soc2013/def/crashdump-head/lib/libprocstat/zfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libprocstat/zfs/Makefile.depend soc2013/def/crashdump-head/lib/libradius/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libradius/Makefile.depend soc2013/def/crashdump-head/lib/librpcsec_gss/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/librpcsec_gss/Makefile.depend soc2013/def/crashdump-head/lib/librpcsvc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/librpcsvc/Makefile.depend soc2013/def/crashdump-head/lib/librt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/librt/Makefile.depend soc2013/def/crashdump-head/lib/librt/Symbol.map - copied unchanged from r294754, mirror/FreeBSD/head/lib/librt/Symbol.map soc2013/def/crashdump-head/lib/librtld_db/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/librtld_db/Makefile.depend soc2013/def/crashdump-head/lib/libsbuf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libsbuf/Makefile.depend soc2013/def/crashdump-head/lib/libsdp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libsdp/Makefile.depend soc2013/def/crashdump-head/lib/libsm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libsm/Makefile.depend soc2013/def/crashdump-head/lib/libsmb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libsmb/Makefile.depend soc2013/def/crashdump-head/lib/libsmdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libsmdb/Makefile.depend soc2013/def/crashdump-head/lib/libsmutil/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libsmutil/Makefile.depend soc2013/def/crashdump-head/lib/libsqlite3/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libsqlite3/Makefile.depend soc2013/def/crashdump-head/lib/libstand/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libstand/Makefile.depend soc2013/def/crashdump-head/lib/libstdbuf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libstdbuf/Makefile.depend soc2013/def/crashdump-head/lib/libstdthreads/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libstdthreads/Makefile.depend soc2013/def/crashdump-head/lib/libtacplus/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libtacplus/Makefile.depend soc2013/def/crashdump-head/lib/libtelnet/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libtelnet/Makefile.depend soc2013/def/crashdump-head/lib/libthr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libthr/Makefile.depend soc2013/def/crashdump-head/lib/libthread_db/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libthread_db/Makefile.depend soc2013/def/crashdump-head/lib/libucl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libucl/Makefile.depend soc2013/def/crashdump-head/lib/libufs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libufs/Makefile.depend soc2013/def/crashdump-head/lib/libugidfw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libugidfw/Makefile.depend soc2013/def/crashdump-head/lib/libulog/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libulog/Makefile.depend soc2013/def/crashdump-head/lib/libunbound/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libunbound/Makefile.depend soc2013/def/crashdump-head/lib/libusb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libusb/Makefile.depend soc2013/def/crashdump-head/lib/libusbhid/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libusbhid/Makefile.depend soc2013/def/crashdump-head/lib/libutil/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libutil/Makefile.depend soc2013/def/crashdump-head/lib/libutil/kinfo_getvmobject.3 - copied unchanged from r294754, mirror/FreeBSD/head/lib/libutil/kinfo_getvmobject.3 soc2013/def/crashdump-head/lib/libutil/kinfo_getvmobject.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libutil/kinfo_getvmobject.c soc2013/def/crashdump-head/lib/libvgl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libvgl/Makefile.depend soc2013/def/crashdump-head/lib/libvmmapi/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libvmmapi/Makefile.depend soc2013/def/crashdump-head/lib/libwrap/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libwrap/Makefile.depend soc2013/def/crashdump-head/lib/libxo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libxo/Makefile.depend soc2013/def/crashdump-head/lib/libxo/tests/ - copied from r294754, mirror/FreeBSD/head/lib/libxo/tests/ soc2013/def/crashdump-head/lib/liby/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/liby/Makefile.depend soc2013/def/crashdump-head/lib/libypclnt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libypclnt/Makefile.depend soc2013/def/crashdump-head/lib/libz/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/libz/Makefile.depend soc2013/def/crashdump-head/lib/msun/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/msun/Makefile.depend soc2013/def/crashdump-head/lib/ncurses/form/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/ncurses/form/Makefile.depend soc2013/def/crashdump-head/lib/ncurses/formw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/ncurses/formw/Makefile.depend soc2013/def/crashdump-head/lib/ncurses/menu/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/ncurses/menu/Makefile.depend soc2013/def/crashdump-head/lib/ncurses/menuw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/ncurses/menuw/Makefile.depend soc2013/def/crashdump-head/lib/ncurses/ncurses/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/ncurses/ncurses/Makefile.depend soc2013/def/crashdump-head/lib/ncurses/ncursesw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/ncurses/ncursesw/Makefile.depend soc2013/def/crashdump-head/lib/ncurses/panel/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/ncurses/panel/Makefile.depend soc2013/def/crashdump-head/lib/ncurses/panelw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/lib/ncurses/panelw/Makefile.depend soc2013/def/crashdump-head/libexec/atf/atf-check/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/atf/atf-check/Makefile.depend soc2013/def/crashdump-head/libexec/atf/atf-sh/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/atf/atf-sh/Makefile.depend soc2013/def/crashdump-head/libexec/atrun/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/atrun/Makefile.depend soc2013/def/crashdump-head/libexec/bootpd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/bootpd/Makefile.depend soc2013/def/crashdump-head/libexec/bootpd/bootpgw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/bootpd/bootpgw/Makefile.depend soc2013/def/crashdump-head/libexec/bootpd/tools/bootpef/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/bootpd/tools/bootpef/Makefile.depend soc2013/def/crashdump-head/libexec/bootpd/tools/bootptest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/bootpd/tools/bootptest/Makefile.depend soc2013/def/crashdump-head/libexec/casper/dns/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/casper/dns/Makefile.depend soc2013/def/crashdump-head/libexec/casper/grp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/casper/grp/Makefile.depend soc2013/def/crashdump-head/libexec/casper/pwd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/casper/pwd/Makefile.depend soc2013/def/crashdump-head/libexec/casper/random/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/casper/random/Makefile.depend soc2013/def/crashdump-head/libexec/casper/sysctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/casper/sysctl/Makefile.depend soc2013/def/crashdump-head/libexec/comsat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/comsat/Makefile.depend soc2013/def/crashdump-head/libexec/dma/Makefile.inc - copied unchanged from r294754, mirror/FreeBSD/head/libexec/dma/Makefile.inc soc2013/def/crashdump-head/libexec/dma/dma-mbox-create/ - copied from r294754, mirror/FreeBSD/head/libexec/dma/dma-mbox-create/ soc2013/def/crashdump-head/libexec/dma/dmagent/ - copied from r294754, mirror/FreeBSD/head/libexec/dma/dmagent/ soc2013/def/crashdump-head/libexec/fingerd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/fingerd/Makefile.depend soc2013/def/crashdump-head/libexec/ftpd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/ftpd/Makefile.depend soc2013/def/crashdump-head/libexec/getty/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/getty/Makefile.depend soc2013/def/crashdump-head/libexec/hyperv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/hyperv/Makefile.depend soc2013/def/crashdump-head/libexec/mail.local/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/mail.local/Makefile.depend soc2013/def/crashdump-head/libexec/mknetid/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/mknetid/Makefile.depend soc2013/def/crashdump-head/libexec/pppoed/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/pppoed/Makefile.depend soc2013/def/crashdump-head/libexec/rbootd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rbootd/Makefile.depend soc2013/def/crashdump-head/libexec/revnetgroup/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/revnetgroup/Makefile.depend soc2013/def/crashdump-head/libexec/rlogind/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rlogind/Makefile.depend soc2013/def/crashdump-head/libexec/rpc.rquotad/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rpc.rquotad/Makefile.depend soc2013/def/crashdump-head/libexec/rpc.rstatd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rpc.rstatd/Makefile.depend soc2013/def/crashdump-head/libexec/rpc.rusersd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rpc.rusersd/Makefile.depend soc2013/def/crashdump-head/libexec/rpc.rwalld/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rpc.rwalld/Makefile.depend soc2013/def/crashdump-head/libexec/rpc.sprayd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rpc.sprayd/Makefile.depend soc2013/def/crashdump-head/libexec/rshd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rshd/Makefile.depend soc2013/def/crashdump-head/libexec/rtld-elf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rtld-elf/Makefile.depend soc2013/def/crashdump-head/libexec/rtld-elf/paths.h - copied unchanged from r294754, mirror/FreeBSD/head/libexec/rtld-elf/paths.h soc2013/def/crashdump-head/libexec/save-entropy/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/save-entropy/Makefile.depend soc2013/def/crashdump-head/libexec/smrsh/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/smrsh/Makefile.depend soc2013/def/crashdump-head/libexec/talkd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/talkd/Makefile.depend soc2013/def/crashdump-head/libexec/tcpd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/tcpd/Makefile.depend soc2013/def/crashdump-head/libexec/telnetd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/telnetd/Makefile.depend soc2013/def/crashdump-head/libexec/tftp-proxy/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/tftp-proxy/Makefile.depend soc2013/def/crashdump-head/libexec/tftpd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/tftpd/Makefile.depend soc2013/def/crashdump-head/libexec/ulog-helper/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/ulog-helper/Makefile.depend soc2013/def/crashdump-head/libexec/ypxfr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/libexec/ypxfr/Makefile.depend soc2013/def/crashdump-head/sbin/adjkerntz/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/adjkerntz/Makefile.depend soc2013/def/crashdump-head/sbin/atm/atmconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/atm/atmconfig/Makefile.depend soc2013/def/crashdump-head/sbin/badsect/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/badsect/Makefile.depend soc2013/def/crashdump-head/sbin/bsdlabel/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/bsdlabel/Makefile.depend soc2013/def/crashdump-head/sbin/camcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/camcontrol/Makefile.depend soc2013/def/crashdump-head/sbin/camcontrol/attrib.c - copied unchanged from r294754, mirror/FreeBSD/head/sbin/camcontrol/attrib.c soc2013/def/crashdump-head/sbin/casperd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/casperd/Makefile.depend soc2013/def/crashdump-head/sbin/ccdconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ccdconfig/Makefile.depend soc2013/def/crashdump-head/sbin/clri/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/clri/Makefile.depend soc2013/def/crashdump-head/sbin/comcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/comcontrol/Makefile.depend soc2013/def/crashdump-head/sbin/conscontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/conscontrol/Makefile.depend soc2013/def/crashdump-head/sbin/ddb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ddb/Makefile.depend soc2013/def/crashdump-head/sbin/devd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/devd/Makefile.depend soc2013/def/crashdump-head/sbin/devfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/devfs/Makefile.depend soc2013/def/crashdump-head/sbin/dhclient/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/dhclient/Makefile.depend soc2013/def/crashdump-head/sbin/dmesg/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/dmesg/Makefile.depend soc2013/def/crashdump-head/sbin/dump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/dump/Makefile.depend soc2013/def/crashdump-head/sbin/dumpfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/dumpfs/Makefile.depend soc2013/def/crashdump-head/sbin/dumpon/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/dumpon/Makefile.depend soc2013/def/crashdump-head/sbin/etherswitchcfg/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/etherswitchcfg/Makefile.depend soc2013/def/crashdump-head/sbin/fdisk/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/fdisk/Makefile.depend soc2013/def/crashdump-head/sbin/fdisk_pc98/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/fdisk_pc98/Makefile.depend soc2013/def/crashdump-head/sbin/ffsinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ffsinfo/Makefile.depend soc2013/def/crashdump-head/sbin/fsck/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/fsck/Makefile.depend soc2013/def/crashdump-head/sbin/fsck_ffs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/fsck_ffs/Makefile.depend soc2013/def/crashdump-head/sbin/fsck_msdosfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/fsck_msdosfs/Makefile.depend soc2013/def/crashdump-head/sbin/fsdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/fsdb/Makefile.depend soc2013/def/crashdump-head/sbin/fsirand/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/fsirand/Makefile.depend soc2013/def/crashdump-head/sbin/gbde/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/gbde/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/cache/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/cache/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/concat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/concat/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/eli/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/eli/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/journal/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/journal/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/label/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/label/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/mirror/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/mirror/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/mountver/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/mountver/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/multipath/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/multipath/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/nop/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/nop/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/part/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/part/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/raid/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/raid/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/raid3/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/raid3/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/sched/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/sched/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/shsec/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/shsec/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/stripe/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/stripe/Makefile.depend soc2013/def/crashdump-head/sbin/geom/class/virstor/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/class/virstor/Makefile.depend soc2013/def/crashdump-head/sbin/geom/core/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/geom/core/Makefile.depend soc2013/def/crashdump-head/sbin/ggate/ggatec/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ggate/ggatec/Makefile.depend soc2013/def/crashdump-head/sbin/ggate/ggated/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ggate/ggated/Makefile.depend soc2013/def/crashdump-head/sbin/ggate/ggatel/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ggate/ggatel/Makefile.depend soc2013/def/crashdump-head/sbin/growfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/growfs/Makefile.depend soc2013/def/crashdump-head/sbin/gvinum/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/gvinum/Makefile.depend soc2013/def/crashdump-head/sbin/hastctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/hastctl/Makefile.depend soc2013/def/crashdump-head/sbin/hastd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/hastd/Makefile.depend soc2013/def/crashdump-head/sbin/ifconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ifconfig/Makefile.depend soc2013/def/crashdump-head/sbin/init/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/init/Makefile.depend soc2013/def/crashdump-head/sbin/ipf/ipf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipf/ipf/Makefile.depend soc2013/def/crashdump-head/sbin/ipf/ipfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipf/ipfs/Makefile.depend soc2013/def/crashdump-head/sbin/ipf/ipfstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipf/ipfstat/Makefile.depend soc2013/def/crashdump-head/sbin/ipf/ipftest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipf/ipftest/Makefile.depend soc2013/def/crashdump-head/sbin/ipf/ipmon/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipf/ipmon/Makefile.depend soc2013/def/crashdump-head/sbin/ipf/ipnat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipf/ipnat/Makefile.depend soc2013/def/crashdump-head/sbin/ipf/ippool/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipf/ippool/Makefile.depend soc2013/def/crashdump-head/sbin/ipf/ipresend/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipf/ipresend/Makefile.depend soc2013/def/crashdump-head/sbin/ipf/libipf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipf/libipf/Makefile.depend soc2013/def/crashdump-head/sbin/ipfw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ipfw/Makefile.depend soc2013/def/crashdump-head/sbin/iscontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/iscontrol/Makefile.depend soc2013/def/crashdump-head/sbin/kldconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/kldconfig/Makefile.depend soc2013/def/crashdump-head/sbin/kldload/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/kldload/Makefile.depend soc2013/def/crashdump-head/sbin/kldstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/kldstat/Makefile.depend soc2013/def/crashdump-head/sbin/kldunload/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/kldunload/Makefile.depend soc2013/def/crashdump-head/sbin/ldconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ldconfig/Makefile.depend soc2013/def/crashdump-head/sbin/md5/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/md5/Makefile.depend soc2013/def/crashdump-head/sbin/mdconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mdconfig/Makefile.depend soc2013/def/crashdump-head/sbin/mdmfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mdmfs/Makefile.depend soc2013/def/crashdump-head/sbin/mknod/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mknod/Makefile.depend soc2013/def/crashdump-head/sbin/mksnap_ffs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mksnap_ffs/Makefile.depend soc2013/def/crashdump-head/sbin/mount/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mount/Makefile.depend soc2013/def/crashdump-head/sbin/mount_cd9660/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mount_cd9660/Makefile.depend soc2013/def/crashdump-head/sbin/mount_fusefs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mount_fusefs/Makefile.depend soc2013/def/crashdump-head/sbin/mount_msdosfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mount_msdosfs/Makefile.depend soc2013/def/crashdump-head/sbin/mount_nfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mount_nfs/Makefile.depend soc2013/def/crashdump-head/sbin/mount_nullfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mount_nullfs/Makefile.depend soc2013/def/crashdump-head/sbin/mount_udf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mount_udf/Makefile.depend soc2013/def/crashdump-head/sbin/mount_unionfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/mount_unionfs/Makefile.depend soc2013/def/crashdump-head/sbin/nandfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/nandfs/Makefile.depend soc2013/def/crashdump-head/sbin/natd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/natd/Makefile.depend soc2013/def/crashdump-head/sbin/newfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/newfs/Makefile.depend soc2013/def/crashdump-head/sbin/newfs_msdos/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/newfs_msdos/Makefile.depend soc2013/def/crashdump-head/sbin/newfs_msdos/mkfs_msdos.c - copied unchanged from r294754, mirror/FreeBSD/head/sbin/newfs_msdos/mkfs_msdos.c soc2013/def/crashdump-head/sbin/newfs_msdos/mkfs_msdos.h - copied unchanged from r294754, mirror/FreeBSD/head/sbin/newfs_msdos/mkfs_msdos.h soc2013/def/crashdump-head/sbin/newfs_nandfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/newfs_nandfs/Makefile.depend soc2013/def/crashdump-head/sbin/nfsiod/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/nfsiod/Makefile.depend soc2013/def/crashdump-head/sbin/nos-tun/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/nos-tun/Makefile.depend soc2013/def/crashdump-head/sbin/nvmecontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/nvmecontrol/Makefile.depend soc2013/def/crashdump-head/sbin/pfctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/pfctl/Makefile.depend soc2013/def/crashdump-head/sbin/pflogd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/pflogd/Makefile.depend soc2013/def/crashdump-head/sbin/ping/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ping/Makefile.depend soc2013/def/crashdump-head/sbin/ping6/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/ping6/Makefile.depend soc2013/def/crashdump-head/sbin/quotacheck/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/quotacheck/Makefile.depend soc2013/def/crashdump-head/sbin/rcorder/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/rcorder/Makefile.depend soc2013/def/crashdump-head/sbin/reboot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/reboot/Makefile.depend soc2013/def/crashdump-head/sbin/recoverdisk/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/recoverdisk/Makefile.depend soc2013/def/crashdump-head/sbin/resolvconf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/resolvconf/Makefile.depend soc2013/def/crashdump-head/sbin/restore/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/restore/Makefile.depend soc2013/def/crashdump-head/sbin/route/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/route/Makefile.depend soc2013/def/crashdump-head/sbin/routed/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/routed/Makefile.depend soc2013/def/crashdump-head/sbin/routed/rtquery/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/routed/rtquery/Makefile.depend soc2013/def/crashdump-head/sbin/rtsol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/rtsol/Makefile.depend soc2013/def/crashdump-head/sbin/savecore/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/savecore/Makefile.depend soc2013/def/crashdump-head/sbin/sconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/sconfig/Makefile.depend soc2013/def/crashdump-head/sbin/setkey/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/setkey/Makefile.depend soc2013/def/crashdump-head/sbin/shutdown/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/shutdown/Makefile.depend soc2013/def/crashdump-head/sbin/spppcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/spppcontrol/Makefile.depend soc2013/def/crashdump-head/sbin/sunlabel/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/sunlabel/Makefile.depend soc2013/def/crashdump-head/sbin/swapon/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/swapon/Makefile.depend soc2013/def/crashdump-head/sbin/sysctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/sysctl/Makefile.depend soc2013/def/crashdump-head/sbin/tunefs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/tunefs/Makefile.depend soc2013/def/crashdump-head/sbin/umount/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sbin/umount/Makefile.depend soc2013/def/crashdump-head/share/colldef/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/Makefile.depend soc2013/def/crashdump-head/share/colldef/af_ZA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/af_ZA.UTF-8.src soc2013/def/crashdump-head/share/colldef/am_ET.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/am_ET.UTF-8.src soc2013/def/crashdump-head/share/colldef/ar_SA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/ar_SA.UTF-8.src soc2013/def/crashdump-head/share/colldef/be_BY.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/be_BY.UTF-8.src soc2013/def/crashdump-head/share/colldef/ca_AD.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/ca_AD.UTF-8.src soc2013/def/crashdump-head/share/colldef/cs_CZ.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/cs_CZ.UTF-8.src soc2013/def/crashdump-head/share/colldef/da_DK.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/da_DK.UTF-8.src soc2013/def/crashdump-head/share/colldef/el_GR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/el_GR.UTF-8.src soc2013/def/crashdump-head/share/colldef/en_US.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/en_US.UTF-8.src soc2013/def/crashdump-head/share/colldef/es_MX.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/es_MX.UTF-8.src soc2013/def/crashdump-head/share/colldef/et_EE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/et_EE.UTF-8.src soc2013/def/crashdump-head/share/colldef/fi_FI.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/fi_FI.UTF-8.src soc2013/def/crashdump-head/share/colldef/he_IL.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/he_IL.UTF-8.src soc2013/def/crashdump-head/share/colldef/hi_IN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/hi_IN.UTF-8.src soc2013/def/crashdump-head/share/colldef/hr_HR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/hr_HR.UTF-8.src soc2013/def/crashdump-head/share/colldef/hu_HU.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/hu_HU.UTF-8.src soc2013/def/crashdump-head/share/colldef/hy_AM.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/hy_AM.UTF-8.src soc2013/def/crashdump-head/share/colldef/is_IS.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/is_IS.UTF-8.src soc2013/def/crashdump-head/share/colldef/ja_JP.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/ja_JP.UTF-8.src soc2013/def/crashdump-head/share/colldef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/kk_Cyrl_KZ.UTF-8.src soc2013/def/crashdump-head/share/colldef/ko_KR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/ko_KR.UTF-8.src soc2013/def/crashdump-head/share/colldef/lt_LT.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/lt_LT.UTF-8.src soc2013/def/crashdump-head/share/colldef/lv_LV.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/lv_LV.UTF-8.src soc2013/def/crashdump-head/share/colldef/nb_NO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/nb_NO.UTF-8.src soc2013/def/crashdump-head/share/colldef/pl_PL.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/pl_PL.UTF-8.src soc2013/def/crashdump-head/share/colldef/ro_RO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/ro_RO.UTF-8.src soc2013/def/crashdump-head/share/colldef/ru_RU.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/ru_RU.UTF-8.src soc2013/def/crashdump-head/share/colldef/se_NO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/se_NO.UTF-8.src soc2013/def/crashdump-head/share/colldef/sk_SK.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/sk_SK.UTF-8.src soc2013/def/crashdump-head/share/colldef/sl_SI.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/sl_SI.UTF-8.src soc2013/def/crashdump-head/share/colldef/sv_SE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/sv_SE.UTF-8.src soc2013/def/crashdump-head/share/colldef/tr_TR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/tr_TR.UTF-8.src soc2013/def/crashdump-head/share/colldef/uk_UA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/uk_UA.UTF-8.src soc2013/def/crashdump-head/share/colldef/zh_Hans_CN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/zh_Hans_CN.UTF-8.src soc2013/def/crashdump-head/share/colldef/zh_Hant_TW.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/colldef/zh_Hant_TW.UTF-8.src soc2013/def/crashdump-head/share/ctypedef/ - copied from r294754, mirror/FreeBSD/head/share/ctypedef/ soc2013/def/crashdump-head/share/dict/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/dict/Makefile.depend soc2013/def/crashdump-head/share/doc/IPv6/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/IPv6/Makefile.depend soc2013/def/crashdump-head/share/doc/atf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/atf/Makefile.depend soc2013/def/crashdump-head/share/doc/legal/intel_ipw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/legal/intel_ipw/Makefile.depend soc2013/def/crashdump-head/share/doc/legal/intel_iwi/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/legal/intel_iwi/Makefile.depend soc2013/def/crashdump-head/share/doc/legal/intel_iwn/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/legal/intel_iwn/Makefile.depend soc2013/def/crashdump-head/share/doc/legal/intel_wpi/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/legal/intel_wpi/Makefile.depend soc2013/def/crashdump-head/share/doc/legal/realtek/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/legal/realtek/Makefile.depend soc2013/def/crashdump-head/share/doc/llvm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/llvm/Makefile.depend soc2013/def/crashdump-head/share/doc/llvm/clang/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/llvm/clang/Makefile.depend soc2013/def/crashdump-head/share/doc/papers/bsdreferences.bib - copied unchanged from r294754, mirror/FreeBSD/head/share/doc/papers/bsdreferences.bib soc2013/def/crashdump-head/share/doc/usd/10.exref/ - copied from r294754, mirror/FreeBSD/head/share/doc/usd/10.exref/ soc2013/def/crashdump-head/share/doc/usd/11.vitut/ - copied from r294754, mirror/FreeBSD/head/share/doc/usd/11.vitut/ soc2013/def/crashdump-head/share/doc/usd/12.vi/ - copied from r294754, mirror/FreeBSD/head/share/doc/usd/12.vi/ soc2013/def/crashdump-head/share/doc/usd/13.viref/ - copied from r294754, mirror/FreeBSD/head/share/doc/usd/13.viref/ soc2013/def/crashdump-head/share/dtrace/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/dtrace/Makefile.depend soc2013/def/crashdump-head/share/dtrace/blocking - copied unchanged from r294754, mirror/FreeBSD/head/share/dtrace/blocking soc2013/def/crashdump-head/share/dtrace/retval - copied unchanged from r294754, mirror/FreeBSD/head/share/dtrace/retval soc2013/def/crashdump-head/share/dtrace/siftr - copied unchanged from r294754, mirror/FreeBSD/head/share/dtrace/siftr soc2013/def/crashdump-head/share/dtrace/tcpdebug - copied unchanged from r294754, mirror/FreeBSD/head/share/dtrace/tcpdebug soc2013/def/crashdump-head/share/dtrace/toolkit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/dtrace/toolkit/Makefile.depend soc2013/def/crashdump-head/share/examples/ipfilter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/examples/ipfilter/Makefile.depend soc2013/def/crashdump-head/share/examples/libvgl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/examples/libvgl/Makefile.depend soc2013/def/crashdump-head/share/examples/pf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/examples/pf/Makefile.depend soc2013/def/crashdump-head/share/examples/smbfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/examples/smbfs/Makefile.depend soc2013/def/crashdump-head/share/examples/smbfs/print/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/examples/smbfs/print/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/APPLE/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/APPLE/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/AST/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/AST/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/BIG5/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/BIG5/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/CNS/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/CNS/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/CP/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/CP/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/EBCDIC/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/EBCDIC/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/GB/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/GB/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/GEORGIAN/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/GEORGIAN/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/ISO-8859/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/ISO-8859/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/ISO646/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/ISO646/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/JIS/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/JIS/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/KAZAKH/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/KAZAKH/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/KOI/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/KOI/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/KS/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/KS/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/MISC/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/MISC/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/Makefile.depend soc2013/def/crashdump-head/share/i18n/csmapper/TCVN/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/csmapper/TCVN/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/APPLE/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/APPLE/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/AST/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/AST/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/BIG5/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/BIG5/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/CP/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/CP/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/DEC/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/DEC/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/EBCDIC/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/EBCDIC/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/EUC/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/EUC/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/GB/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/GB/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/GEORGIAN/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/GEORGIAN/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/ISO-2022/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/ISO-2022/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/ISO-8859/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/ISO-8859/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/ISO646/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/ISO646/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/KAZAKH/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/KAZAKH/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/KOI/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/KOI/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/MISC/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/MISC/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/TCVN/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/TCVN/Makefile.depend soc2013/def/crashdump-head/share/i18n/esdb/UTF/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/i18n/esdb/UTF/Makefile.depend soc2013/def/crashdump-head/share/keys/pkg/trusted/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/keys/pkg/trusted/Makefile.depend soc2013/def/crashdump-head/share/locale-links/ - copied from r294754, mirror/FreeBSD/head/share/locale-links/ soc2013/def/crashdump-head/share/man/man1/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man1/Makefile.depend soc2013/def/crashdump-head/share/man/man3/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man3/Makefile.depend soc2013/def/crashdump-head/share/man/man4/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/Makefile.depend soc2013/def/crashdump-head/share/man/man4/cloudabi.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/cloudabi.4 soc2013/def/crashdump-head/share/man/man4/cyapa.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/cyapa.4 soc2013/def/crashdump-head/share/man/man4/dtrace_io.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/dtrace_io.4 soc2013/def/crashdump-head/share/man/man4/dtrace_ip.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/dtrace_ip.4 soc2013/def/crashdump-head/share/man/man4/dtrace_proc.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/dtrace_proc.4 soc2013/def/crashdump-head/share/man/man4/dtrace_sched.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/dtrace_sched.4 soc2013/def/crashdump-head/share/man/man4/dtrace_tcp.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/dtrace_tcp.4 soc2013/def/crashdump-head/share/man/man4/dtrace_udp.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/dtrace_udp.4 soc2013/def/crashdump-head/share/man/man4/ig4.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/ig4.4 soc2013/def/crashdump-head/share/man/man4/ioat.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/ioat.4 soc2013/def/crashdump-head/share/man/man4/isl.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/isl.4 soc2013/def/crashdump-head/share/man/man4/iwm.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/iwm.4 soc2013/def/crashdump-head/share/man/man4/iwmfw.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/iwmfw.4 soc2013/def/crashdump-head/share/man/man4/man4.arm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/man4.arm/Makefile.depend soc2013/def/crashdump-head/share/man/man4/man4.arm/am335x_dmtpps.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/man4.arm/am335x_dmtpps.4 soc2013/def/crashdump-head/share/man/man4/man4.i386/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/man4.i386/Makefile.depend soc2013/def/crashdump-head/share/man/man4/man4.powerpc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/man4.powerpc/Makefile.depend soc2013/def/crashdump-head/share/man/man4/man4.sparc64/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/man4.sparc64/Makefile.depend soc2013/def/crashdump-head/share/man/man4/mlx5en.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/mlx5en.4 soc2013/def/crashdump-head/share/man/man4/numa.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/numa.4 soc2013/def/crashdump-head/share/man/man4/otus.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/otus.4 soc2013/def/crashdump-head/share/man/man4/otusfw.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/otusfw.4 soc2013/def/crashdump-head/share/man/man4/ow.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/ow.4 soc2013/def/crashdump-head/share/man/man4/ow_temp.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/ow_temp.4 soc2013/def/crashdump-head/share/man/man4/owc.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/owc.4 soc2013/def/crashdump-head/share/man/man4/pms.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/pms.4 soc2013/def/crashdump-head/share/man/man4/rccgpio.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/rccgpio.4 soc2013/def/crashdump-head/share/man/man4/ugold.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/ugold.4 soc2013/def/crashdump-head/share/man/man4/ure.4 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man4/ure.4 soc2013/def/crashdump-head/share/man/man5/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man5/Makefile.depend soc2013/def/crashdump-head/share/man/man6/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man6/Makefile.depend soc2013/def/crashdump-head/share/man/man7/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man7/Makefile.depend soc2013/def/crashdump-head/share/man/man8/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man8/Makefile.depend soc2013/def/crashdump-head/share/man/man9/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/Makefile.depend soc2013/def/crashdump-head/share/man/man9/PCI_IOV_ADD_VF.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/PCI_IOV_ADD_VF.9 soc2013/def/crashdump-head/share/man/man9/PCI_IOV_INIT.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/PCI_IOV_INIT.9 soc2013/def/crashdump-head/share/man/man9/PCI_IOV_UNINIT.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/PCI_IOV_UNINIT.9 soc2013/def/crashdump-head/share/man/man9/PHOLD.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/PHOLD.9 soc2013/def/crashdump-head/share/man/man9/bitset.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/bitset.9 soc2013/def/crashdump-head/share/man/man9/bus_get_resource.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/bus_get_resource.9 soc2013/def/crashdump-head/share/man/man9/cpuset.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/cpuset.9 soc2013/def/crashdump-head/share/man/man9/kern_testfrwk.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/kern_testfrwk.9 soc2013/def/crashdump-head/share/man/man9/nv.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/nv.9 soc2013/def/crashdump-head/share/man/man9/owll.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/owll.9 soc2013/def/crashdump-head/share/man/man9/own.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/own.9 soc2013/def/crashdump-head/share/man/man9/pmap_quick_enter_page.9 - copied unchanged from r294754, mirror/FreeBSD/head/share/man/man9/pmap_quick_enter_page.9 soc2013/def/crashdump-head/share/me/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/me/Makefile.depend soc2013/def/crashdump-head/share/misc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/misc/Makefile.depend soc2013/def/crashdump-head/share/mk/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/Makefile.depend soc2013/def/crashdump-head/share/mk/auto.obj.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/auto.obj.mk soc2013/def/crashdump-head/share/mk/bsd.confs.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/bsd.confs.mk soc2013/def/crashdump-head/share/mk/bsd.stand.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/bsd.stand.mk soc2013/def/crashdump-head/share/mk/dirdeps.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/dirdeps.mk soc2013/def/crashdump-head/share/mk/gendirdeps.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/gendirdeps.mk soc2013/def/crashdump-head/share/mk/host-target.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/host-target.mk soc2013/def/crashdump-head/share/mk/install-new.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/install-new.mk soc2013/def/crashdump-head/share/mk/local.autodep.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/local.autodep.mk soc2013/def/crashdump-head/share/mk/local.dirdeps.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/local.dirdeps.mk soc2013/def/crashdump-head/share/mk/local.gendirdeps.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/local.gendirdeps.mk soc2013/def/crashdump-head/share/mk/local.init.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/local.init.mk soc2013/def/crashdump-head/share/mk/local.meta.sys.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/local.meta.sys.mk soc2013/def/crashdump-head/share/mk/local.sys.env.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/local.sys.env.mk soc2013/def/crashdump-head/share/mk/local.sys.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/local.sys.mk soc2013/def/crashdump-head/share/mk/meta.autodep.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/meta.autodep.mk soc2013/def/crashdump-head/share/mk/meta.stage.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/meta.stage.mk soc2013/def/crashdump-head/share/mk/meta.subdir.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/meta.subdir.mk soc2013/def/crashdump-head/share/mk/meta.sys.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/meta.sys.mk soc2013/def/crashdump-head/share/mk/meta2deps.py - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/meta2deps.py soc2013/def/crashdump-head/share/mk/meta2deps.sh - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/meta2deps.sh soc2013/def/crashdump-head/share/mk/src.init.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/src.init.mk soc2013/def/crashdump-head/share/mk/src.sys.env.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/src.sys.env.mk soc2013/def/crashdump-head/share/mk/stage-install.sh - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/stage-install.sh soc2013/def/crashdump-head/share/mk/sys.dependfile.mk - copied unchanged from r294754, mirror/FreeBSD/head/share/mk/sys.dependfile.mk soc2013/def/crashdump-head/share/monetdef/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/Makefile.depend soc2013/def/crashdump-head/share/monetdef/ar_AE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/ar_AE.UTF-8.src soc2013/def/crashdump-head/share/monetdef/ar_EG.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/ar_EG.UTF-8.src soc2013/def/crashdump-head/share/monetdef/ar_JO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/ar_JO.UTF-8.src soc2013/def/crashdump-head/share/monetdef/ar_MA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/ar_MA.UTF-8.src soc2013/def/crashdump-head/share/monetdef/ar_QA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/ar_QA.UTF-8.src soc2013/def/crashdump-head/share/monetdef/ar_SA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/ar_SA.UTF-8.src soc2013/def/crashdump-head/share/monetdef/da_DK.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/da_DK.UTF-8.src soc2013/def/crashdump-head/share/monetdef/de_AT.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/de_AT.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/en_AU.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_AU.UTF-8.src soc2013/def/crashdump-head/share/monetdef/en_CA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_CA.UTF-8.src soc2013/def/crashdump-head/share/monetdef/en_GB.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_GB.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/en_GB.US-ASCII.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_GB.US-ASCII.src soc2013/def/crashdump-head/share/monetdef/en_IE.ISO8859-1.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_IE.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/en_IE.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_IE.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/en_NZ.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_NZ.UTF-8.src soc2013/def/crashdump-head/share/monetdef/en_PH.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_PH.UTF-8.src soc2013/def/crashdump-head/share/monetdef/en_SG.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_SG.UTF-8.src soc2013/def/crashdump-head/share/monetdef/en_US.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_US.UTF-8.src soc2013/def/crashdump-head/share/monetdef/en_ZA.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_ZA.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/en_ZA.US-ASCII.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_ZA.US-ASCII.src soc2013/def/crashdump-head/share/monetdef/en_ZA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/en_ZA.UTF-8.src soc2013/def/crashdump-head/share/monetdef/es_AR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/es_AR.UTF-8.src soc2013/def/crashdump-head/share/monetdef/es_CR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/es_CR.UTF-8.src soc2013/def/crashdump-head/share/monetdef/es_MX.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/es_MX.UTF-8.src soc2013/def/crashdump-head/share/monetdef/fr_CA.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/fr_CA.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/fr_CA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/fr_CA.UTF-8.src soc2013/def/crashdump-head/share/monetdef/fr_CH.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/fr_CH.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/fr_CH.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/fr_CH.UTF-8.src soc2013/def/crashdump-head/share/monetdef/hi_IN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/hi_IN.UTF-8.src soc2013/def/crashdump-head/share/monetdef/hr_HR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/hr_HR.UTF-8.src soc2013/def/crashdump-head/share/monetdef/hu_HU.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/hu_HU.UTF-8.src soc2013/def/crashdump-head/share/monetdef/is_IS.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/is_IS.UTF-8.src soc2013/def/crashdump-head/share/monetdef/it_CH.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/it_CH.UTF-8.src soc2013/def/crashdump-head/share/monetdef/ja_JP.SJIS.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/ja_JP.SJIS.src soc2013/def/crashdump-head/share/monetdef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/kk_Cyrl_KZ.UTF-8.src soc2013/def/crashdump-head/share/monetdef/lv_LV.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/lv_LV.UTF-8.src soc2013/def/crashdump-head/share/monetdef/mn_Cyrl_MN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/mn_Cyrl_MN.UTF-8.src soc2013/def/crashdump-head/share/monetdef/nb_NO.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/nb_NO.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/nb_NO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/nb_NO.UTF-8.src soc2013/def/crashdump-head/share/monetdef/nl_BE.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/nl_BE.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/nl_NL.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/nl_NL.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/nn_NO.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/nn_NO.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/pt_BR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/pt_BR.UTF-8.src soc2013/def/crashdump-head/share/monetdef/ro_RO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/ro_RO.UTF-8.src soc2013/def/crashdump-head/share/monetdef/se_NO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/se_NO.UTF-8.src soc2013/def/crashdump-head/share/monetdef/sk_SK.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/sk_SK.UTF-8.src soc2013/def/crashdump-head/share/monetdef/sl_SI.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/sl_SI.UTF-8.src soc2013/def/crashdump-head/share/monetdef/sr_Latn_RS.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/sr_Latn_RS.UTF-8.src soc2013/def/crashdump-head/share/monetdef/sv_FI.ISO8859-1.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/sv_FI.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/sv_FI.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/sv_FI.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/sv_FI.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/sv_FI.UTF-8.src soc2013/def/crashdump-head/share/monetdef/sv_SE.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/sv_SE.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/sv_SE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/sv_SE.UTF-8.src soc2013/def/crashdump-head/share/monetdef/tr_TR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/tr_TR.UTF-8.src soc2013/def/crashdump-head/share/monetdef/zh_Hans_CN.GB2312.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/zh_Hans_CN.GB2312.src soc2013/def/crashdump-head/share/monetdef/zh_Hans_CN.GBK.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/zh_Hans_CN.GBK.src soc2013/def/crashdump-head/share/monetdef/zh_Hans_CN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/zh_Hans_CN.UTF-8.src soc2013/def/crashdump-head/share/monetdef/zh_Hans_CN.eucCN.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/zh_Hans_CN.eucCN.src soc2013/def/crashdump-head/share/monetdef/zh_Hant_HK.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/zh_Hant_HK.UTF-8.src soc2013/def/crashdump-head/share/monetdef/zh_Hant_TW.Big5.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/zh_Hant_TW.Big5.src soc2013/def/crashdump-head/share/monetdef/zh_Hant_TW.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/zh_Hant_TW.UTF-8.src soc2013/def/crashdump-head/share/msgdef/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/Makefile.depend soc2013/def/crashdump-head/share/msgdef/ar_SA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/ar_SA.UTF-8.src soc2013/def/crashdump-head/share/msgdef/cs_CZ.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/cs_CZ.UTF-8.src soc2013/def/crashdump-head/share/msgdef/de_DE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/de_DE.UTF-8.src soc2013/def/crashdump-head/share/msgdef/en_US.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/en_US.UTF-8.src soc2013/def/crashdump-head/share/msgdef/es_MX.ISO8859-1.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/es_MX.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/es_MX.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/es_MX.UTF-8.src soc2013/def/crashdump-head/share/msgdef/et_EE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/et_EE.UTF-8.src soc2013/def/crashdump-head/share/msgdef/eu_ES.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/eu_ES.UTF-8.src soc2013/def/crashdump-head/share/msgdef/fi_FI.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/fi_FI.ISO8859-15.src soc2013/def/crashdump-head/share/msgdef/fi_FI.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/fi_FI.UTF-8.src soc2013/def/crashdump-head/share/msgdef/fr_FR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/fr_FR.UTF-8.src soc2013/def/crashdump-head/share/msgdef/hi_IN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/hi_IN.UTF-8.src soc2013/def/crashdump-head/share/msgdef/hu_HU.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/hu_HU.UTF-8.src soc2013/def/crashdump-head/share/msgdef/is_IS.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/is_IS.ISO8859-15.src soc2013/def/crashdump-head/share/msgdef/is_IS.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/is_IS.UTF-8.src soc2013/def/crashdump-head/share/msgdef/it_IT.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/it_IT.ISO8859-15.src soc2013/def/crashdump-head/share/msgdef/it_IT.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/it_IT.UTF-8.src soc2013/def/crashdump-head/share/msgdef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/kk_Cyrl_KZ.UTF-8.src soc2013/def/crashdump-head/share/msgdef/lt_LT.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/lt_LT.UTF-8.src soc2013/def/crashdump-head/share/msgdef/mn_Cyrl_MN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/mn_Cyrl_MN.UTF-8.src soc2013/def/crashdump-head/share/msgdef/nb_NO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/nb_NO.UTF-8.src soc2013/def/crashdump-head/share/msgdef/nl_NL.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/nl_NL.UTF-8.src soc2013/def/crashdump-head/share/msgdef/nn_NO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/nn_NO.UTF-8.src soc2013/def/crashdump-head/share/msgdef/pl_PL.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/pl_PL.UTF-8.src soc2013/def/crashdump-head/share/msgdef/pt_PT.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/pt_PT.ISO8859-15.src soc2013/def/crashdump-head/share/msgdef/pt_PT.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/pt_PT.UTF-8.src soc2013/def/crashdump-head/share/msgdef/ro_RO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/ro_RO.UTF-8.src soc2013/def/crashdump-head/share/msgdef/se_NO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/se_NO.UTF-8.src soc2013/def/crashdump-head/share/msgdef/sk_SK.ISO8859-2.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/sk_SK.ISO8859-2.src soc2013/def/crashdump-head/share/msgdef/sk_SK.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/sk_SK.UTF-8.src soc2013/def/crashdump-head/share/msgdef/sl_SI.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/sl_SI.UTF-8.src soc2013/def/crashdump-head/share/msgdef/sr_Cyrl_RS.ISO8859-5.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/sr_Cyrl_RS.ISO8859-5.src soc2013/def/crashdump-head/share/msgdef/sr_Latn_RS.ISO8859-2.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/sr_Latn_RS.ISO8859-2.src soc2013/def/crashdump-head/share/msgdef/sr_Latn_RS.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/sr_Latn_RS.UTF-8.src soc2013/def/crashdump-head/share/msgdef/sv_SE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/sv_SE.UTF-8.src soc2013/def/crashdump-head/share/msgdef/tr_TR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/tr_TR.UTF-8.src soc2013/def/crashdump-head/share/msgdef/zh_Hans_CN.GB2312.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/zh_Hans_CN.GB2312.src soc2013/def/crashdump-head/share/msgdef/zh_Hans_CN.GBK.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/zh_Hans_CN.GBK.src soc2013/def/crashdump-head/share/msgdef/zh_Hans_CN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/zh_Hans_CN.UTF-8.src soc2013/def/crashdump-head/share/msgdef/zh_Hant_HK.Big5HKSCS.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/zh_Hant_HK.Big5HKSCS.src soc2013/def/crashdump-head/share/msgdef/zh_Hant_HK.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/zh_Hant_HK.UTF-8.src soc2013/def/crashdump-head/share/msgdef/zh_Hant_TW.Big5.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/zh_Hant_TW.Big5.src soc2013/def/crashdump-head/share/msgdef/zh_Hant_TW.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/msgdef/zh_Hant_TW.UTF-8.src soc2013/def/crashdump-head/share/numericdef/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/Makefile.depend soc2013/def/crashdump-head/share/numericdef/ar_SA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/ar_SA.UTF-8.src soc2013/def/crashdump-head/share/numericdef/en_US.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/en_US.UTF-8.src soc2013/def/crashdump-head/share/numericdef/en_ZA.US-ASCII.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/en_ZA.US-ASCII.src soc2013/def/crashdump-head/share/numericdef/fr_CH.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/fr_CH.ISO8859-15.src soc2013/def/crashdump-head/share/numericdef/fr_CH.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/fr_CH.UTF-8.src soc2013/def/crashdump-head/share/numericdef/hi_IN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/hi_IN.UTF-8.src soc2013/def/crashdump-head/share/numericdef/hy_AM.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/hy_AM.UTF-8.src soc2013/def/crashdump-head/share/numericdef/it_CH.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/it_CH.UTF-8.src soc2013/def/crashdump-head/share/numericdef/ru_RU.CP866.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/ru_RU.CP866.src soc2013/def/crashdump-head/share/numericdef/sr_Latn_RS.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/sr_Latn_RS.UTF-8.src soc2013/def/crashdump-head/share/numericdef/tr_TR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/tr_TR.UTF-8.src soc2013/def/crashdump-head/share/numericdef/uk_UA.ISO8859-5.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/uk_UA.ISO8859-5.src soc2013/def/crashdump-head/share/numericdef/uk_UA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/uk_UA.UTF-8.src soc2013/def/crashdump-head/share/numericdef/zh_Hans_CN.GB2312.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/zh_Hans_CN.GB2312.src soc2013/def/crashdump-head/share/numericdef/zh_Hans_CN.eucCN.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/zh_Hans_CN.eucCN.src soc2013/def/crashdump-head/share/numericdef/zh_Hant_TW.Big5.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/zh_Hant_TW.Big5.src soc2013/def/crashdump-head/share/security/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/security/Makefile.depend soc2013/def/crashdump-head/share/sendmail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/sendmail/Makefile.depend soc2013/def/crashdump-head/share/skel/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/skel/Makefile.depend soc2013/def/crashdump-head/share/snmp/mibs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/snmp/mibs/Makefile.depend soc2013/def/crashdump-head/share/syscons/fonts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/syscons/fonts/Makefile.depend soc2013/def/crashdump-head/share/syscons/keymaps/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/syscons/keymaps/Makefile.depend soc2013/def/crashdump-head/share/syscons/scrnmaps/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/syscons/scrnmaps/Makefile.depend soc2013/def/crashdump-head/share/tabset/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/tabset/Makefile.depend soc2013/def/crashdump-head/share/termcap/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/termcap/Makefile.depend soc2013/def/crashdump-head/share/timedef/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/Makefile.depend soc2013/def/crashdump-head/share/timedef/af_ZA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/af_ZA.UTF-8.src soc2013/def/crashdump-head/share/timedef/ar_JO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/ar_JO.UTF-8.src soc2013/def/crashdump-head/share/timedef/ar_MA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/ar_MA.UTF-8.src soc2013/def/crashdump-head/share/timedef/ar_SA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/ar_SA.UTF-8.src soc2013/def/crashdump-head/share/timedef/ca_IT.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/ca_IT.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/ca_IT.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/ca_IT.UTF-8.src soc2013/def/crashdump-head/share/timedef/da_DK.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/da_DK.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/de_AT.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/de_AT.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/de_DE.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/de_DE.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/en_CA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/en_CA.UTF-8.src soc2013/def/crashdump-head/share/timedef/en_GB.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/en_GB.UTF-8.src soc2013/def/crashdump-head/share/timedef/en_HK.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/en_HK.UTF-8.src soc2013/def/crashdump-head/share/timedef/en_IE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/en_IE.UTF-8.src soc2013/def/crashdump-head/share/timedef/en_PH.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/en_PH.UTF-8.src soc2013/def/crashdump-head/share/timedef/en_SG.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/en_SG.UTF-8.src soc2013/def/crashdump-head/share/timedef/en_US.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/en_US.UTF-8.src soc2013/def/crashdump-head/share/timedef/en_ZA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/en_ZA.UTF-8.src soc2013/def/crashdump-head/share/timedef/es_AR.ISO8859-1.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/es_AR.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/es_CR.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/es_CR.UTF-8.src soc2013/def/crashdump-head/share/timedef/es_ES.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/es_ES.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/es_MX.ISO8859-1.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/es_MX.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/es_MX.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/es_MX.UTF-8.src soc2013/def/crashdump-head/share/timedef/eu_ES.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/eu_ES.UTF-8.src soc2013/def/crashdump-head/share/timedef/fi_FI.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/fi_FI.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/fr_BE.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/fr_BE.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/fr_BE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/fr_BE.UTF-8.src soc2013/def/crashdump-head/share/timedef/fr_CA.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/fr_CA.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/fr_CA.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/fr_CA.UTF-8.src soc2013/def/crashdump-head/share/timedef/fr_CH.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/fr_CH.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/fr_CH.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/fr_CH.UTF-8.src soc2013/def/crashdump-head/share/timedef/fr_FR.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/fr_FR.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/hi_IN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/hi_IN.UTF-8.src soc2013/def/crashdump-head/share/timedef/is_IS.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/is_IS.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/it_CH.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/it_CH.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/it_CH.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/it_CH.UTF-8.src soc2013/def/crashdump-head/share/timedef/it_IT.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/it_IT.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/kk_Cyrl_KZ.UTF-8.src soc2013/def/crashdump-head/share/timedef/mn_Cyrl_MN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/mn_Cyrl_MN.UTF-8.src soc2013/def/crashdump-head/share/timedef/nb_NO.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/nb_NO.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/nl_BE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/nl_BE.UTF-8.src soc2013/def/crashdump-head/share/timedef/nl_NL.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/nl_NL.UTF-8.src soc2013/def/crashdump-head/share/timedef/nn_NO.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/nn_NO.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/pt_PT.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/pt_PT.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/se_FI.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/se_FI.UTF-8.src soc2013/def/crashdump-head/share/timedef/se_NO.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/se_NO.UTF-8.src soc2013/def/crashdump-head/share/timedef/sr_Cyrl_RS.ISO8859-5.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/sr_Cyrl_RS.ISO8859-5.src soc2013/def/crashdump-head/share/timedef/sr_Latn_RS.ISO8859-2.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/sr_Latn_RS.ISO8859-2.src soc2013/def/crashdump-head/share/timedef/sr_Latn_RS.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/sr_Latn_RS.UTF-8.src soc2013/def/crashdump-head/share/timedef/sv_FI.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/sv_FI.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/sv_FI.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/sv_FI.UTF-8.src soc2013/def/crashdump-head/share/timedef/sv_SE.ISO8859-15.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/sv_SE.ISO8859-15.src soc2013/def/crashdump-head/share/timedef/zh_Hans_CN.GB2312.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/zh_Hans_CN.GB2312.src soc2013/def/crashdump-head/share/timedef/zh_Hans_CN.GBK.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/zh_Hans_CN.GBK.src soc2013/def/crashdump-head/share/timedef/zh_Hans_CN.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/zh_Hans_CN.UTF-8.src soc2013/def/crashdump-head/share/timedef/zh_Hans_CN.eucCN.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/zh_Hans_CN.eucCN.src soc2013/def/crashdump-head/share/timedef/zh_Hant_HK.Big5HKSCS.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/zh_Hant_HK.Big5HKSCS.src soc2013/def/crashdump-head/share/timedef/zh_Hant_HK.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/zh_Hant_HK.UTF-8.src soc2013/def/crashdump-head/share/timedef/zh_Hant_TW.Big5.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/zh_Hant_TW.Big5.src soc2013/def/crashdump-head/share/timedef/zh_Hant_TW.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/zh_Hant_TW.UTF-8.src soc2013/def/crashdump-head/share/vt/fonts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/vt/fonts/Makefile.depend soc2013/def/crashdump-head/share/vt/fonts/vgarom-16x32.hex - copied unchanged from r294754, mirror/FreeBSD/head/share/vt/fonts/vgarom-16x32.hex soc2013/def/crashdump-head/share/vt/keymaps/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/vt/keymaps/Makefile.depend soc2013/def/crashdump-head/share/zoneinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/share/zoneinfo/Makefile.depend soc2013/def/crashdump-head/sys/amd64/cloudabi64/ - copied from r294754, mirror/FreeBSD/head/sys/amd64/cloudabi64/ soc2013/def/crashdump-head/sys/amd64/linux/ - copied from r294754, mirror/FreeBSD/head/sys/amd64/linux/ soc2013/def/crashdump-head/sys/amd64/linux32/linux32_vdso.lds.s - copied unchanged from r294754, mirror/FreeBSD/head/sys/amd64/linux32/linux32_vdso.lds.s soc2013/def/crashdump-head/sys/arm/allwinner/a10_ahci.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/allwinner/a10_ahci.c soc2013/def/crashdump-head/sys/arm/allwinner/a10_mmc.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/allwinner/a10_mmc.c soc2013/def/crashdump-head/sys/arm/allwinner/a10_mmc.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/allwinner/a10_mmc.h soc2013/def/crashdump-head/sys/arm/allwinner/a20/a20_if_dwc.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/allwinner/a20/a20_if_dwc.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_usb_phy-m3.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/amlogic/aml8726/aml8726_usb_phy-m3.c soc2013/def/crashdump-head/sys/arm/annapurna/ - copied from r294754, mirror/FreeBSD/head/sys/arm/annapurna/ soc2013/def/crashdump-head/sys/arm/arm/hdmi_if.m - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/arm/hdmi_if.m soc2013/def/crashdump-head/sys/arm/arm/intrng.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/arm/intrng.c soc2013/def/crashdump-head/sys/arm/arm/pic_if.m - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/arm/pic_if.m soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_vcio.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/broadcom/bcm2835/bcm2835_vcio.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2836_mp.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/broadcom/bcm2835/bcm2836_mp.c soc2013/def/crashdump-head/sys/arm/conf/A20 - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/conf/A20 soc2013/def/crashdump-head/sys/arm/conf/ALPINE - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/conf/ALPINE soc2013/def/crashdump-head/sys/arm/conf/YYHD18 - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/conf/YYHD18 soc2013/def/crashdump-head/sys/arm/conf/std.arm - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/conf/std.arm soc2013/def/crashdump-head/sys/arm/conf/std.armv6 - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/conf/std.armv6 soc2013/def/crashdump-head/sys/arm/freescale/imx/imx6_src.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/freescale/imx/imx6_src.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx6_src.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/freescale/imx/imx6_src.h soc2013/def/crashdump-head/sys/arm/include/atomic-v4.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/include/atomic-v4.h soc2013/def/crashdump-head/sys/arm/include/atomic-v6.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/include/atomic-v6.h soc2013/def/crashdump-head/sys/arm/qemu/virt_mp.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/qemu/virt_mp.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_dmtpps.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/am335x/am335x_dmtpps.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_dmtreg.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/am335x/am335x_dmtreg.h soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_ecap.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/am335x/am335x_ecap.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_ehrpwm.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/am335x/am335x_ehrpwm.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_musb.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/am335x/am335x_musb.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_pwmss.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/am335x/am335x_pwmss.c soc2013/def/crashdump-head/sys/arm/ti/am335x/tda19988.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/am335x/tda19988.c soc2013/def/crashdump-head/sys/arm/ti/am335x/tps65217x.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/am335x/tps65217x.h soc2013/def/crashdump-head/sys/arm/ti/ti_hwmods.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/ti_hwmods.c soc2013/def/crashdump-head/sys/arm/ti/ti_hwmods.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/ti_hwmods.h soc2013/def/crashdump-head/sys/arm/ti/ti_pinmux.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/ti_pinmux.c soc2013/def/crashdump-head/sys/arm/ti/ti_pinmux.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/ti_pinmux.h soc2013/def/crashdump-head/sys/arm/ti/usb/omap_host.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/usb/omap_host.c soc2013/def/crashdump-head/sys/arm/ti/usb/omap_tll.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm/ti/usb/omap_tll.c soc2013/def/crashdump-head/sys/arm64/acpica/ - copied from r294754, mirror/FreeBSD/head/sys/arm64/acpica/ soc2013/def/crashdump-head/sys/arm64/arm64/busdma_bounce.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/busdma_bounce.c soc2013/def/crashdump-head/sys/arm64/arm64/db_disasm.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/db_disasm.c soc2013/def/crashdump-head/sys/arm64/arm64/db_interface.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/db_interface.c soc2013/def/crashdump-head/sys/arm64/arm64/db_trace.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/db_trace.c soc2013/def/crashdump-head/sys/arm64/arm64/debug_monitor.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/debug_monitor.c soc2013/def/crashdump-head/sys/arm64/arm64/gic.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/gic.h soc2013/def/crashdump-head/sys/arm64/arm64/gic_acpi.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/gic_acpi.c soc2013/def/crashdump-head/sys/arm64/arm64/gic_fdt.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/gic_fdt.c soc2013/def/crashdump-head/sys/arm64/arm64/gic_v3.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/gic_v3.c soc2013/def/crashdump-head/sys/arm64/arm64/gic_v3_fdt.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/gic_v3_fdt.c soc2013/def/crashdump-head/sys/arm64/arm64/gic_v3_its.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/gic_v3_its.c soc2013/def/crashdump-head/sys/arm64/arm64/gic_v3_reg.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/gic_v3_reg.h soc2013/def/crashdump-head/sys/arm64/arm64/gic_v3_var.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/gic_v3_var.h soc2013/def/crashdump-head/sys/arm64/arm64/mp_machdep.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/mp_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/uma_machdep.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/uma_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/unwind.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/arm64/unwind.c soc2013/def/crashdump-head/sys/arm64/cavium/ - copied from r294754, mirror/FreeBSD/head/sys/arm64/cavium/ soc2013/def/crashdump-head/sys/arm64/cloudabi64/ - copied from r294754, mirror/FreeBSD/head/sys/arm64/cloudabi64/ soc2013/def/crashdump-head/sys/arm64/include/acpica_machdep.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/include/acpica_machdep.h soc2013/def/crashdump-head/sys/arm64/include/bus_dma_impl.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/include/bus_dma_impl.h soc2013/def/crashdump-head/sys/arm64/include/floatingpoint.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/include/floatingpoint.h soc2013/def/crashdump-head/sys/arm64/include/iodev.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/include/iodev.h soc2013/def/crashdump-head/sys/arm64/include/minidump.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/include/minidump.h soc2013/def/crashdump-head/sys/arm64/include/pci_cfgreg.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/arm64/include/pci_cfgreg.h soc2013/def/crashdump-head/sys/boot/common/Makefile - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/common/Makefile soc2013/def/crashdump-head/sys/boot/common/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/common/Makefile.depend soc2013/def/crashdump-head/sys/boot/common/self_reloc.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/common/self_reloc.c soc2013/def/crashdump-head/sys/boot/efi/boot1/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/efi/boot1/Makefile.depend soc2013/def/crashdump-head/sys/boot/efi/fdt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/efi/fdt/Makefile.depend soc2013/def/crashdump-head/sys/boot/efi/include/efipciio.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/efi/include/efipciio.h soc2013/def/crashdump-head/sys/boot/efi/include/efiuga.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/efi/include/efiuga.h soc2013/def/crashdump-head/sys/boot/efi/libefi/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/efi/libefi/Makefile.depend soc2013/def/crashdump-head/sys/boot/efi/loader/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/efi/loader/Makefile.depend soc2013/def/crashdump-head/sys/boot/fdt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/fdt/Makefile.depend soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/annapurna-alpine.dts - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/fdt/dts/arm/annapurna-alpine.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/bananapi.dts - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/fdt/dts/arm/bananapi.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/beaglebone-common.dtsi - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/fdt/dts/arm/beaglebone-common.dtsi soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/meson3.dtsi - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/fdt/dts/arm/meson3.dtsi soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/pandaboard-common.dtsi - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/fdt/dts/arm/pandaboard-common.dtsi soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/pandaboard-es.dts - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/fdt/dts/arm/pandaboard-es.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/yyhd18-m3.dts - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/fdt/dts/arm/yyhd18-m3.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/zybo.dts - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/fdt/dts/arm/zybo.dts soc2013/def/crashdump-head/sys/boot/ficl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/ficl/Makefile.depend soc2013/def/crashdump-head/sys/boot/ficl32/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/ficl32/Makefile.depend soc2013/def/crashdump-head/sys/boot/forth/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/forth/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/boot0/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/boot0/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/boot0sio/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/boot0sio/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/boot2/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/boot2/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/btx/btx/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/btx/btx/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/btx/btxldr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/btx/btxldr/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/btx/lib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/btx/lib/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/cdboot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/cdboot/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/gptboot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/gptboot/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/gptzfsboot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/gptzfsboot/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/kgzldr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/kgzldr/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/libfirewire/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/libfirewire/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/libi386/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/libi386/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/loader/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/loader/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/mbr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/mbr/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/pmbr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/pmbr/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/pxeldr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/pxeldr/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/zfsboot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/zfsboot/Makefile.depend soc2013/def/crashdump-head/sys/boot/i386/zfsloader/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/i386/zfsloader/Makefile.depend soc2013/def/crashdump-head/sys/boot/libstand32/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/libstand32/Makefile.depend soc2013/def/crashdump-head/sys/boot/userboot/ficl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/userboot/ficl/Makefile.depend soc2013/def/crashdump-head/sys/boot/userboot/libstand/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/userboot/libstand/Makefile.depend soc2013/def/crashdump-head/sys/boot/userboot/test/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/userboot/test/Makefile.depend soc2013/def/crashdump-head/sys/boot/userboot/userboot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/userboot/userboot/Makefile.depend soc2013/def/crashdump-head/sys/boot/userboot/zfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/userboot/zfs/Makefile.depend soc2013/def/crashdump-head/sys/boot/zfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/boot/zfs/Makefile.depend soc2013/def/crashdump-head/sys/cam/ctl/ctl_frontend_ioctl.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/cam/ctl/ctl_frontend_ioctl.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_ha.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/cam/ctl/ctl_ha.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/atomic/aarch64/ - copied from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/common/atomic/aarch64/ soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_fnvpair.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_fnvpair.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_nvpair.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_nvpair.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_nvpair_alloc_fixed.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_nvpair_alloc_fixed.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/aarch64/ - copied from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/uts/aarch64/ soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bqueue.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bqueue.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/edonr_zfs.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/edonr_zfs.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/multilist.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/multilist.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/skein_zfs.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/skein_zfs.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bqueue.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bqueue.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/multilist.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/multilist.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_priority.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_priority.h soc2013/def/crashdump-head/sys/cddl/dev/dtrace/aarch64/ - copied from r294754, mirror/FreeBSD/head/sys/cddl/dev/dtrace/aarch64/ soc2013/def/crashdump-head/sys/cddl/dev/fbt/aarch64/ - copied from r294754, mirror/FreeBSD/head/sys/cddl/dev/fbt/aarch64/ soc2013/def/crashdump-head/sys/compat/cloudabi/ - copied from r294754, mirror/FreeBSD/head/sys/compat/cloudabi/ soc2013/def/crashdump-head/sys/compat/cloudabi64/ - copied from r294754, mirror/FreeBSD/head/sys/compat/cloudabi64/ soc2013/def/crashdump-head/sys/compat/linux/linux.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/compat/linux/linux.c soc2013/def/crashdump-head/sys/compat/linux/linux.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/compat/linux/linux.h soc2013/def/crashdump-head/sys/compat/linux/linux_common.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/compat/linux/linux_common.c soc2013/def/crashdump-head/sys/compat/linux/linux_event.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/compat/linux/linux_event.c soc2013/def/crashdump-head/sys/compat/linux/linux_event.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/compat/linux/linux_event.h soc2013/def/crashdump-head/sys/compat/linux/linux_vdso.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/compat/linux/linux_vdso.c soc2013/def/crashdump-head/sys/compat/linux/linux_vdso.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/compat/linux/linux_vdso.h soc2013/def/crashdump-head/sys/compat/linuxkpi/ - copied from r294754, mirror/FreeBSD/head/sys/compat/linuxkpi/ soc2013/def/crashdump-head/sys/contrib/alpine-hal/ - copied from r294754, mirror/FreeBSD/head/sys/contrib/alpine-hal/ soc2013/def/crashdump-head/sys/contrib/cloudabi/ - copied from r294754, mirror/FreeBSD/head/sys/contrib/cloudabi/ soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/ahtable.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/dev/acpica/common/ahtable.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbobject.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/dev/acpica/components/debugger/dbobject.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dsdebug.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/dev/acpica/components/dispatcher/dsdebug.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utnonansi.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/dev/acpica/components/utilities/utnonansi.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acclib.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/dev/acpica/include/acclib.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acuuid.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/dev/acpica/include/acuuid.h soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9462_2p0_initvals.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/dev/ath/ath_hal/ar9300/ar9462_2p0_initvals.h soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9462_2p1_initvals.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/dev/ath/ath_hal/ar9300/ar9462_2p1_initvals.h soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar953x.ini - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/dev/ath/ath_hal/ar9300/ar953x.ini soc2013/def/crashdump-head/sys/contrib/dev/iwm/ - copied from r294754, mirror/FreeBSD/head/sys/contrib/dev/iwm/ soc2013/def/crashdump-head/sys/contrib/dev/otus/ - copied from r294754, mirror/FreeBSD/head/sys/contrib/dev/otus/ soc2013/def/crashdump-head/sys/contrib/libnv/ - copied from r294754, mirror/FreeBSD/head/sys/contrib/libnv/ soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_killable.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_killable.h soc2013/def/crashdump-head/sys/dev/ath/if_ath_descdma.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/ath/if_ath_descdma.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_descdma.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/ath/if_ath_descdma.h soc2013/def/crashdump-head/sys/dev/ath/if_ath_ioctl.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/ath/if_ath_ioctl.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_ioctl.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/ath/if_ath_ioctl.h soc2013/def/crashdump-head/sys/dev/cxgbe/firmware/t4fw-1.14.4.0.bin.uu - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/cxgbe/firmware/t4fw-1.14.4.0.bin.uu soc2013/def/crashdump-head/sys/dev/cxgbe/firmware/t5fw-1.14.4.0.bin.uu - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/cxgbe/firmware/t5fw-1.14.4.0.bin.uu soc2013/def/crashdump-head/sys/dev/cyapa/ - copied from r294754, mirror/FreeBSD/head/sys/dev/cyapa/ soc2013/def/crashdump-head/sys/dev/dwc/if_dwc_if.m - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/dwc/if_dwc_if.m soc2013/def/crashdump-head/sys/dev/dwc/if_dwcvar.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/dwc/if_dwcvar.h soc2013/def/crashdump-head/sys/dev/etherswitch/e6000sw/ - copied from r294754, mirror/FreeBSD/head/sys/dev/etherswitch/e6000sw/ soc2013/def/crashdump-head/sys/dev/gpio/gpiobacklight.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/gpio/gpiobacklight.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_arm64.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/hwpmc/hwpmc_arm64.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_arm64.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/hwpmc/hwpmc_arm64.h soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_arm64_md.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/hwpmc/hwpmc_arm64_md.c soc2013/def/crashdump-head/sys/dev/ichiic/ - copied from r294754, mirror/FreeBSD/head/sys/dev/ichiic/ soc2013/def/crashdump-head/sys/dev/ioat/ - copied from r294754, mirror/FreeBSD/head/sys/dev/ioat/ soc2013/def/crashdump-head/sys/dev/isl/ - copied from r294754, mirror/FreeBSD/head/sys/dev/isl/ soc2013/def/crashdump-head/sys/dev/iwm/ - copied from r294754, mirror/FreeBSD/head/sys/dev/iwm/ soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_x550.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/ixgbe/ixgbe_x550.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_x550.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/ixgbe/ixgbe_x550.h soc2013/def/crashdump-head/sys/dev/ixl/i40e_devids.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/ixl/i40e_devids.h soc2013/def/crashdump-head/sys/dev/mlx5/ - copied from r294754, mirror/FreeBSD/head/sys/dev/mlx5/ soc2013/def/crashdump-head/sys/dev/mmc/host/dwmmc_hisi.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/mmc/host/dwmmc_hisi.c soc2013/def/crashdump-head/sys/dev/mmc/host/dwmmc_reg.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/mmc/host/dwmmc_reg.h soc2013/def/crashdump-head/sys/dev/mmc/host/dwmmc_var.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/mmc/host/dwmmc_var.h soc2013/def/crashdump-head/sys/dev/nand/nfc_rb.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/nand/nfc_rb.c soc2013/def/crashdump-head/sys/dev/otus/ - copied from r294754, mirror/FreeBSD/head/sys/dev/otus/ soc2013/def/crashdump-head/sys/dev/ow/ - copied from r294754, mirror/FreeBSD/head/sys/dev/ow/ soc2013/def/crashdump-head/sys/dev/pci/pci_host_generic.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/pci/pci_host_generic.c soc2013/def/crashdump-head/sys/dev/pci/pci_iov.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/pci/pci_iov.h soc2013/def/crashdump-head/sys/dev/pci/pci_iov_if.m - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/pci/pci_iov_if.m soc2013/def/crashdump-head/sys/dev/pms/ - copied from r294754, mirror/FreeBSD/head/sys/dev/pms/ soc2013/def/crashdump-head/sys/dev/proto/proto_bus_isa.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/proto/proto_bus_isa.c soc2013/def/crashdump-head/sys/dev/proto/proto_busdma.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/proto/proto_busdma.c soc2013/def/crashdump-head/sys/dev/proto/proto_busdma.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/proto/proto_busdma.h soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_boot.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/qlxgbe/ql_boot.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_fw.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/qlxgbe/ql_fw.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_minidump.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/qlxgbe/ql_minidump.c soc2013/def/crashdump-head/sys/dev/random/other_algorithm.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/random/other_algorithm.c soc2013/def/crashdump-head/sys/dev/random/other_algorithm.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/random/other_algorithm.h soc2013/def/crashdump-head/sys/dev/random/random_infra.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/random/random_infra.c soc2013/def/crashdump-head/sys/dev/rccgpio/ - copied from r294754, mirror/FreeBSD/head/sys/dev/rccgpio/ soc2013/def/crashdump-head/sys/dev/sfxge/common/ef10_tlv_layout.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/ef10_tlv_layout.h soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_check.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/efx_check.h soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_crc32.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/efx_crc32.c soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_hash.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/efx_hash.c soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_phy_ids.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/efx_phy_ids.h soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_ev.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_ev.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_filter.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_filter.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_impl.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_impl.h soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_intr.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_intr.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_mac.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_mac.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_mcdi.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_mcdi.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_nic.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_nic.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_nvram.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_nvram.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_phy.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_phy.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_rx.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_rx.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_sram.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_sram.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_tx.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_tx.c soc2013/def/crashdump-head/sys/dev/sfxge/common/hunt_vpd.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/hunt_vpd.c soc2013/def/crashdump-head/sys/dev/sfxge/common/mcdi_mon.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/mcdi_mon.c soc2013/def/crashdump-head/sys/dev/sfxge/common/mcdi_mon.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/mcdi_mon.h soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_mcdi.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/common/siena_mcdi.c soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_ioc.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/sfxge_ioc.h soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_nvram.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/sfxge/sfxge_nvram.c soc2013/def/crashdump-head/sys/dev/usb/controller/dwc_otg_hisi.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/usb/controller/dwc_otg_hisi.c soc2013/def/crashdump-head/sys/dev/usb/misc/ugold.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/usb/misc/ugold.c soc2013/def/crashdump-head/sys/dev/usb/net/if_ure.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/usb/net/if_ure.c soc2013/def/crashdump-head/sys/dev/usb/net/if_urereg.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/usb/net/if_urereg.h soc2013/def/crashdump-head/sys/dev/usb/template/usb_template_midi.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/usb/template/usb_template_midi.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_urtwnvar.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/usb/wlan/if_urtwnvar.h soc2013/def/crashdump-head/sys/dev/vnic/ - copied from r294754, mirror/FreeBSD/head/sys/dev/vnic/ soc2013/def/crashdump-head/sys/dev/vt/logo/logo_beastie.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/vt/logo/logo_beastie.c soc2013/def/crashdump-head/sys/dev/vt/vt_cpulogos.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/vt/vt_cpulogos.c soc2013/def/crashdump-head/sys/dev/xen/console/xen_console.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/dev/xen/console/xen_console.c soc2013/def/crashdump-head/sys/i386/linux/linux_vdso.lds.s - copied unchanged from r294754, mirror/FreeBSD/head/sys/i386/linux/linux_vdso.lds.s soc2013/def/crashdump-head/sys/kern/kern_numa.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/kern/kern_numa.c soc2013/def/crashdump-head/sys/libkern/arm/memclr.S - copied unchanged from r294754, mirror/FreeBSD/head/sys/libkern/arm/memclr.S soc2013/def/crashdump-head/sys/libkern/ffsll.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/libkern/ffsll.c soc2013/def/crashdump-head/sys/mips/atheros/qca953x_chip.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/atheros/qca953x_chip.c soc2013/def/crashdump-head/sys/mips/atheros/qca953x_chip.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/atheros/qca953x_chip.h soc2013/def/crashdump-head/sys/mips/atheros/qca953xreg.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/atheros/qca953xreg.h soc2013/def/crashdump-head/sys/mips/atheros/qca955x_pci.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/atheros/qca955x_pci.c soc2013/def/crashdump-head/sys/mips/conf/AP143 - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/AP143 soc2013/def/crashdump-head/sys/mips/conf/AP143.hints - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/AP143.hints soc2013/def/crashdump-head/sys/mips/conf/BERI_SIM_VIRTIO - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/BERI_SIM_VIRTIO soc2013/def/crashdump-head/sys/mips/conf/ERL - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/ERL soc2013/def/crashdump-head/sys/mips/conf/ONIONOMEGA - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/ONIONOMEGA soc2013/def/crashdump-head/sys/mips/conf/ONIONOMEGA.hints - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/ONIONOMEGA.hints soc2013/def/crashdump-head/sys/mips/conf/QCA953X_BASE - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/QCA953X_BASE soc2013/def/crashdump-head/sys/mips/conf/QCA953X_BASE.hints - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/QCA953X_BASE.hints soc2013/def/crashdump-head/sys/mips/conf/TL-ARCHERC7V2 - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/TL-ARCHERC7V2 soc2013/def/crashdump-head/sys/mips/conf/TL-ARCHERC7V2.hints - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/TL-ARCHERC7V2.hints soc2013/def/crashdump-head/sys/mips/conf/TL-WR740Nv4 - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/TL-WR740Nv4 soc2013/def/crashdump-head/sys/mips/conf/TL-WR740Nv4.hints - copied unchanged from r294754, mirror/FreeBSD/head/sys/mips/conf/TL-WR740Nv4.hints soc2013/def/crashdump-head/sys/modules/am335x_dmtpps/ - copied from r294754, mirror/FreeBSD/head/sys/modules/am335x_dmtpps/ soc2013/def/crashdump-head/sys/modules/cloudabi/ - copied from r294754, mirror/FreeBSD/head/sys/modules/cloudabi/ soc2013/def/crashdump-head/sys/modules/cloudabi64/ - copied from r294754, mirror/FreeBSD/head/sys/modules/cloudabi64/ soc2013/def/crashdump-head/sys/modules/dtrace/systrace_linux/ - copied from r294754, mirror/FreeBSD/head/sys/modules/dtrace/systrace_linux/ soc2013/def/crashdump-head/sys/modules/filemon/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/sys/modules/filemon/Makefile.depend soc2013/def/crashdump-head/sys/modules/geom/geom_map/ - copied from r294754, mirror/FreeBSD/head/sys/modules/geom/geom_map/ soc2013/def/crashdump-head/sys/modules/i2c/controllers/ichiic/ - copied from r294754, mirror/FreeBSD/head/sys/modules/i2c/controllers/ichiic/ soc2013/def/crashdump-head/sys/modules/i2c/cyapa/ - copied from r294754, mirror/FreeBSD/head/sys/modules/i2c/cyapa/ soc2013/def/crashdump-head/sys/modules/i2c/isl/ - copied from r294754, mirror/FreeBSD/head/sys/modules/i2c/isl/ soc2013/def/crashdump-head/sys/modules/if_enc/ - copied from r294754, mirror/FreeBSD/head/sys/modules/if_enc/ soc2013/def/crashdump-head/sys/modules/ioat/ - copied from r294754, mirror/FreeBSD/head/sys/modules/ioat/ soc2013/def/crashdump-head/sys/modules/iwm/ - copied from r294754, mirror/FreeBSD/head/sys/modules/iwm/ soc2013/def/crashdump-head/sys/modules/iwmfw/ - copied from r294754, mirror/FreeBSD/head/sys/modules/iwmfw/ soc2013/def/crashdump-head/sys/modules/linux64/ - copied from r294754, mirror/FreeBSD/head/sys/modules/linux64/ soc2013/def/crashdump-head/sys/modules/linux_common/ - copied from r294754, mirror/FreeBSD/head/sys/modules/linux_common/ soc2013/def/crashdump-head/sys/modules/linuxkpi/ - copied from r294754, mirror/FreeBSD/head/sys/modules/linuxkpi/ soc2013/def/crashdump-head/sys/modules/mlx5/ - copied from r294754, mirror/FreeBSD/head/sys/modules/mlx5/ soc2013/def/crashdump-head/sys/modules/mlx5en/ - copied from r294754, mirror/FreeBSD/head/sys/modules/mlx5en/ soc2013/def/crashdump-head/sys/modules/otus/ - copied from r294754, mirror/FreeBSD/head/sys/modules/otus/ soc2013/def/crashdump-head/sys/modules/otusfw/ - copied from r294754, mirror/FreeBSD/head/sys/modules/otusfw/ soc2013/def/crashdump-head/sys/modules/ow/ - copied from r294754, mirror/FreeBSD/head/sys/modules/ow/ soc2013/def/crashdump-head/sys/modules/pms/ - copied from r294754, mirror/FreeBSD/head/sys/modules/pms/ soc2013/def/crashdump-head/sys/modules/random_fortuna/ - copied from r294754, mirror/FreeBSD/head/sys/modules/random_fortuna/ soc2013/def/crashdump-head/sys/modules/random_other/ - copied from r294754, mirror/FreeBSD/head/sys/modules/random_other/ soc2013/def/crashdump-head/sys/modules/random_yarrow/ - copied from r294754, mirror/FreeBSD/head/sys/modules/random_yarrow/ soc2013/def/crashdump-head/sys/modules/rccgpio/ - copied from r294754, mirror/FreeBSD/head/sys/modules/rccgpio/ soc2013/def/crashdump-head/sys/modules/tests/ - copied from r294754, mirror/FreeBSD/head/sys/modules/tests/ soc2013/def/crashdump-head/sys/modules/usb/ugold/ - copied from r294754, mirror/FreeBSD/head/sys/modules/usb/ugold/ soc2013/def/crashdump-head/sys/modules/usb/ure/ - copied from r294754, mirror/FreeBSD/head/sys/modules/usb/ure/ soc2013/def/crashdump-head/sys/net/altq/altq_codel.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/net/altq/altq_codel.c soc2013/def/crashdump-head/sys/net/altq/altq_codel.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/net/altq/altq_codel.h soc2013/def/crashdump-head/sys/net/altq/altq_fairq.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/net/altq/altq_fairq.c soc2013/def/crashdump-head/sys/net/altq/altq_fairq.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/net/altq/altq_fairq.h soc2013/def/crashdump-head/sys/netinet/tcp_pcap.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/netinet/tcp_pcap.c soc2013/def/crashdump-head/sys/netinet/tcp_pcap.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/netinet/tcp_pcap.h soc2013/def/crashdump-head/sys/pc98/include/ofw_machdep.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/pc98/include/ofw_machdep.h soc2013/def/crashdump-head/sys/powerpc/aim/aim_machdep.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/powerpc/aim/aim_machdep.c soc2013/def/crashdump-head/sys/powerpc/booke/booke_machdep.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/powerpc/booke/booke_machdep.c soc2013/def/crashdump-head/sys/powerpc/mikrotik/ - copied from r294754, mirror/FreeBSD/head/sys/powerpc/mikrotik/ soc2013/def/crashdump-head/sys/powerpc/mpc85xx/pci_mpc85xx_pcib.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/powerpc/mpc85xx/pci_mpc85xx_pcib.c soc2013/def/crashdump-head/sys/powerpc/mpc85xx/qoriq_gpio.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/powerpc/mpc85xx/qoriq_gpio.c soc2013/def/crashdump-head/sys/powerpc/powerpc/interrupt.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/powerpc/powerpc/interrupt.c soc2013/def/crashdump-head/sys/powerpc/powerpc/machdep.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/powerpc/powerpc/machdep.c soc2013/def/crashdump-head/sys/powerpc/powerpc/uma_machdep.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/powerpc/powerpc/uma_machdep.c soc2013/def/crashdump-head/sys/sparc64/pci/ofw_pci.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/sparc64/pci/ofw_pci.c soc2013/def/crashdump-head/sys/sys/_vm_domain.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/sys/_vm_domain.h soc2013/def/crashdump-head/sys/sys/numa.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/sys/numa.h soc2013/def/crashdump-head/sys/tests/ - copied from r294754, mirror/FreeBSD/head/sys/tests/ soc2013/def/crashdump-head/sys/vm/vm_domain.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/vm/vm_domain.c soc2013/def/crashdump-head/sys/vm/vm_domain.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/vm/vm_domain.h soc2013/def/crashdump-head/sys/x86/include/stack.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/x86/include/stack.h soc2013/def/crashdump-head/sys/x86/include/xen/ - copied from r294754, mirror/FreeBSD/head/sys/x86/include/xen/ soc2013/def/crashdump-head/sys/x86/x86/bus_machdep.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/x86/x86/bus_machdep.c soc2013/def/crashdump-head/sys/x86/x86/stack_machdep.c - copied unchanged from r294754, mirror/FreeBSD/head/sys/x86/x86/stack_machdep.c soc2013/def/crashdump-head/sys/xen/interface/arch-x86/pmu.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/xen/interface/arch-x86/pmu.h soc2013/def/crashdump-head/sys/xen/interface/errno.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/xen/interface/errno.h soc2013/def/crashdump-head/sys/xen/interface/gcov.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/xen/interface/gcov.h soc2013/def/crashdump-head/sys/xen/interface/hvm/hvm_xs_strings.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/xen/interface/hvm/hvm_xs_strings.h soc2013/def/crashdump-head/sys/xen/interface/hvm/pvdrivers.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/xen/interface/hvm/pvdrivers.h soc2013/def/crashdump-head/sys/xen/interface/pmu.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/xen/interface/pmu.h soc2013/def/crashdump-head/sys/xen/interface/vm_event.h - copied unchanged from r294754, mirror/FreeBSD/head/sys/xen/interface/vm_event.h soc2013/def/crashdump-head/sys/xen/xenmem/ - copied from r294754, mirror/FreeBSD/head/sys/xen/xenmem/ soc2013/def/crashdump-head/targets/ - copied from r294754, mirror/FreeBSD/head/targets/ soc2013/def/crashdump-head/tools/build/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/Makefile.depend soc2013/def/crashdump-head/tools/build/options/WITHOUT_DEBUG_FILES - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITHOUT_DEBUG_FILES soc2013/def/crashdump-head/tools/build/options/WITHOUT_ELFCOPY_AS_OBJCOPY - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITHOUT_ELFCOPY_AS_OBJCOPY soc2013/def/crashdump-head/tools/build/options/WITHOUT_LLDB - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITHOUT_LLDB soc2013/def/crashdump-head/tools/build/options/WITHOUT_MANDOCDB - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITHOUT_MANDOCDB soc2013/def/crashdump-head/tools/build/options/WITH_AUTO_OBJ - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_AUTO_OBJ soc2013/def/crashdump-head/tools/build/options/WITH_CCACHE_BUILD - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_CCACHE_BUILD soc2013/def/crashdump-head/tools/build/options/WITH_DIRDEPS_BUILD - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_DIRDEPS_BUILD soc2013/def/crashdump-head/tools/build/options/WITH_DIRDEPS_CACHE - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_DIRDEPS_CACHE soc2013/def/crashdump-head/tools/build/options/WITH_DTRACE_TESTS - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_DTRACE_TESTS soc2013/def/crashdump-head/tools/build/options/WITH_ELFCOPY_AS_OBJCOPY - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_ELFCOPY_AS_OBJCOPY soc2013/def/crashdump-head/tools/build/options/WITH_FAST_DEPEND - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_FAST_DEPEND soc2013/def/crashdump-head/tools/build/options/WITH_META_MODE - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_META_MODE soc2013/def/crashdump-head/tools/build/options/WITH_STAGING - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_STAGING soc2013/def/crashdump-head/tools/build/options/WITH_STAGING_MAN - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_STAGING_MAN soc2013/def/crashdump-head/tools/build/options/WITH_STAGING_PROG - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_STAGING_PROG soc2013/def/crashdump-head/tools/build/options/WITH_STALE_STAGED - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_STALE_STAGED soc2013/def/crashdump-head/tools/build/options/WITH_SYSROOT - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/options/WITH_SYSROOT soc2013/def/crashdump-head/tools/build/stdlib.h - copied unchanged from r294754, mirror/FreeBSD/head/tools/build/stdlib.h soc2013/def/crashdump-head/tools/bus_space/C/libbus.h - copied unchanged from r294754, mirror/FreeBSD/head/tools/bus_space/C/libbus.h soc2013/def/crashdump-head/tools/bus_space/bus.c - copied unchanged from r294754, mirror/FreeBSD/head/tools/bus_space/bus.c soc2013/def/crashdump-head/tools/bus_space/bus.h - copied unchanged from r294754, mirror/FreeBSD/head/tools/bus_space/bus.h soc2013/def/crashdump-head/tools/bus_space/busdma.c - copied unchanged from r294754, mirror/FreeBSD/head/tools/bus_space/busdma.c soc2013/def/crashdump-head/tools/bus_space/busdma.h - copied unchanged from r294754, mirror/FreeBSD/head/tools/bus_space/busdma.h soc2013/def/crashdump-head/tools/bus_space/examples/ - copied from r294754, mirror/FreeBSD/head/tools/bus_space/examples/ soc2013/def/crashdump-head/tools/regression/include/stdatomic/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/tools/regression/include/stdatomic/Makefile.depend soc2013/def/crashdump-head/tools/test/net/ - copied from r294754, mirror/FreeBSD/head/tools/test/net/ soc2013/def/crashdump-head/tools/tools/ath/ath_ee_9300_print/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/tools/tools/ath/ath_ee_9300_print/Makefile.depend soc2013/def/crashdump-head/tools/tools/drm/radeon/mkregtable/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/tools/tools/drm/radeon/mkregtable/Makefile.depend soc2013/def/crashdump-head/tools/tools/indent_wrapper/ - copied from r294754, mirror/FreeBSD/head/tools/tools/indent_wrapper/ soc2013/def/crashdump-head/tools/tools/ioat/ - copied from r294754, mirror/FreeBSD/head/tools/tools/ioat/ soc2013/def/crashdump-head/tools/tools/locale/ - copied from r294754, mirror/FreeBSD/head/tools/tools/locale/ soc2013/def/crashdump-head/tools/tools/makeroot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/tools/tools/makeroot/Makefile.depend soc2013/def/crashdump-head/tools/tools/usbtest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/tools/tools/usbtest/Makefile.depend soc2013/def/crashdump-head/usr.bin/addr2line/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/addr2line/Makefile.depend soc2013/def/crashdump-head/usr.bin/alias/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/alias/Makefile.depend soc2013/def/crashdump-head/usr.bin/apply/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/apply/Makefile.depend soc2013/def/crashdump-head/usr.bin/ar/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ar/Makefile.depend soc2013/def/crashdump-head/usr.bin/asa/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/asa/Makefile.depend soc2013/def/crashdump-head/usr.bin/at/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/at/Makefile.depend soc2013/def/crashdump-head/usr.bin/atm/sscop/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/atm/sscop/Makefile.depend soc2013/def/crashdump-head/usr.bin/awk/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/awk/Makefile.depend soc2013/def/crashdump-head/usr.bin/banner/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/banner/Makefile.depend soc2013/def/crashdump-head/usr.bin/basename/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/basename/Makefile.depend soc2013/def/crashdump-head/usr.bin/bc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/bc/Makefile.depend soc2013/def/crashdump-head/usr.bin/biff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/biff/Makefile.depend soc2013/def/crashdump-head/usr.bin/bluetooth/bthost/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/bluetooth/bthost/Makefile.depend soc2013/def/crashdump-head/usr.bin/bluetooth/btsockstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/bluetooth/btsockstat/Makefile.depend soc2013/def/crashdump-head/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/bluetooth/rfcomm_sppd/Makefile.depend soc2013/def/crashdump-head/usr.bin/bmake/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/bmake/Makefile.depend soc2013/def/crashdump-head/usr.bin/brandelf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/brandelf/Makefile.depend soc2013/def/crashdump-head/usr.bin/bsdiff/bsdiff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/bsdiff/bsdiff/Makefile.depend soc2013/def/crashdump-head/usr.bin/bsdiff/bspatch/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/bsdiff/bspatch/Makefile.depend soc2013/def/crashdump-head/usr.bin/bzip2/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/bzip2/Makefile.depend soc2013/def/crashdump-head/usr.bin/bzip2recover/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/bzip2recover/Makefile.depend soc2013/def/crashdump-head/usr.bin/c89/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/c89/Makefile.depend soc2013/def/crashdump-head/usr.bin/c99/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/c99/Makefile.depend soc2013/def/crashdump-head/usr.bin/caesar/ - copied from r294754, mirror/FreeBSD/head/usr.bin/caesar/ soc2013/def/crashdump-head/usr.bin/calendar/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/calendar/Makefile.depend soc2013/def/crashdump-head/usr.bin/cap_mkdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/cap_mkdb/Makefile.depend soc2013/def/crashdump-head/usr.bin/catman/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/catman/Makefile.depend soc2013/def/crashdump-head/usr.bin/chat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/chat/Makefile.depend soc2013/def/crashdump-head/usr.bin/checknr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/checknr/Makefile.depend soc2013/def/crashdump-head/usr.bin/chkey/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/chkey/Makefile.depend soc2013/def/crashdump-head/usr.bin/chpass/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/chpass/Makefile.depend soc2013/def/crashdump-head/usr.bin/cksum/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/cksum/Makefile.depend soc2013/def/crashdump-head/usr.bin/clang/clang-tblgen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/clang/clang-tblgen/Makefile.depend soc2013/def/crashdump-head/usr.bin/clang/clang/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/clang/clang/Makefile.depend soc2013/def/crashdump-head/usr.bin/clang/lldb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/clang/lldb/Makefile.depend soc2013/def/crashdump-head/usr.bin/clang/llvm-cxxdump/ - copied from r294754, mirror/FreeBSD/head/usr.bin/clang/llvm-cxxdump/ soc2013/def/crashdump-head/usr.bin/clang/llvm-dwarfdump/ - copied from r294754, mirror/FreeBSD/head/usr.bin/clang/llvm-dwarfdump/ soc2013/def/crashdump-head/usr.bin/clang/llvm-lto/ - copied from r294754, mirror/FreeBSD/head/usr.bin/clang/llvm-lto/ soc2013/def/crashdump-head/usr.bin/clang/llvm-pdbdump/ - copied from r294754, mirror/FreeBSD/head/usr.bin/clang/llvm-pdbdump/ soc2013/def/crashdump-head/usr.bin/clang/tblgen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/clang/tblgen/Makefile.depend soc2013/def/crashdump-head/usr.bin/cmp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/cmp/Makefile.depend soc2013/def/crashdump-head/usr.bin/col/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/col/Makefile.depend soc2013/def/crashdump-head/usr.bin/col/tests/ - copied from r294754, mirror/FreeBSD/head/usr.bin/col/tests/ soc2013/def/crashdump-head/usr.bin/colcrt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/colcrt/Makefile.depend soc2013/def/crashdump-head/usr.bin/colldef/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/colldef/Makefile.depend soc2013/def/crashdump-head/usr.bin/colrm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/colrm/Makefile.depend soc2013/def/crashdump-head/usr.bin/column/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/column/Makefile.depend soc2013/def/crashdump-head/usr.bin/comm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/comm/Makefile.depend soc2013/def/crashdump-head/usr.bin/compile_et/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/compile_et/Makefile.depend soc2013/def/crashdump-head/usr.bin/compress/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/compress/Makefile.depend soc2013/def/crashdump-head/usr.bin/cpio/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/cpio/Makefile.depend soc2013/def/crashdump-head/usr.bin/cpio/tests/ - copied from r294754, mirror/FreeBSD/head/usr.bin/cpio/tests/ soc2013/def/crashdump-head/usr.bin/cpuset/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/cpuset/Makefile.depend soc2013/def/crashdump-head/usr.bin/csplit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/csplit/Makefile.depend soc2013/def/crashdump-head/usr.bin/ctags/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ctags/Makefile.depend soc2013/def/crashdump-head/usr.bin/ctlstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ctlstat/Makefile.depend soc2013/def/crashdump-head/usr.bin/cut/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/cut/Makefile.depend soc2013/def/crashdump-head/usr.bin/cxxfilt/ - copied from r294754, mirror/FreeBSD/head/usr.bin/cxxfilt/ soc2013/def/crashdump-head/usr.bin/dc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/dc/Makefile.depend soc2013/def/crashdump-head/usr.bin/dirname/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/dirname/Makefile.depend soc2013/def/crashdump-head/usr.bin/dpv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/dpv/Makefile.depend soc2013/def/crashdump-head/usr.bin/drill/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/drill/Makefile.depend soc2013/def/crashdump-head/usr.bin/dtc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/dtc/Makefile.depend soc2013/def/crashdump-head/usr.bin/du/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/du/Makefile.depend soc2013/def/crashdump-head/usr.bin/ee/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ee/Makefile.depend soc2013/def/crashdump-head/usr.bin/elf2aout/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/elf2aout/Makefile.depend soc2013/def/crashdump-head/usr.bin/elfcopy/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/elfcopy/Makefile.depend soc2013/def/crashdump-head/usr.bin/elfdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/elfdump/Makefile.depend soc2013/def/crashdump-head/usr.bin/enigma/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/enigma/Makefile.depend soc2013/def/crashdump-head/usr.bin/env/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/env/Makefile.depend soc2013/def/crashdump-head/usr.bin/expand/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/expand/Makefile.depend soc2013/def/crashdump-head/usr.bin/factor/ - copied from r294754, mirror/FreeBSD/head/usr.bin/factor/ soc2013/def/crashdump-head/usr.bin/false/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/false/Makefile.depend soc2013/def/crashdump-head/usr.bin/fetch/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/fetch/Makefile.depend soc2013/def/crashdump-head/usr.bin/file/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/file/Makefile.depend soc2013/def/crashdump-head/usr.bin/file2c/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/file2c/Makefile.depend soc2013/def/crashdump-head/usr.bin/find/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/find/Makefile.depend soc2013/def/crashdump-head/usr.bin/finger/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/finger/Makefile.depend soc2013/def/crashdump-head/usr.bin/fmt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/fmt/Makefile.depend soc2013/def/crashdump-head/usr.bin/fold/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/fold/Makefile.depend soc2013/def/crashdump-head/usr.bin/fortune/ - copied from r294754, mirror/FreeBSD/head/usr.bin/fortune/ soc2013/def/crashdump-head/usr.bin/from/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/from/Makefile.depend soc2013/def/crashdump-head/usr.bin/fstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/fstat/Makefile.depend soc2013/def/crashdump-head/usr.bin/fsync/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/fsync/Makefile.depend soc2013/def/crashdump-head/usr.bin/ftp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ftp/Makefile.depend soc2013/def/crashdump-head/usr.bin/gcore/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/gcore/Makefile.depend soc2013/def/crashdump-head/usr.bin/gencat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/gencat/Makefile.depend soc2013/def/crashdump-head/usr.bin/getconf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/getconf/Makefile.depend soc2013/def/crashdump-head/usr.bin/getent/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/getent/Makefile.depend soc2013/def/crashdump-head/usr.bin/getopt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/getopt/Makefile.depend soc2013/def/crashdump-head/usr.bin/gprof/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/gprof/Makefile.depend soc2013/def/crashdump-head/usr.bin/grdc/ - copied from r294754, mirror/FreeBSD/head/usr.bin/grdc/ soc2013/def/crashdump-head/usr.bin/grep/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/grep/Makefile.depend soc2013/def/crashdump-head/usr.bin/gzip/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/gzip/Makefile.depend soc2013/def/crashdump-head/usr.bin/head/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/head/Makefile.depend soc2013/def/crashdump-head/usr.bin/hexdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/hexdump/Makefile.depend soc2013/def/crashdump-head/usr.bin/host/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/host/Makefile.depend soc2013/def/crashdump-head/usr.bin/iconv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/iconv/Makefile.depend soc2013/def/crashdump-head/usr.bin/id/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/id/Makefile.depend soc2013/def/crashdump-head/usr.bin/ident/ - copied from r294754, mirror/FreeBSD/head/usr.bin/ident/ soc2013/def/crashdump-head/usr.bin/indent/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/indent/Makefile.depend soc2013/def/crashdump-head/usr.bin/ipcrm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ipcrm/Makefile.depend soc2013/def/crashdump-head/usr.bin/ipcs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ipcs/Makefile.depend soc2013/def/crashdump-head/usr.bin/iscsictl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/iscsictl/Makefile.depend soc2013/def/crashdump-head/usr.bin/join/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/join/Makefile.depend soc2013/def/crashdump-head/usr.bin/jot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/jot/Makefile.depend soc2013/def/crashdump-head/usr.bin/kdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/kdump/Makefile.depend soc2013/def/crashdump-head/usr.bin/kdump/linux32_syscalls.conf - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/kdump/linux32_syscalls.conf soc2013/def/crashdump-head/usr.bin/kdump/utrace.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/kdump/utrace.c soc2013/def/crashdump-head/usr.bin/keylogin/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/keylogin/Makefile.depend soc2013/def/crashdump-head/usr.bin/keylogout/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/keylogout/Makefile.depend soc2013/def/crashdump-head/usr.bin/killall/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/killall/Makefile.depend soc2013/def/crashdump-head/usr.bin/ktrace/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ktrace/Makefile.depend soc2013/def/crashdump-head/usr.bin/ktrdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ktrdump/Makefile.depend soc2013/def/crashdump-head/usr.bin/lam/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lam/Makefile.depend soc2013/def/crashdump-head/usr.bin/last/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/last/Makefile.depend soc2013/def/crashdump-head/usr.bin/lastcomm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lastcomm/Makefile.depend soc2013/def/crashdump-head/usr.bin/ldd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ldd/Makefile.depend soc2013/def/crashdump-head/usr.bin/leave/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/leave/Makefile.depend soc2013/def/crashdump-head/usr.bin/less/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/less/Makefile.depend soc2013/def/crashdump-head/usr.bin/lessecho/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lessecho/Makefile.depend soc2013/def/crashdump-head/usr.bin/lesskey/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lesskey/Makefile.depend soc2013/def/crashdump-head/usr.bin/lex/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lex/Makefile.depend soc2013/def/crashdump-head/usr.bin/lex/lib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lex/lib/Makefile.depend soc2013/def/crashdump-head/usr.bin/limits/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/limits/Makefile.depend soc2013/def/crashdump-head/usr.bin/limits/tests/ - copied from r294754, mirror/FreeBSD/head/usr.bin/limits/tests/ soc2013/def/crashdump-head/usr.bin/locale/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/locale/Makefile.depend soc2013/def/crashdump-head/usr.bin/localedef/ - copied from r294754, mirror/FreeBSD/head/usr.bin/localedef/ soc2013/def/crashdump-head/usr.bin/locate/bigram/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/locate/bigram/Makefile.depend soc2013/def/crashdump-head/usr.bin/locate/code/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/locate/code/Makefile.depend soc2013/def/crashdump-head/usr.bin/locate/locate/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/locate/locate/Makefile.depend soc2013/def/crashdump-head/usr.bin/lock/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lock/Makefile.depend soc2013/def/crashdump-head/usr.bin/lockf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lockf/Makefile.depend soc2013/def/crashdump-head/usr.bin/logger/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/logger/Makefile.depend soc2013/def/crashdump-head/usr.bin/login/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/login/Makefile.depend soc2013/def/crashdump-head/usr.bin/logins/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/logins/Makefile.depend soc2013/def/crashdump-head/usr.bin/logname/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/logname/Makefile.depend soc2013/def/crashdump-head/usr.bin/look/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/look/Makefile.depend soc2013/def/crashdump-head/usr.bin/lorder/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lorder/Makefile.depend soc2013/def/crashdump-head/usr.bin/lsvfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lsvfs/Makefile.depend soc2013/def/crashdump-head/usr.bin/lzmainfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/lzmainfo/Makefile.depend soc2013/def/crashdump-head/usr.bin/m4/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/m4/Makefile.depend soc2013/def/crashdump-head/usr.bin/mail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mail/Makefile.depend soc2013/def/crashdump-head/usr.bin/makewhatis/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/makewhatis/Makefile.depend soc2013/def/crashdump-head/usr.bin/man/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/man/Makefile.depend soc2013/def/crashdump-head/usr.bin/mandoc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mandoc/Makefile.depend soc2013/def/crashdump-head/usr.bin/mesg/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mesg/Makefile.depend soc2013/def/crashdump-head/usr.bin/minigzip/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/minigzip/Makefile.depend soc2013/def/crashdump-head/usr.bin/ministat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ministat/Makefile.depend soc2013/def/crashdump-head/usr.bin/mkcsmapper/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mkcsmapper/Makefile.depend soc2013/def/crashdump-head/usr.bin/mkcsmapper_static/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mkcsmapper_static/Makefile.depend soc2013/def/crashdump-head/usr.bin/mkdep/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mkdep/Makefile.depend soc2013/def/crashdump-head/usr.bin/mkesdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mkesdb/Makefile.depend soc2013/def/crashdump-head/usr.bin/mkfifo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mkfifo/Makefile.depend soc2013/def/crashdump-head/usr.bin/mkimg/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mkimg/Makefile.depend soc2013/def/crashdump-head/usr.bin/mklocale/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mklocale/Makefile.depend soc2013/def/crashdump-head/usr.bin/mkstr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mkstr/Makefile.depend soc2013/def/crashdump-head/usr.bin/mktemp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mktemp/Makefile.depend soc2013/def/crashdump-head/usr.bin/mkulzma/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mkulzma/Makefile.depend soc2013/def/crashdump-head/usr.bin/mkuzip/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mkuzip/Makefile.depend soc2013/def/crashdump-head/usr.bin/morse/ - copied from r294754, mirror/FreeBSD/head/usr.bin/morse/ soc2013/def/crashdump-head/usr.bin/msgs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/msgs/Makefile.depend soc2013/def/crashdump-head/usr.bin/mt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/mt/Makefile.depend soc2013/def/crashdump-head/usr.bin/nc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/nc/Makefile.depend soc2013/def/crashdump-head/usr.bin/ncal/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ncal/Makefile.depend soc2013/def/crashdump-head/usr.bin/netstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/netstat/Makefile.depend soc2013/def/crashdump-head/usr.bin/netstat/nlist_symbols - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/netstat/nlist_symbols soc2013/def/crashdump-head/usr.bin/newgrp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/newgrp/Makefile.depend soc2013/def/crashdump-head/usr.bin/newkey/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/newkey/Makefile.depend soc2013/def/crashdump-head/usr.bin/nfsstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/nfsstat/Makefile.depend soc2013/def/crashdump-head/usr.bin/nice/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/nice/Makefile.depend soc2013/def/crashdump-head/usr.bin/nl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/nl/Makefile.depend soc2013/def/crashdump-head/usr.bin/nm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/nm/Makefile.depend soc2013/def/crashdump-head/usr.bin/nohup/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/nohup/Makefile.depend soc2013/def/crashdump-head/usr.bin/numactl/ - copied from r294754, mirror/FreeBSD/head/usr.bin/numactl/ soc2013/def/crashdump-head/usr.bin/number/ - copied from r294754, mirror/FreeBSD/head/usr.bin/number/ soc2013/def/crashdump-head/usr.bin/opieinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/opieinfo/Makefile.depend soc2013/def/crashdump-head/usr.bin/opiekey/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/opiekey/Makefile.depend soc2013/def/crashdump-head/usr.bin/opiepasswd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/opiepasswd/Makefile.depend soc2013/def/crashdump-head/usr.bin/pagesize/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/pagesize/Makefile.depend soc2013/def/crashdump-head/usr.bin/pamtest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/pamtest/Makefile.depend soc2013/def/crashdump-head/usr.bin/passwd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/passwd/Makefile.depend soc2013/def/crashdump-head/usr.bin/paste/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/paste/Makefile.depend soc2013/def/crashdump-head/usr.bin/patch/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/patch/Makefile.depend soc2013/def/crashdump-head/usr.bin/pathchk/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/pathchk/Makefile.depend soc2013/def/crashdump-head/usr.bin/perror/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/perror/Makefile.depend soc2013/def/crashdump-head/usr.bin/pom/ - copied from r294754, mirror/FreeBSD/head/usr.bin/pom/ soc2013/def/crashdump-head/usr.bin/pr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/pr/Makefile.depend soc2013/def/crashdump-head/usr.bin/primes/ - copied from r294754, mirror/FreeBSD/head/usr.bin/primes/ soc2013/def/crashdump-head/usr.bin/printenv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/printenv/Makefile.depend soc2013/def/crashdump-head/usr.bin/printf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/printf/Makefile.depend soc2013/def/crashdump-head/usr.bin/procstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/procstat/Makefile.depend soc2013/def/crashdump-head/usr.bin/protect/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/protect/Makefile.depend soc2013/def/crashdump-head/usr.bin/quota/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/quota/Makefile.depend soc2013/def/crashdump-head/usr.bin/random/ - copied from r294754, mirror/FreeBSD/head/usr.bin/random/ soc2013/def/crashdump-head/usr.bin/rctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rctl/Makefile.depend soc2013/def/crashdump-head/usr.bin/readelf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/readelf/Makefile.depend soc2013/def/crashdump-head/usr.bin/renice/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/renice/Makefile.depend soc2013/def/crashdump-head/usr.bin/rev/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rev/Makefile.depend soc2013/def/crashdump-head/usr.bin/revoke/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/revoke/Makefile.depend soc2013/def/crashdump-head/usr.bin/rlogin/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rlogin/Makefile.depend soc2013/def/crashdump-head/usr.bin/rpcgen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rpcgen/Makefile.depend soc2013/def/crashdump-head/usr.bin/rpcinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rpcinfo/Makefile.depend soc2013/def/crashdump-head/usr.bin/rs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rs/Makefile.depend soc2013/def/crashdump-head/usr.bin/rsh/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rsh/Makefile.depend soc2013/def/crashdump-head/usr.bin/rup/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rup/Makefile.depend soc2013/def/crashdump-head/usr.bin/ruptime/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ruptime/Makefile.depend soc2013/def/crashdump-head/usr.bin/rusers/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rusers/Makefile.depend soc2013/def/crashdump-head/usr.bin/rwall/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rwall/Makefile.depend soc2013/def/crashdump-head/usr.bin/rwho/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/rwho/Makefile.depend soc2013/def/crashdump-head/usr.bin/script/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/script/Makefile.depend soc2013/def/crashdump-head/usr.bin/sed/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/sed/Makefile.depend soc2013/def/crashdump-head/usr.bin/send-pr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/send-pr/Makefile.depend soc2013/def/crashdump-head/usr.bin/seq/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/seq/Makefile.depend soc2013/def/crashdump-head/usr.bin/setchannel/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/setchannel/Makefile.depend soc2013/def/crashdump-head/usr.bin/shar/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/shar/Makefile.depend soc2013/def/crashdump-head/usr.bin/showmount/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/showmount/Makefile.depend soc2013/def/crashdump-head/usr.bin/size/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/size/Makefile.depend soc2013/def/crashdump-head/usr.bin/smbutil/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/smbutil/Makefile.depend soc2013/def/crashdump-head/usr.bin/sockstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/sockstat/Makefile.depend soc2013/def/crashdump-head/usr.bin/soelim/ - copied from r294754, mirror/FreeBSD/head/usr.bin/soelim/ soc2013/def/crashdump-head/usr.bin/sort/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/sort/Makefile.depend soc2013/def/crashdump-head/usr.bin/split/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/split/Makefile.depend soc2013/def/crashdump-head/usr.bin/ssh-copy-id/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ssh-copy-id/Makefile.depend soc2013/def/crashdump-head/usr.bin/stat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/stat/Makefile.depend soc2013/def/crashdump-head/usr.bin/stdbuf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/stdbuf/Makefile.depend soc2013/def/crashdump-head/usr.bin/strings/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/strings/Makefile.depend soc2013/def/crashdump-head/usr.bin/su/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/su/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libapr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libapr/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libapr_util/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libapr_util/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libserf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libserf/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_client/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_client/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_delta/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_delta/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_diff/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_diff/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_fs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_fs/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_fs_fs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_fs_fs/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_fs_util/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_fs_util/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_fs_x/ - copied from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_fs_x/ soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_ra/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_ra/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_ra_local/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_ra_local/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_ra_serf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_ra_serf/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_ra_svn/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_ra_svn/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_repos/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_repos/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_subr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_subr/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_wc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/lib/libsvn_wc/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/svn/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/svn/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/svnadmin/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/svnadmin/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/svnbench/ - copied from r294754, mirror/FreeBSD/head/usr.bin/svn/svnbench/ soc2013/def/crashdump-head/usr.bin/svn/svndumpfilter/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/svndumpfilter/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/svnfsfs/ - copied from r294754, mirror/FreeBSD/head/usr.bin/svn/svnfsfs/ soc2013/def/crashdump-head/usr.bin/svn/svnlook/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/svnlook/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/svnmucc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/svnmucc/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/svnrdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/svnrdump/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/svnserve/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/svnserve/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/svnsync/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/svnsync/Makefile.depend soc2013/def/crashdump-head/usr.bin/svn/svnversion/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/svn/svnversion/Makefile.depend soc2013/def/crashdump-head/usr.bin/systat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/systat/Makefile.depend soc2013/def/crashdump-head/usr.bin/systat/sctp.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/systat/sctp.c soc2013/def/crashdump-head/usr.bin/systat/zarc.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/systat/zarc.c soc2013/def/crashdump-head/usr.bin/tabs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tabs/Makefile.depend soc2013/def/crashdump-head/usr.bin/tail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tail/Makefile.depend soc2013/def/crashdump-head/usr.bin/talk/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/talk/Makefile.depend soc2013/def/crashdump-head/usr.bin/tar/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tar/Makefile.depend soc2013/def/crashdump-head/usr.bin/tar/tests/ - copied from r294754, mirror/FreeBSD/head/usr.bin/tar/tests/ soc2013/def/crashdump-head/usr.bin/tcopy/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tcopy/Makefile.depend soc2013/def/crashdump-head/usr.bin/tee/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tee/Makefile.depend soc2013/def/crashdump-head/usr.bin/telnet/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/telnet/Makefile.depend soc2013/def/crashdump-head/usr.bin/tftp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tftp/Makefile.depend soc2013/def/crashdump-head/usr.bin/time/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/time/Makefile.depend soc2013/def/crashdump-head/usr.bin/timeout/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/timeout/Makefile.depend soc2013/def/crashdump-head/usr.bin/tip/tip/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tip/tip/Makefile.depend soc2013/def/crashdump-head/usr.bin/top/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/top/Makefile.depend soc2013/def/crashdump-head/usr.bin/touch/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/touch/Makefile.depend soc2013/def/crashdump-head/usr.bin/tput/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tput/Makefile.depend soc2013/def/crashdump-head/usr.bin/tr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tr/Makefile.depend soc2013/def/crashdump-head/usr.bin/true/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/true/Makefile.depend soc2013/def/crashdump-head/usr.bin/truncate/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truncate/Makefile.depend soc2013/def/crashdump-head/usr.bin/truss/Makefile.depend.amd64 - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/Makefile.depend.amd64 soc2013/def/crashdump-head/usr.bin/truss/aarch64-cloudabi64.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/aarch64-cloudabi64.c soc2013/def/crashdump-head/usr.bin/truss/aarch64-freebsd.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/aarch64-freebsd.c soc2013/def/crashdump-head/usr.bin/truss/amd64-cloudabi64.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/amd64-cloudabi64.c soc2013/def/crashdump-head/usr.bin/truss/amd64-freebsd.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/amd64-freebsd.c soc2013/def/crashdump-head/usr.bin/truss/amd64-freebsd32.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/amd64-freebsd32.c soc2013/def/crashdump-head/usr.bin/truss/arm-freebsd.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/arm-freebsd.c soc2013/def/crashdump-head/usr.bin/truss/cloudabi.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/cloudabi.c soc2013/def/crashdump-head/usr.bin/truss/cloudabi.h - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/cloudabi.h soc2013/def/crashdump-head/usr.bin/truss/i386-freebsd.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/i386-freebsd.c soc2013/def/crashdump-head/usr.bin/truss/makesyscallsconf.sh - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/makesyscallsconf.sh soc2013/def/crashdump-head/usr.bin/truss/mips-freebsd.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/mips-freebsd.c soc2013/def/crashdump-head/usr.bin/truss/powerpc-freebsd.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/powerpc-freebsd.c soc2013/def/crashdump-head/usr.bin/truss/powerpc64-freebsd.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/powerpc64-freebsd.c soc2013/def/crashdump-head/usr.bin/truss/powerpc64-freebsd32.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/powerpc64-freebsd32.c soc2013/def/crashdump-head/usr.bin/truss/sparc64-freebsd.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/truss/sparc64-freebsd.c soc2013/def/crashdump-head/usr.bin/tset/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tset/Makefile.depend soc2013/def/crashdump-head/usr.bin/tsort/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tsort/Makefile.depend soc2013/def/crashdump-head/usr.bin/tty/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/tty/Makefile.depend soc2013/def/crashdump-head/usr.bin/ul/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ul/Makefile.depend soc2013/def/crashdump-head/usr.bin/uname/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/uname/Makefile.depend soc2013/def/crashdump-head/usr.bin/unexpand/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/unexpand/Makefile.depend soc2013/def/crashdump-head/usr.bin/unifdef/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/unifdef/Makefile.depend soc2013/def/crashdump-head/usr.bin/uniq/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/uniq/Makefile.depend soc2013/def/crashdump-head/usr.bin/units/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/units/Makefile.depend soc2013/def/crashdump-head/usr.bin/unvis/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/unvis/Makefile.depend soc2013/def/crashdump-head/usr.bin/unzip/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/unzip/Makefile.depend soc2013/def/crashdump-head/usr.bin/usbhidaction/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/usbhidaction/Makefile.depend soc2013/def/crashdump-head/usr.bin/usbhidctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/usbhidctl/Makefile.depend soc2013/def/crashdump-head/usr.bin/users/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/users/Makefile.depend soc2013/def/crashdump-head/usr.bin/uudecode/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/uudecode/Makefile.depend soc2013/def/crashdump-head/usr.bin/uuencode/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/uuencode/Makefile.depend soc2013/def/crashdump-head/usr.bin/vacation/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/vacation/Makefile.depend soc2013/def/crashdump-head/usr.bin/vgrind/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/vgrind/Makefile.depend soc2013/def/crashdump-head/usr.bin/vgrind/RETEST/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/vgrind/RETEST/Makefile.depend soc2013/def/crashdump-head/usr.bin/vi/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/vi/Makefile.depend soc2013/def/crashdump-head/usr.bin/vi/catalog/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/vi/catalog/Makefile.depend soc2013/def/crashdump-head/usr.bin/vis/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/vis/Makefile.depend soc2013/def/crashdump-head/usr.bin/vmstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/vmstat/Makefile.depend soc2013/def/crashdump-head/usr.bin/vtfontcvt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/vtfontcvt/Makefile.depend soc2013/def/crashdump-head/usr.bin/w/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/w/Makefile.depend soc2013/def/crashdump-head/usr.bin/wall/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/wall/Makefile.depend soc2013/def/crashdump-head/usr.bin/wc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/wc/Makefile.depend soc2013/def/crashdump-head/usr.bin/what/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/what/Makefile.depend soc2013/def/crashdump-head/usr.bin/whereis/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/whereis/Makefile.depend soc2013/def/crashdump-head/usr.bin/which/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/which/Makefile.depend soc2013/def/crashdump-head/usr.bin/who/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/who/Makefile.depend soc2013/def/crashdump-head/usr.bin/whois/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/whois/Makefile.depend soc2013/def/crashdump-head/usr.bin/write/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/write/Makefile.depend soc2013/def/crashdump-head/usr.bin/xargs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xargs/Makefile.depend soc2013/def/crashdump-head/usr.bin/xargs/tests/regress.0P1.out - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xargs/tests/regress.0P1.out soc2013/def/crashdump-head/usr.bin/xargs/tests/regress.P1.out - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xargs/tests/regress.P1.out soc2013/def/crashdump-head/usr.bin/xargs/tests/regress.n2P0.out - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xargs/tests/regress.n2P0.out soc2013/def/crashdump-head/usr.bin/xinstall/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xinstall/Makefile.depend soc2013/def/crashdump-head/usr.bin/xlint/lint1/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xlint/lint1/Makefile.depend soc2013/def/crashdump-head/usr.bin/xlint/lint2/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xlint/lint2/Makefile.depend soc2013/def/crashdump-head/usr.bin/xlint/llib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xlint/llib/Makefile.depend soc2013/def/crashdump-head/usr.bin/xlint/xlint/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xlint/xlint/Makefile.depend soc2013/def/crashdump-head/usr.bin/xo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xo/Makefile.depend soc2013/def/crashdump-head/usr.bin/xo/tests/ - copied from r294754, mirror/FreeBSD/head/usr.bin/xo/tests/ soc2013/def/crashdump-head/usr.bin/xstr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xstr/Makefile.depend soc2013/def/crashdump-head/usr.bin/xz/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xz/Makefile.depend soc2013/def/crashdump-head/usr.bin/xzdec/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/xzdec/Makefile.depend soc2013/def/crashdump-head/usr.bin/yacc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/yacc/Makefile.depend soc2013/def/crashdump-head/usr.bin/yes/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/yes/Makefile.depend soc2013/def/crashdump-head/usr.bin/ypcat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ypcat/Makefile.depend soc2013/def/crashdump-head/usr.bin/ypmatch/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ypmatch/Makefile.depend soc2013/def/crashdump-head/usr.bin/ypwhich/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.bin/ypwhich/Makefile.depend soc2013/def/crashdump-head/usr.sbin/Makefile.arm64 - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/Makefile.arm64 soc2013/def/crashdump-head/usr.sbin/ac/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ac/Makefile.depend soc2013/def/crashdump-head/usr.sbin/accton/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/accton/Makefile.depend soc2013/def/crashdump-head/usr.sbin/acpi/acpiconf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/acpi/acpiconf/Makefile.depend soc2013/def/crashdump-head/usr.sbin/acpi/acpidb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/acpi/acpidb/Makefile.depend soc2013/def/crashdump-head/usr.sbin/acpi/acpidump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/acpi/acpidump/Makefile.depend soc2013/def/crashdump-head/usr.sbin/acpi/iasl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/acpi/iasl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/adduser/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/adduser/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/amd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/amd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/amq/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/amq/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/fixmount/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/fixmount/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/fsinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/fsinfo/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/hlfsd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/hlfsd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/libamu/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/libamu/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/mk-amd-map/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/mk-amd-map/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/pawd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/pawd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/scripts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/scripts/Makefile.depend soc2013/def/crashdump-head/usr.sbin/amd/wire-test/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/amd/wire-test/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ancontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ancontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/apm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/apm/Makefile.depend soc2013/def/crashdump-head/usr.sbin/apmd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/apmd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/arp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/arp/Makefile.depend soc2013/def/crashdump-head/usr.sbin/asf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/asf/Makefile.depend soc2013/def/crashdump-head/usr.sbin/audit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/audit/Makefile.depend soc2013/def/crashdump-head/usr.sbin/auditd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/auditd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/auditdistd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/auditdistd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/auditreduce/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/auditreduce/Makefile.depend soc2013/def/crashdump-head/usr.sbin/authpf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/authpf/Makefile.depend soc2013/def/crashdump-head/usr.sbin/autofs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/autofs/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bhyve/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bhyve/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bhyve/bootrom.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bhyve/bootrom.c soc2013/def/crashdump-head/usr.sbin/bhyve/bootrom.h - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bhyve/bootrom.h soc2013/def/crashdump-head/usr.sbin/bhyve/fwctl.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bhyve/fwctl.c soc2013/def/crashdump-head/usr.sbin/bhyve/fwctl.h - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bhyve/fwctl.h soc2013/def/crashdump-head/usr.sbin/bhyvectl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bhyvectl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bhyveload/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bhyveload/Makefile.depend soc2013/def/crashdump-head/usr.sbin/binmiscctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/binmiscctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/ath3kfw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/ath3kfw/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/bcmfw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/bcmfw/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/bt3cfw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/bt3cfw/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/bthidcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/bthidcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/bthidd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/bthidd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/btpand/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/btpand/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/hccontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/hccontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/hcsecd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/hcsecd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/hcseriald/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/hcseriald/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/l2control/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/l2control/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/l2ping/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/l2ping/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/rfcomm_pppd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/sdpcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/sdpcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bluetooth/sdpd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bluetooth/sdpd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/boot0cfg/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/boot0cfg/Makefile.depend soc2013/def/crashdump-head/usr.sbin/boot98cfg/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/boot98cfg/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bootparamd/bootparamd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bootparamd/bootparamd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bootparamd/callbootd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bootparamd/callbootd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/console/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/console/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/console/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/console/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/diskmgmt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/diskmgmt/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/diskmgmt/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/diskmgmt/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/docsinstall/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/docsinstall/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/docsinstall/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/docsinstall/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/dot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/dot/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/dot/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/dot/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/examples/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/examples/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/includes/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/includes/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/includes/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/includes/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/includes/includes.sh - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/includes/includes.sh soc2013/def/crashdump-head/usr.sbin/bsdconfig/mouse/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/mouse/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/mouse/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/mouse/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/networking/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/networking/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/networking/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/networking/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/networking/share/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/networking/share/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/packages/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/packages/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/packages/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/packages/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/password/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/password/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/password/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/password/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/password/share/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/password/share/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/security/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/security/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/security/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/security/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/share/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/share/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/share/media/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/share/media/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/share/packages/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/share/packages/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/startup/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/startup/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/startup/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/startup/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/startup/share/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/startup/share/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/timezone/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/timezone/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/timezone/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/timezone/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/timezone/share/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/timezone/share/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/ttys/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/ttys/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/ttys/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/ttys/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/usermgmt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/usermgmt/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/usermgmt/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/usermgmt/include/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdconfig/usermgmt/share/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdconfig/usermgmt/share/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdinstall/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdinstall/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdinstall/distextract/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdinstall/distextract/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdinstall/distfetch/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdinstall/distfetch/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdinstall/partedit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdinstall/partedit/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsdinstall/scripts/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/bsnmpd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/bsnmpd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/gensnmptree/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/gensnmptree/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_hast/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_hast/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_lm75/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_lm75/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/tools/bsnmptools/Makefile.depend soc2013/def/crashdump-head/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/bsnmpd/tools/libbsnmptools/Makefile.depend soc2013/def/crashdump-head/usr.sbin/btxld/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/btxld/Makefile.depend soc2013/def/crashdump-head/usr.sbin/cdcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/cdcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/chkgrp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/chkgrp/Makefile.depend soc2013/def/crashdump-head/usr.sbin/chown/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/chown/Makefile.depend soc2013/def/crashdump-head/usr.sbin/chroot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/chroot/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ckdist/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ckdist/Makefile.depend soc2013/def/crashdump-head/usr.sbin/clear_locks/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/clear_locks/Makefile.depend soc2013/def/crashdump-head/usr.sbin/config/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/config/Makefile.depend soc2013/def/crashdump-head/usr.sbin/cpucontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/cpucontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/crashinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/crashinfo/Makefile.depend soc2013/def/crashdump-head/usr.sbin/cron/cron/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/cron/cron/Makefile.depend soc2013/def/crashdump-head/usr.sbin/cron/crontab/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/cron/crontab/Makefile.depend soc2013/def/crashdump-head/usr.sbin/cron/lib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/cron/lib/Makefile.depend soc2013/def/crashdump-head/usr.sbin/crunch/crunchgen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/crunch/crunchgen/Makefile.depend soc2013/def/crashdump-head/usr.sbin/crunch/crunchide/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/crunch/crunchide/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ctladm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ctladm/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ctld/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ctld/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ctm/ctm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ctm/ctm/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ctm/ctm_dequeue/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ctm/ctm_dequeue/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ctm/ctm_rmail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ctm/ctm_rmail/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ctm/ctm_smail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ctm/ctm_smail/Makefile.depend soc2013/def/crashdump-head/usr.sbin/daemon/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/daemon/Makefile.depend soc2013/def/crashdump-head/usr.sbin/dconschat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/dconschat/Makefile.depend soc2013/def/crashdump-head/usr.sbin/devctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/devctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/devinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/devinfo/Makefile.depend soc2013/def/crashdump-head/usr.sbin/digictl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/digictl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/diskinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/diskinfo/Makefile.depend soc2013/def/crashdump-head/usr.sbin/dumpcis/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/dumpcis/Makefile.depend soc2013/def/crashdump-head/usr.sbin/editmap/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/editmap/Makefile.depend soc2013/def/crashdump-head/usr.sbin/edquota/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/edquota/Makefile.depend soc2013/def/crashdump-head/usr.sbin/eeprom/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/eeprom/Makefile.depend soc2013/def/crashdump-head/usr.sbin/etcupdate/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/etcupdate/Makefile.depend soc2013/def/crashdump-head/usr.sbin/extattr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/extattr/Makefile.depend soc2013/def/crashdump-head/usr.sbin/extattrctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/extattrctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fdcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fdcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fdformat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fdformat/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fdread/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fdread/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fdwrite/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fdwrite/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fifolog/fifolog_create/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fifolog/fifolog_create/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fifolog/fifolog_reader/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fifolog/fifolog_reader/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fifolog/fifolog_writer/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fifolog/fifolog_writer/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fifolog/lib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fifolog/lib/Makefile.depend soc2013/def/crashdump-head/usr.sbin/flowctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/flowctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fmtree/ - copied from r294754, mirror/FreeBSD/head/usr.sbin/fmtree/ soc2013/def/crashdump-head/usr.sbin/freebsd-update/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/freebsd-update/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fstyp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fstyp/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fstyp/geli.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fstyp/geli.c soc2013/def/crashdump-head/usr.sbin/fstyp/tests/ - copied from r294754, mirror/FreeBSD/head/usr.sbin/fstyp/tests/ soc2013/def/crashdump-head/usr.sbin/fstyp/zfs.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fstyp/zfs.c soc2013/def/crashdump-head/usr.sbin/ftp-proxy/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ftp-proxy/Makefile.depend soc2013/def/crashdump-head/usr.sbin/fwcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/fwcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/getfmac/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/getfmac/Makefile.depend soc2013/def/crashdump-head/usr.sbin/getpmac/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/getpmac/Makefile.depend soc2013/def/crashdump-head/usr.sbin/gpioctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/gpioctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/gssd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/gssd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/gstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/gstat/Makefile.depend soc2013/def/crashdump-head/usr.sbin/hyperv/tools/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/hyperv/tools/Makefile.depend soc2013/def/crashdump-head/usr.sbin/i2c/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/i2c/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ifmcstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ifmcstat/Makefile.depend soc2013/def/crashdump-head/usr.sbin/inetd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/inetd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/iostat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/iostat/Makefile.depend soc2013/def/crashdump-head/usr.sbin/iovctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/iovctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ip6addrctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ip6addrctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ipfwpcap/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ipfwpcap/Makefile.depend soc2013/def/crashdump-head/usr.sbin/iscsid/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/iscsid/Makefile.depend soc2013/def/crashdump-head/usr.sbin/jail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/jail/Makefile.depend soc2013/def/crashdump-head/usr.sbin/jexec/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/jexec/Makefile.depend soc2013/def/crashdump-head/usr.sbin/jls/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/jls/Makefile.depend soc2013/def/crashdump-head/usr.sbin/kbdcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/kbdcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/kbdmap/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/kbdmap/Makefile.depend soc2013/def/crashdump-head/usr.sbin/keyserv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/keyserv/Makefile.depend soc2013/def/crashdump-head/usr.sbin/kgmon/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/kgmon/Makefile.depend soc2013/def/crashdump-head/usr.sbin/kgzip/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/kgzip/Makefile.depend soc2013/def/crashdump-head/usr.sbin/kldxref/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/kldxref/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lastlogin/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lastlogin/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lmcconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lmcconfig/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/chkprintcap/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/chkprintcap/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/common_source/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/common_source/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/filters.ru/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/filters.ru/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/filters.ru/koi2855/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/filters.ru/koi2alt/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/filters/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/filters/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/lp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/lp/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/lpc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/lpc/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/lpd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/lpd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/lpq/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/lpq/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/lpr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/lpr/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/lprm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/lprm/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/lptest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/lptest/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lpr/pac/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lpr/pac/Makefile.depend soc2013/def/crashdump-head/usr.sbin/lptcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/lptcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mailstats/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mailstats/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mailwrapper/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mailwrapper/Makefile.depend soc2013/def/crashdump-head/usr.sbin/makefs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/makefs/Makefile.depend soc2013/def/crashdump-head/usr.sbin/makefs/tests/ - copied from r294754, mirror/FreeBSD/head/usr.sbin/makefs/tests/ soc2013/def/crashdump-head/usr.sbin/makemap/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/makemap/Makefile.depend soc2013/def/crashdump-head/usr.sbin/manctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/manctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/memcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/memcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mergemaster/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mergemaster/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mfiutil/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mfiutil/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mixer/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mixer/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mld6query/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mld6query/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mlxcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mlxcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mount_smbfs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mount_smbfs/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mountd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mountd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/moused/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/moused/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mpsutil/ - copied from r294754, mirror/FreeBSD/head/usr.sbin/mpsutil/ soc2013/def/crashdump-head/usr.sbin/mptable/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mptable/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mptutil/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mptutil/Makefile.depend soc2013/def/crashdump-head/usr.sbin/mtest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/mtest/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nandsim/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nandsim/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nandtool/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nandtool/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ndiscvt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ndiscvt/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ndp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ndp/Makefile.depend soc2013/def/crashdump-head/usr.sbin/newsyslog/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/newsyslog/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nfscbd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nfscbd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nfsd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nfsd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nfsdumpstate/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nfsdumpstate/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nfsrevoke/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nfsrevoke/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nfsuserd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nfsuserd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ngctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ngctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nghook/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nghook/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nmtree/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nmtree/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nologin/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nologin/Makefile.depend soc2013/def/crashdump-head/usr.sbin/nscd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/nscd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/doc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/doc/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/doc/drivers/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/doc/drivers/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/doc/drivers/icons/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/doc/drivers/icons/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/doc/drivers/scripts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/doc/drivers/scripts/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/doc/hints/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/doc/hints/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/doc/icons/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/doc/icons/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/doc/pic/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/doc/pic/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/doc/scripts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/doc/scripts/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/libntp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/libntp/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/libntpevent/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/libntpevent/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/libopts/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/libopts/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/libparse/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/libparse/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/ntp-keygen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/ntp-keygen/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/ntpd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/ntpd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/ntpdate/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/ntpdate/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/ntpdc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/ntpdc/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/ntpq/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/ntpq/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/ntptime/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/ntptime/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ntp/sntp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ntp/sntp/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ofwdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ofwdump/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pc-sysinstall/backend-partmanager/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/backend-query/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pc-sysinstall/backend-query/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/backend/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pc-sysinstall/backend/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/conf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pc-sysinstall/conf/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/doc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pc-sysinstall/doc/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/examples/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pc-sysinstall/examples/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pc-sysinstall/pc-sysinstall/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pciconf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pciconf/Makefile.depend soc2013/def/crashdump-head/usr.sbin/periodic/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/periodic/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pkg/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pkg/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pmcannotate/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pmcannotate/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pmccontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pmccontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pmcstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pmcstat/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pnpinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pnpinfo/Makefile.depend soc2013/def/crashdump-head/usr.sbin/portsnap/make_index/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/portsnap/make_index/Makefile.depend soc2013/def/crashdump-head/usr.sbin/portsnap/phttpget/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/portsnap/phttpget/Makefile.depend soc2013/def/crashdump-head/usr.sbin/portsnap/portsnap/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/portsnap/portsnap/Makefile.depend soc2013/def/crashdump-head/usr.sbin/powerd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/powerd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ppp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ppp/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ppp/ppp.conf - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ppp/ppp.conf soc2013/def/crashdump-head/usr.sbin/pppctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pppctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/praliases/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/praliases/Makefile.depend soc2013/def/crashdump-head/usr.sbin/praudit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/praudit/Makefile.depend soc2013/def/crashdump-head/usr.sbin/procctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/procctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pstat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pstat/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pw/Makefile.depend soc2013/def/crashdump-head/usr.sbin/pw/pw_utils.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pw/pw_utils.c soc2013/def/crashdump-head/usr.sbin/pw/strtounum.c - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pw/strtounum.c soc2013/def/crashdump-head/usr.sbin/pw/tests/pw-modified.conf - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pw/tests/pw-modified.conf soc2013/def/crashdump-head/usr.sbin/pw/tests/pw.conf - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pw/tests/pw.conf soc2013/def/crashdump-head/usr.sbin/pw/tests/pw_config.sh - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pw/tests/pw_config.sh soc2013/def/crashdump-head/usr.sbin/pw/tests/pw_groupadd.sh - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pw/tests/pw_groupadd.sh soc2013/def/crashdump-head/usr.sbin/pwd_mkdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/pwd_mkdb/Makefile.depend soc2013/def/crashdump-head/usr.sbin/quot/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/quot/Makefile.depend soc2013/def/crashdump-head/usr.sbin/quotaon/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/quotaon/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rarpd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rarpd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/repquota/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/repquota/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rip6query/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rip6query/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rmt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rmt/Makefile.depend soc2013/def/crashdump-head/usr.sbin/route6d/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/route6d/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rpc.lockd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rpc.lockd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rpc.statd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rpc.statd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rpc.umntall/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rpc.umntall/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rpc.yppasswdd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rpc.yppasswdd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rpc.ypupdated/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rpc.ypupdated/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rpc.ypxfrd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rpc.ypxfrd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rpcbind/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rpcbind/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rrenumd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rrenumd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rtadvctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rtadvctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rtadvd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rtadvd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rtprio/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rtprio/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rtsold/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rtsold/Makefile.depend soc2013/def/crashdump-head/usr.sbin/rwhod/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/rwhod/Makefile.depend soc2013/def/crashdump-head/usr.sbin/sa/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/sa/Makefile.depend soc2013/def/crashdump-head/usr.sbin/sendmail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/sendmail/Makefile.depend soc2013/def/crashdump-head/usr.sbin/service/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/service/Makefile.depend soc2013/def/crashdump-head/usr.sbin/services_mkdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/services_mkdb/Makefile.depend soc2013/def/crashdump-head/usr.sbin/sesutil/ - copied from r294754, mirror/FreeBSD/head/usr.sbin/sesutil/ soc2013/def/crashdump-head/usr.sbin/setfib/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/setfib/Makefile.depend soc2013/def/crashdump-head/usr.sbin/setfmac/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/setfmac/Makefile.depend soc2013/def/crashdump-head/usr.sbin/setpmac/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/setpmac/Makefile.depend soc2013/def/crashdump-head/usr.sbin/sicontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/sicontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/smbmsg/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/smbmsg/Makefile.depend soc2013/def/crashdump-head/usr.sbin/snapinfo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/snapinfo/Makefile.depend soc2013/def/crashdump-head/usr.sbin/spkrtest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/spkrtest/Makefile.depend soc2013/def/crashdump-head/usr.sbin/spray/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/spray/Makefile.depend soc2013/def/crashdump-head/usr.sbin/syslogd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/syslogd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/sysrc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/sysrc/Makefile.depend soc2013/def/crashdump-head/usr.sbin/tcpdchk/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/tcpdchk/Makefile.depend soc2013/def/crashdump-head/usr.sbin/tcpdmatch/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/tcpdmatch/Makefile.depend soc2013/def/crashdump-head/usr.sbin/tcpdrop/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/tcpdrop/Makefile.depend soc2013/def/crashdump-head/usr.sbin/tcpdump/tcpdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/tcpdump/tcpdump/Makefile.depend soc2013/def/crashdump-head/usr.sbin/timed/timed/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/timed/timed/Makefile.depend soc2013/def/crashdump-head/usr.sbin/timed/timedc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/timed/timedc/Makefile.depend soc2013/def/crashdump-head/usr.sbin/traceroute/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/traceroute/Makefile.depend soc2013/def/crashdump-head/usr.sbin/traceroute6/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/traceroute6/Makefile.depend soc2013/def/crashdump-head/usr.sbin/trpt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/trpt/Makefile.depend soc2013/def/crashdump-head/usr.sbin/tzsetup/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/tzsetup/Makefile.depend soc2013/def/crashdump-head/usr.sbin/uathload/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/uathload/Makefile.depend soc2013/def/crashdump-head/usr.sbin/uefisign/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/uefisign/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ugidfw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ugidfw/Makefile.depend soc2013/def/crashdump-head/usr.sbin/uhsoctl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/uhsoctl/Makefile.depend soc2013/def/crashdump-head/usr.sbin/unbound/anchor/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/unbound/anchor/Makefile.depend soc2013/def/crashdump-head/usr.sbin/unbound/checkconf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/unbound/checkconf/Makefile.depend soc2013/def/crashdump-head/usr.sbin/unbound/control/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/unbound/control/Makefile.depend soc2013/def/crashdump-head/usr.sbin/unbound/daemon/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/unbound/daemon/Makefile.depend soc2013/def/crashdump-head/usr.sbin/unbound/local-setup/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/unbound/local-setup/Makefile.depend soc2013/def/crashdump-head/usr.sbin/usbconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/usbconfig/Makefile.depend soc2013/def/crashdump-head/usr.sbin/usbdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/usbdump/Makefile.depend soc2013/def/crashdump-head/usr.sbin/utx/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/utx/Makefile.depend soc2013/def/crashdump-head/usr.sbin/vidcontrol/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/vidcontrol/Makefile.depend soc2013/def/crashdump-head/usr.sbin/vigr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/vigr/Makefile.depend soc2013/def/crashdump-head/usr.sbin/vipw/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/vipw/Makefile.depend soc2013/def/crashdump-head/usr.sbin/wake/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/wake/Makefile.depend soc2013/def/crashdump-head/usr.sbin/watch/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/watch/Makefile.depend soc2013/def/crashdump-head/usr.sbin/watchdogd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/watchdogd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/wlandebug/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/wlandebug/Makefile.depend soc2013/def/crashdump-head/usr.sbin/wlconfig/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/wlconfig/Makefile.depend soc2013/def/crashdump-head/usr.sbin/wpa/hostapd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/wpa/hostapd/Makefile.depend soc2013/def/crashdump-head/usr.sbin/wpa/hostapd_cli/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/wpa/hostapd_cli/Makefile.depend soc2013/def/crashdump-head/usr.sbin/wpa/ndis_events/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/wpa/ndis_events/Makefile.depend soc2013/def/crashdump-head/usr.sbin/wpa/wpa_cli/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/wpa/wpa_cli/Makefile.depend soc2013/def/crashdump-head/usr.sbin/wpa/wpa_passphrase/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/wpa/wpa_passphrase/Makefile.depend soc2013/def/crashdump-head/usr.sbin/wpa/wpa_supplicant/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/wpa/wpa_supplicant/Makefile.depend soc2013/def/crashdump-head/usr.sbin/yp_mkdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/yp_mkdb/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ypbind/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ypbind/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ypldap/ - copied from r294754, mirror/FreeBSD/head/usr.sbin/ypldap/ soc2013/def/crashdump-head/usr.sbin/yppoll/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/yppoll/Makefile.depend soc2013/def/crashdump-head/usr.sbin/yppush/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/yppush/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ypserv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ypserv/Makefile.depend soc2013/def/crashdump-head/usr.sbin/ypserv/common/ - copied from r294754, mirror/FreeBSD/head/usr.sbin/ypserv/common/ soc2013/def/crashdump-head/usr.sbin/ypset/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/ypset/Makefile.depend soc2013/def/crashdump-head/usr.sbin/zic/zdump/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/zic/zdump/Makefile.depend soc2013/def/crashdump-head/usr.sbin/zic/zic/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/zic/zic/Makefile.depend soc2013/def/crashdump-head/usr.sbin/zzz/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/usr.sbin/zzz/Makefile.depend Replaced: soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixtfdi.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixtfdi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixtfsi.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixtfsi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixtfti.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixtfti.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixunstfdi.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixunstfdi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixunstfsi.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixunstfsi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixunstfti.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixunstfti.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc soc2013/def/crashdump-head/contrib/libc++/ - copied from r294754, mirror/FreeBSD/head/contrib/libc++/ soc2013/def/crashdump-head/lib/libc/locale/ascii.c - copied unchanged from r294754, mirror/FreeBSD/head/lib/libc/locale/ascii.c soc2013/def/crashdump-head/libexec/dma/Makefile - copied unchanged from r294754, mirror/FreeBSD/head/libexec/dma/Makefile soc2013/def/crashdump-head/share/monetdef/de_AT.ISO8859-1.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/de_AT.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/nl_NL.ISO8859-1.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/nl_NL.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/sl_SI.ISO8859-2.src - copied unchanged from r294754, mirror/FreeBSD/head/share/monetdef/sl_SI.ISO8859-2.src soc2013/def/crashdump-head/share/numericdef/uk_UA.KOI8-U.src - copied unchanged from r294754, mirror/FreeBSD/head/share/numericdef/uk_UA.KOI8-U.src soc2013/def/crashdump-head/share/timedef/de_DE.UTF-8.src - copied unchanged from r294754, mirror/FreeBSD/head/share/timedef/de_DE.UTF-8.src Deleted: soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/sgs/ soc2013/def/crashdump-head/cddl/contrib/opensolaris/common/avl/avl.c soc2013/def/crashdump-head/cddl/usr.bin/sgsmsg/ soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/Makefile.inc1 soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_posix_libcdep.cc soc2013/def/crashdump-head/contrib/dma/BSDmakefile soc2013/def/crashdump-head/contrib/dma/debian/ soc2013/def/crashdump-head/contrib/libucl/cmake/ soc2013/def/crashdump-head/contrib/llvm/lib/Target/R600/ soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcSelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcSelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/TargetLibraryInfo.cpp soc2013/def/crashdump-head/contrib/sendmail/libsm/path.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/crypto_cryptoapi.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/tls_schannel.c soc2013/def/crashdump-head/games/ soc2013/def/crashdump-head/gnu/usr.bin/binutils/addr2line/ soc2013/def/crashdump-head/gnu/usr.bin/binutils/ar/ soc2013/def/crashdump-head/gnu/usr.bin/binutils/nm/ soc2013/def/crashdump-head/gnu/usr.bin/binutils/ranlib/ soc2013/def/crashdump-head/gnu/usr.bin/binutils/readelf/ soc2013/def/crashdump-head/gnu/usr.bin/binutils/size/ soc2013/def/crashdump-head/gnu/usr.bin/binutils/strings/ soc2013/def/crashdump-head/gnu/usr.bin/binutils/strip/ soc2013/def/crashdump-head/gnu/usr.bin/cc/c++filt/ soc2013/def/crashdump-head/gnu/usr.bin/cc/collect2/ soc2013/def/crashdump-head/gnu/usr.bin/cc/protoize/ soc2013/def/crashdump-head/gnu/usr.bin/groff/src/devices/xditview/ soc2013/def/crashdump-head/gnu/usr.bin/groff/src/preproc/soelim/ soc2013/def/crashdump-head/gnu/usr.bin/groff/tmac/fr.ISO8859-1 soc2013/def/crashdump-head/gnu/usr.bin/groff/tmac/mdoc.local soc2013/def/crashdump-head/gnu/usr.bin/groff/tmac/ru.KOI8-R soc2013/def/crashdump-head/gnu/usr.bin/rcs/ident/ soc2013/def/crashdump-head/lib/clang/libllvmdebuginfo/ soc2013/def/crashdump-head/lib/csu/i386-elf/ soc2013/def/crashdump-head/lib/libarchive/libarchive.pc soc2013/def/crashdump-head/lib/libarchive/test/ soc2013/def/crashdump-head/lib/libc/Makefile.amd64 soc2013/def/crashdump-head/lib/libc/Makefile.i386 soc2013/def/crashdump-head/lib/libc/amd64/sys/reboot.S soc2013/def/crashdump-head/lib/libc/arm/sys/fork.S soc2013/def/crashdump-head/lib/libc/i386/sys/reboot.S soc2013/def/crashdump-head/lib/libc/mips/sys/fork.S soc2013/def/crashdump-head/lib/libc/sys/stack_protector.c soc2013/def/crashdump-head/lib/libc/sys/stack_protector_compat.c soc2013/def/crashdump-head/lib/libclang_rt/san/ soc2013/def/crashdump-head/lib/libclang_rt/ubsan/ soc2013/def/crashdump-head/lib/libclang_rt/ubsan_cxx/ soc2013/def/crashdump-head/lib/libgpib/ soc2013/def/crashdump-head/lib/libkvm/kvm_aarch64.c soc2013/def/crashdump-head/lib/libkvm/kvm_mips.c soc2013/def/crashdump-head/lib/libkvm/kvm_sparc.c soc2013/def/crashdump-head/lib/libmandoc/ soc2013/def/crashdump-head/lib/libmd/sha256.h soc2013/def/crashdump-head/lib/libmd/sha256c.c soc2013/def/crashdump-head/lib/libnv/nv.3 soc2013/def/crashdump-head/lib/libohash/ soc2013/def/crashdump-head/lib/librt/Makefile.amd64 soc2013/def/crashdump-head/lib/librt/Makefile.i386 soc2013/def/crashdump-head/lib/librt/Version.map soc2013/def/crashdump-head/lib/libthr/Makefile.amd64 soc2013/def/crashdump-head/lib/libthr/Makefile.i386 soc2013/def/crashdump-head/lib/msun/Makefile.amd64 soc2013/def/crashdump-head/lib/msun/Makefile.i386 soc2013/def/crashdump-head/libexec/dma-mbox-create/ soc2013/def/crashdump-head/sbin/ifconfig/regdomain.c soc2013/def/crashdump-head/sbin/ifconfig/regdomain.h soc2013/def/crashdump-head/sbin/ipf/ipsend/ soc2013/def/crashdump-head/sbin/ipf/iptest/ soc2013/def/crashdump-head/sbin/ipf/rules/ soc2013/def/crashdump-head/share/colldef/README soc2013/def/crashdump-head/share/colldef/be_BY.CP1131.src soc2013/def/crashdump-head/share/colldef/be_BY.CP1251.src soc2013/def/crashdump-head/share/colldef/be_BY.ISO8859-5.src soc2013/def/crashdump-head/share/colldef/bg_BG.CP1251.src soc2013/def/crashdump-head/share/colldef/ca_ES.ISO8859-1.src soc2013/def/crashdump-head/share/colldef/ca_ES.ISO8859-15.src soc2013/def/crashdump-head/share/colldef/cs_CZ.ISO8859-2.src soc2013/def/crashdump-head/share/colldef/de_DE.ISO8859-1.src soc2013/def/crashdump-head/share/colldef/de_DE.ISO8859-15.src soc2013/def/crashdump-head/share/colldef/el_GR.ISO8859-7.src soc2013/def/crashdump-head/share/colldef/en_DK.example soc2013/def/crashdump-head/share/colldef/es_ES.ISO8859-1.src soc2013/def/crashdump-head/share/colldef/es_ES.ISO8859-15.src soc2013/def/crashdump-head/share/colldef/et_EE.ISO8859-15.src soc2013/def/crashdump-head/share/colldef/hi_IN.ISCII-DEV.src soc2013/def/crashdump-head/share/colldef/hr_HR.ISO8859-2.src soc2013/def/crashdump-head/share/colldef/hy_AM.ARMSCII-8.src soc2013/def/crashdump-head/share/colldef/is_IS.ISO8859-1.src soc2013/def/crashdump-head/share/colldef/is_IS.ISO8859-15.src soc2013/def/crashdump-head/share/colldef/kk_KZ.PT154.src soc2013/def/crashdump-head/share/colldef/la_LN.ISO8859-1.src soc2013/def/crashdump-head/share/colldef/la_LN.ISO8859-13.src soc2013/def/crashdump-head/share/colldef/la_LN.ISO8859-15.src soc2013/def/crashdump-head/share/colldef/la_LN.ISO8859-2.src soc2013/def/crashdump-head/share/colldef/la_LN.ISO8859-4.src soc2013/def/crashdump-head/share/colldef/la_LN.US-ASCII.src soc2013/def/crashdump-head/share/colldef/lt_LT.ISO8859-4.src soc2013/def/crashdump-head/share/colldef/map.ARMSCII-8 soc2013/def/crashdump-head/share/colldef/map.CP1131 soc2013/def/crashdump-head/share/colldef/map.CP1251 soc2013/def/crashdump-head/share/colldef/map.CP866 soc2013/def/crashdump-head/share/colldef/map.ISCII-DEV soc2013/def/crashdump-head/share/colldef/map.ISO8859-1 soc2013/def/crashdump-head/share/colldef/map.ISO8859-13 soc2013/def/crashdump-head/share/colldef/map.ISO8859-15 soc2013/def/crashdump-head/share/colldef/map.ISO8859-2 soc2013/def/crashdump-head/share/colldef/map.ISO8859-4 soc2013/def/crashdump-head/share/colldef/map.ISO8859-5 soc2013/def/crashdump-head/share/colldef/map.ISO8859-7 soc2013/def/crashdump-head/share/colldef/map.ISO8859-9 soc2013/def/crashdump-head/share/colldef/map.KOI8-R soc2013/def/crashdump-head/share/colldef/map.KOI8-U soc2013/def/crashdump-head/share/colldef/map.PT154 soc2013/def/crashdump-head/share/colldef/no_NO.ISO8859-1.src soc2013/def/crashdump-head/share/colldef/no_NO.ISO8859-15.src soc2013/def/crashdump-head/share/colldef/pl_PL.ISO8859-2.src soc2013/def/crashdump-head/share/colldef/ru_RU.CP1251.src soc2013/def/crashdump-head/share/colldef/ru_RU.CP866.src soc2013/def/crashdump-head/share/colldef/ru_RU.ISO8859-5.src soc2013/def/crashdump-head/share/colldef/ru_RU.KOI8-R.src soc2013/def/crashdump-head/share/colldef/sl_SI.ISO8859-2.src soc2013/def/crashdump-head/share/colldef/sr_YU.ISO8859-5.src soc2013/def/crashdump-head/share/colldef/sv_SE.ISO8859-1.src soc2013/def/crashdump-head/share/colldef/sv_SE.ISO8859-15.src soc2013/def/crashdump-head/share/colldef/tr_TR.ISO8859-9.src soc2013/def/crashdump-head/share/colldef/uk_UA.CP1251.src soc2013/def/crashdump-head/share/colldef/uk_UA.ISO8859-5.src soc2013/def/crashdump-head/share/colldef/uk_UA.KOI8-U.src soc2013/def/crashdump-head/share/doc/papers/hwpmc/ soc2013/def/crashdump-head/share/examples/dma/ soc2013/def/crashdump-head/share/man/man4/dtrace-io.4 soc2013/def/crashdump-head/share/man/man4/dtrace-ip.4 soc2013/def/crashdump-head/share/man/man4/dtrace-proc.4 soc2013/def/crashdump-head/share/man/man4/dtrace-sched.4 soc2013/def/crashdump-head/share/man/man4/dtrace-tcp.4 soc2013/def/crashdump-head/share/man/man4/dtrace-udp.4 soc2013/def/crashdump-head/share/man/man9/PCI_ADD_VF.9 soc2013/def/crashdump-head/share/man/man9/PCI_INIT_IOV.9 soc2013/def/crashdump-head/share/man/man9/PCI_UNINIT_IOV.9 soc2013/def/crashdump-head/share/mklocale/ soc2013/def/crashdump-head/share/monetdef/af_ZA.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/ca_ES.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/ca_ES.UTF-8.src soc2013/def/crashdump-head/share/monetdef/da_DK.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/de_CH.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/de_DE.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/de_DE.UTF-8.src soc2013/def/crashdump-head/share/monetdef/el_GR.ISO8859-7.src soc2013/def/crashdump-head/share/monetdef/el_GR.UTF-8.src soc2013/def/crashdump-head/share/monetdef/en_AU.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/en_CA.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/en_GB.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/en_NZ.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/en_US.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/es_ES.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/es_ES.UTF-8.src soc2013/def/crashdump-head/share/monetdef/et_EE.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/fi_FI.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/fi_FI.UTF-8.src soc2013/def/crashdump-head/share/monetdef/fr_BE.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/fr_BE.UTF-8.src soc2013/def/crashdump-head/share/monetdef/fr_CA.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/fr_FR.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/fr_FR.UTF-8.src soc2013/def/crashdump-head/share/monetdef/hr_HR.ISO8859-2.src soc2013/def/crashdump-head/share/monetdef/is_IS.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/it_IT.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/it_IT.UTF-8.src soc2013/def/crashdump-head/share/monetdef/kk_KZ.PT154.src soc2013/def/crashdump-head/share/monetdef/kk_KZ.UTF-8.src soc2013/def/crashdump-head/share/monetdef/lt_LT.ISO8859-13.src soc2013/def/crashdump-head/share/monetdef/mn_MN.UTF-8.src soc2013/def/crashdump-head/share/monetdef/nl_BE.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/nl_BE.UTF-8.src soc2013/def/crashdump-head/share/monetdef/no_NO.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/pt_BR.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/pt_PT.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/pt_PT.ISO8859-15.src soc2013/def/crashdump-head/share/monetdef/pt_PT.UTF-8.src soc2013/def/crashdump-head/share/monetdef/ro_RO.ISO8859-2.src soc2013/def/crashdump-head/share/monetdef/sk_SK.ISO8859-2.src soc2013/def/crashdump-head/share/monetdef/sr_YU.ISO8859-2.src soc2013/def/crashdump-head/share/monetdef/sr_YU.ISO8859-5.src soc2013/def/crashdump-head/share/monetdef/sr_YU.UTF-8.src soc2013/def/crashdump-head/share/monetdef/sv_SE.ISO8859-1.src soc2013/def/crashdump-head/share/monetdef/zh_CN.GB18030.src soc2013/def/crashdump-head/share/monetdef/zh_CN.GB2312.src soc2013/def/crashdump-head/share/monetdef/zh_CN.UTF-8.src soc2013/def/crashdump-head/share/monetdef/zh_CN.eucCN.src soc2013/def/crashdump-head/share/monetdef/zh_HK.UTF-8.src soc2013/def/crashdump-head/share/monetdef/zh_TW.Big5.src soc2013/def/crashdump-head/share/msgdef/af_ZA.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/ca_ES.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/cs_CZ.ISO8859-2.src soc2013/def/crashdump-head/share/msgdef/da_DK.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/de_DE.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/en_CA.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/en_GB.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/en_US.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/es_ES.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/et_EE.ISO8859-15.src soc2013/def/crashdump-head/share/msgdef/eu_ES.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/fi_FI.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/fr_BE.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/fr_CH.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/fr_FR.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/hr_HR.ISO8859-2.src soc2013/def/crashdump-head/share/msgdef/hu_HU.ISO8859-2.src soc2013/def/crashdump-head/share/msgdef/is_IS.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/it_IT.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/kk_KZ.PT154.src soc2013/def/crashdump-head/share/msgdef/kk_KZ.UTF-8.src soc2013/def/crashdump-head/share/msgdef/lt_LT.ISO8859-13.src soc2013/def/crashdump-head/share/msgdef/mn_MN.UTF-8.src soc2013/def/crashdump-head/share/msgdef/nl_NL.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/no_NO.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/pl_PL.ISO8859-2.src soc2013/def/crashdump-head/share/msgdef/pt_PT.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/ro_RO.ISO8859-2.src soc2013/def/crashdump-head/share/msgdef/sl_SI.ISO8859-2.src soc2013/def/crashdump-head/share/msgdef/sr_YU.ISO8859-2.src soc2013/def/crashdump-head/share/msgdef/sr_YU.ISO8859-5.src soc2013/def/crashdump-head/share/msgdef/sr_YU.UTF-8.src soc2013/def/crashdump-head/share/msgdef/sv_SE.ISO8859-1.src soc2013/def/crashdump-head/share/msgdef/zh_CN.GB18030.src soc2013/def/crashdump-head/share/msgdef/zh_CN.GB2312.src soc2013/def/crashdump-head/share/msgdef/zh_CN.UTF-8.src soc2013/def/crashdump-head/share/msgdef/zh_CN.eucCN.src soc2013/def/crashdump-head/share/msgdef/zh_TW.Big5.src soc2013/def/crashdump-head/share/msgdef/zh_TW.UTF-8.src soc2013/def/crashdump-head/share/numericdef/af_ZA.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/am_ET.UTF-8.src soc2013/def/crashdump-head/share/numericdef/be_BY.CP1251.src soc2013/def/crashdump-head/share/numericdef/bg_BG.CP1251.src soc2013/def/crashdump-head/share/numericdef/ca_ES.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/cs_CZ.ISO8859-2.src soc2013/def/crashdump-head/share/numericdef/da_DK.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/de_CH.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/de_DE.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/el_GR.ISO8859-7.src soc2013/def/crashdump-head/share/numericdef/en_US.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/es_ES.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/et_EE.ISO8859-15.src soc2013/def/crashdump-head/share/numericdef/eu_ES.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/fi_FI.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/fr_BE.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/fr_FR.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/hi_IN.ISCII-DEV.src soc2013/def/crashdump-head/share/numericdef/hr_HR.ISO8859-2.src soc2013/def/crashdump-head/share/numericdef/hu_HU.ISO8859-2.src soc2013/def/crashdump-head/share/numericdef/hy_AM.ARMSCII-8.src soc2013/def/crashdump-head/share/numericdef/is_IS.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/it_IT.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/ja_JP.eucJP.src soc2013/def/crashdump-head/share/numericdef/kk_KZ.PT154.src soc2013/def/crashdump-head/share/numericdef/ko_KR.eucKR.src soc2013/def/crashdump-head/share/numericdef/lt_LT.ISO8859-13.src soc2013/def/crashdump-head/share/numericdef/mn_MN.UTF-8.src soc2013/def/crashdump-head/share/numericdef/nl_NL.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/no_NO.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/pl_PL.ISO8859-2.src soc2013/def/crashdump-head/share/numericdef/pt_BR.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/pt_PT.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/ro_RO.ISO8859-2.src soc2013/def/crashdump-head/share/numericdef/ru_RU.KOI8-R.src soc2013/def/crashdump-head/share/numericdef/sk_SK.ISO8859-2.src soc2013/def/crashdump-head/share/numericdef/sl_SI.ISO8859-2.src soc2013/def/crashdump-head/share/numericdef/sr_YU.ISO8859-2.src soc2013/def/crashdump-head/share/numericdef/sr_YU.ISO8859-5.src soc2013/def/crashdump-head/share/numericdef/sv_SE.ISO8859-1.src soc2013/def/crashdump-head/share/numericdef/tr_TR.ISO8859-9.src soc2013/def/crashdump-head/share/numericdef/zh_CN.eucCN.src soc2013/def/crashdump-head/share/timedef/ca_ES.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/ca_ES.UTF-8.src soc2013/def/crashdump-head/share/timedef/da_DK.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/de_AT.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/de_DE.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/en_GB.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/en_US.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/es_ES.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/eu_ES.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/fi_FI.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/fr_FR.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/is_IS.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/it_IT.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/kk_KZ.PT154.src soc2013/def/crashdump-head/share/timedef/kk_KZ.UTF-8.src soc2013/def/crashdump-head/share/timedef/la_LN.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/lt_LT.ISO8859-4.src soc2013/def/crashdump-head/share/timedef/mn_MN.UTF-8.src soc2013/def/crashdump-head/share/timedef/nb_NO.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/nl_NL.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/nn_NO.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/pt_PT.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/sr_YU.ISO8859-2.src soc2013/def/crashdump-head/share/timedef/sr_YU.ISO8859-5.src soc2013/def/crashdump-head/share/timedef/sr_YU.UTF-8.src soc2013/def/crashdump-head/share/timedef/sv_SE.ISO8859-1.src soc2013/def/crashdump-head/share/timedef/zh_CN.GB18030.src soc2013/def/crashdump-head/share/timedef/zh_CN.GB2312.src soc2013/def/crashdump-head/share/timedef/zh_CN.UTF-8.src soc2013/def/crashdump-head/share/timedef/zh_CN.eucCN.src soc2013/def/crashdump-head/share/timedef/zh_TW.Big5.src soc2013/def/crashdump-head/share/timedef/zh_TW.UTF-8.src soc2013/def/crashdump-head/sys/amd64/amd64/stack_machdep.c soc2013/def/crashdump-head/sys/amd64/include/xen/xenfunc.h soc2013/def/crashdump-head/sys/amd64/include/xen/xenpmap.h soc2013/def/crashdump-head/sys/amd64/include/xen/xenvar.h soc2013/def/crashdump-head/sys/arm/conf/CUBIEBOARD2 soc2013/def/crashdump-head/sys/arm/conf/EP80219 soc2013/def/crashdump-head/sys/arm/conf/IQ31244 soc2013/def/crashdump-head/sys/arm/conf/LN2410SBC soc2013/def/crashdump-head/sys/arm/conf/WANDBOARD-DUAL soc2013/def/crashdump-head/sys/arm/conf/WANDBOARD-QUAD soc2013/def/crashdump-head/sys/arm/conf/WANDBOARD-SOLO soc2013/def/crashdump-head/sys/arm/samsung/s3c2xx0/ soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_pwm.c soc2013/def/crashdump-head/sys/arm/ti/omap4/omap4var.h soc2013/def/crashdump-head/sys/boot/efi/loader/reloc.c soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/am335x.dtsi soc2013/def/crashdump-head/sys/boot/i386/boot0/boot0ext.S soc2013/def/crashdump-head/sys/boot/i386/boot0ext/ soc2013/def/crashdump-head/sys/cam/ctl/ctl_backend_block.h soc2013/def/crashdump-head/sys/cam/ctl/ctl_frontend_internal.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_frontend_internal.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/nvpair/fnvpair.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/nvpair/nvpair_alloc_fixed.c soc2013/def/crashdump-head/sys/cddl/dev/lockstat/ soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmobject.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_proc.c soc2013/def/crashdump-head/sys/dev/cxgbe/firmware/t4fw-1.11.27.0.bin.uu soc2013/def/crashdump-head/sys/dev/cxgbe/firmware/t5fw-1.11.27.0.bin.uu soc2013/def/crashdump-head/sys/dev/mmc/host/dwmmc.h soc2013/def/crashdump-head/sys/dev/random/dummy_rng.c soc2013/def/crashdump-head/sys/dev/random/live_entropy_sources.c soc2013/def/crashdump-head/sys/dev/random/live_entropy_sources.h soc2013/def/crashdump-head/sys/dev/random/random_adaptors.c soc2013/def/crashdump-head/sys/dev/random/random_adaptors.h soc2013/def/crashdump-head/sys/dev/random/randomdev_soft.c soc2013/def/crashdump-head/sys/dev/random/randomdev_soft.h soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_mon.c soc2013/def/crashdump-head/sys/dev/usb/usb_compat_linux.c soc2013/def/crashdump-head/sys/dev/usb/usb_compat_linux.h soc2013/def/crashdump-head/sys/dev/xen/console/console.c soc2013/def/crashdump-head/sys/dev/xen/console/xencons_ring.c soc2013/def/crashdump-head/sys/dev/xen/console/xencons_ring.h soc2013/def/crashdump-head/sys/i386/conf/XEN soc2013/def/crashdump-head/sys/i386/i386/stack_machdep.c soc2013/def/crashdump-head/sys/i386/include/privatespace.h soc2013/def/crashdump-head/sys/i386/include/xen/features.h soc2013/def/crashdump-head/sys/i386/include/xen/xenfunc.h soc2013/def/crashdump-head/sys/i386/include/xen/xenpmap.h soc2013/def/crashdump-head/sys/i386/include/xen/xenstored.h soc2013/def/crashdump-head/sys/i386/include/xen/xenvar.h soc2013/def/crashdump-head/sys/i386/xen/ soc2013/def/crashdump-head/sys/kern/subr_dnvlist.c soc2013/def/crashdump-head/sys/kern/subr_nvlist.c soc2013/def/crashdump-head/sys/kern/subr_nvpair.c soc2013/def/crashdump-head/sys/mips/rmi/dev/iic/ds1374u.c soc2013/def/crashdump-head/sys/mips/rmi/dev/xlr/rge.c soc2013/def/crashdump-head/sys/mips/rmi/dev/xlr/rge.h soc2013/def/crashdump-head/sys/modules/dtrace/lockstat/ soc2013/def/crashdump-head/sys/modules/ispfw/isp_1040_it/ soc2013/def/crashdump-head/sys/modules/ispfw/isp_1080_it/ soc2013/def/crashdump-head/sys/modules/ispfw/isp_12160_it/ soc2013/def/crashdump-head/sys/modules/ispfw/isp_2400_multi/ soc2013/def/crashdump-head/sys/modules/ispfw/isp_2500_multi/ soc2013/def/crashdump-head/sys/modules/linuxapi/ soc2013/def/crashdump-head/sys/modules/random/Makefile soc2013/def/crashdump-head/sys/ofed/include/asm/ soc2013/def/crashdump-head/sys/ofed/include/linux/bitops.h soc2013/def/crashdump-head/sys/ofed/include/linux/cache.h soc2013/def/crashdump-head/sys/ofed/include/linux/cdev.h soc2013/def/crashdump-head/sys/ofed/include/linux/clocksource.h soc2013/def/crashdump-head/sys/ofed/include/linux/compat.h soc2013/def/crashdump-head/sys/ofed/include/linux/compiler.h soc2013/def/crashdump-head/sys/ofed/include/linux/completion.h soc2013/def/crashdump-head/sys/ofed/include/linux/delay.h soc2013/def/crashdump-head/sys/ofed/include/linux/device.h soc2013/def/crashdump-head/sys/ofed/include/linux/dma-attrs.h soc2013/def/crashdump-head/sys/ofed/include/linux/dma-mapping.h soc2013/def/crashdump-head/sys/ofed/include/linux/dmapool.h soc2013/def/crashdump-head/sys/ofed/include/linux/err.h soc2013/def/crashdump-head/sys/ofed/include/linux/errno.h soc2013/def/crashdump-head/sys/ofed/include/linux/etherdevice.h soc2013/def/crashdump-head/sys/ofed/include/linux/file.h soc2013/def/crashdump-head/sys/ofed/include/linux/fs.h soc2013/def/crashdump-head/sys/ofed/include/linux/gfp.h soc2013/def/crashdump-head/sys/ofed/include/linux/hardirq.h soc2013/def/crashdump-head/sys/ofed/include/linux/idr.h soc2013/def/crashdump-head/sys/ofed/include/linux/if_arp.h soc2013/def/crashdump-head/sys/ofed/include/linux/if_ether.h soc2013/def/crashdump-head/sys/ofed/include/linux/if_vlan.h soc2013/def/crashdump-head/sys/ofed/include/linux/in.h soc2013/def/crashdump-head/sys/ofed/include/linux/in6.h soc2013/def/crashdump-head/sys/ofed/include/linux/inetdevice.h soc2013/def/crashdump-head/sys/ofed/include/linux/interrupt.h soc2013/def/crashdump-head/sys/ofed/include/linux/io-mapping.h soc2013/def/crashdump-head/sys/ofed/include/linux/io.h soc2013/def/crashdump-head/sys/ofed/include/linux/ioctl.h soc2013/def/crashdump-head/sys/ofed/include/linux/jhash.h soc2013/def/crashdump-head/sys/ofed/include/linux/jiffies.h soc2013/def/crashdump-head/sys/ofed/include/linux/kdev_t.h soc2013/def/crashdump-head/sys/ofed/include/linux/kernel.h soc2013/def/crashdump-head/sys/ofed/include/linux/kmod.h soc2013/def/crashdump-head/sys/ofed/include/linux/kobject.h soc2013/def/crashdump-head/sys/ofed/include/linux/kref.h soc2013/def/crashdump-head/sys/ofed/include/linux/kthread.h soc2013/def/crashdump-head/sys/ofed/include/linux/ktime.h soc2013/def/crashdump-head/sys/ofed/include/linux/linux_compat.c soc2013/def/crashdump-head/sys/ofed/include/linux/linux_idr.c soc2013/def/crashdump-head/sys/ofed/include/linux/linux_kmod.c soc2013/def/crashdump-head/sys/ofed/include/linux/linux_pci.c soc2013/def/crashdump-head/sys/ofed/include/linux/linux_radix.c soc2013/def/crashdump-head/sys/ofed/include/linux/list.h soc2013/def/crashdump-head/sys/ofed/include/linux/lockdep.h soc2013/def/crashdump-head/sys/ofed/include/linux/log2.h soc2013/def/crashdump-head/sys/ofed/include/linux/math64.h soc2013/def/crashdump-head/sys/ofed/include/linux/miscdevice.h soc2013/def/crashdump-head/sys/ofed/include/linux/mm.h soc2013/def/crashdump-head/sys/ofed/include/linux/module.h soc2013/def/crashdump-head/sys/ofed/include/linux/moduleparam.h soc2013/def/crashdump-head/sys/ofed/include/linux/mutex.h soc2013/def/crashdump-head/sys/ofed/include/linux/net.h soc2013/def/crashdump-head/sys/ofed/include/linux/netdevice.h soc2013/def/crashdump-head/sys/ofed/include/linux/notifier.h soc2013/def/crashdump-head/sys/ofed/include/linux/page.h soc2013/def/crashdump-head/sys/ofed/include/linux/pci.h soc2013/def/crashdump-head/sys/ofed/include/linux/poll.h soc2013/def/crashdump-head/sys/ofed/include/linux/printk.h soc2013/def/crashdump-head/sys/ofed/include/linux/radix-tree.h soc2013/def/crashdump-head/sys/ofed/include/linux/random.h soc2013/def/crashdump-head/sys/ofed/include/linux/rbtree.h soc2013/def/crashdump-head/sys/ofed/include/linux/rwlock.h soc2013/def/crashdump-head/sys/ofed/include/linux/rwsem.h soc2013/def/crashdump-head/sys/ofed/include/linux/scatterlist.h soc2013/def/crashdump-head/sys/ofed/include/linux/sched.h soc2013/def/crashdump-head/sys/ofed/include/linux/semaphore.h soc2013/def/crashdump-head/sys/ofed/include/linux/slab.h soc2013/def/crashdump-head/sys/ofed/include/linux/socket.h soc2013/def/crashdump-head/sys/ofed/include/linux/spinlock.h soc2013/def/crashdump-head/sys/ofed/include/linux/string.h soc2013/def/crashdump-head/sys/ofed/include/linux/sysfs.h soc2013/def/crashdump-head/sys/ofed/include/linux/timer.h soc2013/def/crashdump-head/sys/ofed/include/linux/types.h soc2013/def/crashdump-head/sys/ofed/include/linux/uaccess.h soc2013/def/crashdump-head/sys/ofed/include/linux/vmalloc.h soc2013/def/crashdump-head/sys/ofed/include/linux/wait.h soc2013/def/crashdump-head/sys/ofed/include/linux/workqueue.h soc2013/def/crashdump-head/sys/ofed/include/net/ soc2013/def/crashdump-head/sys/pc98/include/privatespace.h soc2013/def/crashdump-head/sys/powerpc/aim/interrupt.c soc2013/def/crashdump-head/sys/powerpc/aim/machdep.c soc2013/def/crashdump-head/sys/powerpc/aim/uma_machdep.c soc2013/def/crashdump-head/sys/powerpc/booke/interrupt.c soc2013/def/crashdump-head/sys/powerpc/booke/machdep.c soc2013/def/crashdump-head/sys/sys/nv_impl.h soc2013/def/crashdump-head/sys/sys/nvlist_impl.h soc2013/def/crashdump-head/sys/sys/nvpair_impl.h soc2013/def/crashdump-head/sys/xen/interface/acm.h soc2013/def/crashdump-head/sys/xen/interface/acm_ops.h soc2013/def/crashdump-head/sys/xen/interface/arch-powerpc.h soc2013/def/crashdump-head/sys/xen/interface/elfstructs.h soc2013/def/crashdump-head/sys/xen/interface/foreign/ soc2013/def/crashdump-head/sys/xen/interface/libelf.h soc2013/def/crashdump-head/sys/xen/interface/mem_event.h soc2013/def/crashdump-head/tools/build/options/WITHOUT_ELFTOOLCHAIN_TOOLS soc2013/def/crashdump-head/tools/build/options/WITHOUT_SYSINSTALL soc2013/def/crashdump-head/tools/build/options/WITH_OPENSSH_NONE_CIPHER soc2013/def/crashdump-head/tools/bus_space/C/libbus_space.h soc2013/def/crashdump-head/tools/bus_space/bus_space.c soc2013/def/crashdump-head/tools/bus_space/bus_space.h soc2013/def/crashdump-head/tools/regression/acct/ soc2013/def/crashdump-head/tools/regression/acltools/ soc2013/def/crashdump-head/tools/regression/aio/aiotest/ soc2013/def/crashdump-head/tools/regression/aio/kqueue/ soc2013/def/crashdump-head/tools/regression/execve/ soc2013/def/crashdump-head/tools/regression/fifo/ soc2013/def/crashdump-head/tools/regression/file/ soc2013/def/crashdump-head/tools/regression/kqueue/ soc2013/def/crashdump-head/tools/regression/lib/libc/gen/ soc2013/def/crashdump-head/tools/regression/lib/libc/locale/ soc2013/def/crashdump-head/tools/regression/lib/libc/net/ soc2013/def/crashdump-head/tools/regression/lib/libc/stdio/ soc2013/def/crashdump-head/tools/regression/lib/libc/stdlib/ soc2013/def/crashdump-head/tools/regression/lib/libc/string/ soc2013/def/crashdump-head/tools/regression/mmap/ soc2013/def/crashdump-head/tools/regression/mqueue/ soc2013/def/crashdump-head/tools/regression/pipe/ soc2013/def/crashdump-head/tools/regression/posixshm/ soc2013/def/crashdump-head/tools/regression/vfs/ soc2013/def/crashdump-head/tools/test/posixshm/ soc2013/def/crashdump-head/usr.bin/cpio/test/ soc2013/def/crashdump-head/usr.bin/demandoc/ soc2013/def/crashdump-head/usr.bin/make/ soc2013/def/crashdump-head/usr.bin/soeliminate/ soc2013/def/crashdump-head/usr.bin/tar/test/ soc2013/def/crashdump-head/usr.bin/truss/amd64-fbsd.c soc2013/def/crashdump-head/usr.bin/truss/amd64-fbsd32.c soc2013/def/crashdump-head/usr.bin/truss/amd64linux32.conf soc2013/def/crashdump-head/usr.bin/truss/arm-fbsd.c soc2013/def/crashdump-head/usr.bin/truss/fbsd32.conf soc2013/def/crashdump-head/usr.bin/truss/i386-fbsd.c soc2013/def/crashdump-head/usr.bin/truss/i386.conf soc2013/def/crashdump-head/usr.bin/truss/i386linux.conf soc2013/def/crashdump-head/usr.bin/truss/mips-fbsd.c soc2013/def/crashdump-head/usr.bin/truss/powerpc-fbsd.c soc2013/def/crashdump-head/usr.bin/truss/powerpc64-fbsd.c soc2013/def/crashdump-head/usr.bin/truss/sparc64-fbsd.c soc2013/def/crashdump-head/usr.bin/vgrind/vgrindefs.c soc2013/def/crashdump-head/usr.sbin/bsdconfig/includes/includes soc2013/def/crashdump-head/usr.sbin/mtree/ soc2013/def/crashdump-head/usr.sbin/pw/fileupd.c Modified: soc2013/def/crashdump-head/Makefile.inc1 soc2013/def/crashdump-head/cddl/ (props changed) soc2013/def/crashdump-head/cddl/Makefile soc2013/def/crashdump-head/cddl/contrib/opensolaris/ (props changed) soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.motoofew.d soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.motoomany.d soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.mtatoofew.d soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.mtatoomany.d soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.mutex_owner.d soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.mutex_type_adaptive.d soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/get.ipv4remote.pl soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/get.ipv6remote.pl soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localtcp.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4remotetcp.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.localtcpstate.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.remotetcpstate.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ (props changed) soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.corruptenv.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.eliminate.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.enabled.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.enabled2.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.entryreturn.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.fork.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.header.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.linkpriv.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.linkunpriv.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiple.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noprobes.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreap.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreapring.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.onlyenabled.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.reap.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.reeval.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.static.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.static2.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.user.ksh soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/lockstat/lockstat.1 soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/plockstat/plockstat.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/zdb/zdb.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/zfs/ (props changed) soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/zhack/zhack.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/zstreamdump/zstreamdump.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/ztest/ztest.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/common/ctf/ctf_create.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_lex.l soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_module.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_module.h soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pragma.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_printf.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/ (props changed) soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_diff.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_mount.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.h soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h soc2013/def/crashdump-head/cddl/contrib/opensolaris/tools/ctf/cvt/dwarf.c soc2013/def/crashdump-head/cddl/contrib/opensolaris/tools/ctf/cvt/merge.c soc2013/def/crashdump-head/cddl/lib/Makefile soc2013/def/crashdump-head/cddl/lib/libdtrace/Makefile soc2013/def/crashdump-head/cddl/lib/libdtrace/io.d soc2013/def/crashdump-head/cddl/lib/libdtrace/ip.d soc2013/def/crashdump-head/cddl/lib/libdtrace/nfs.d soc2013/def/crashdump-head/cddl/lib/libdtrace/nfssrv.d soc2013/def/crashdump-head/cddl/lib/libdtrace/psinfo.d soc2013/def/crashdump-head/cddl/lib/libdtrace/regs_x86.d soc2013/def/crashdump-head/cddl/lib/libdtrace/sched.d soc2013/def/crashdump-head/cddl/lib/libdtrace/tcp.d soc2013/def/crashdump-head/cddl/lib/libdtrace/udp.d soc2013/def/crashdump-head/cddl/lib/libnvpair/Makefile soc2013/def/crashdump-head/cddl/lib/libzfs/Makefile soc2013/def/crashdump-head/cddl/lib/libzfs_core/Makefile soc2013/def/crashdump-head/cddl/lib/tests/Makefile soc2013/def/crashdump-head/cddl/sbin/Makefile soc2013/def/crashdump-head/cddl/sbin/tests/Makefile soc2013/def/crashdump-head/cddl/tests/Makefile soc2013/def/crashdump-head/cddl/usr.bin/Makefile soc2013/def/crashdump-head/cddl/usr.bin/ctfconvert/Makefile soc2013/def/crashdump-head/cddl/usr.bin/ctfdump/Makefile soc2013/def/crashdump-head/cddl/usr.bin/tests/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/aggs/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/arithmetic/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/arrays/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/assocs/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/begin/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/bitfields/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/buffering/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/builtinvar/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/cg/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/clauses/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/cpc/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/decls/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/docsExamples/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/drops/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/dtraceUtil/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/end/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/enum/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/error/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/exit/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/fbtprovider/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/funcs/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/grammar/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/include/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/inline/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/io/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/ip/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/java_api/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/json/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/lexer/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/llquantize/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/mdb/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/mib/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/misc/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/multiaggs/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/nfs/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/offsetof/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/operators/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/pid/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/plockstat/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/pointers/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/pragma/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/predicates/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/preprocessor/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/print/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/printa/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/printf/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/privs/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/probes/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/proc/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/profile-n/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/providers/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/raise/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/rates/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/safety/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/scalars/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/sched/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/scripting/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/sdt/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/sizeof/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/speculation/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/stability/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/stack/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/stackdepth/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/stop/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/strlen/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/strtoll/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/struct/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/syscall/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/sysevent/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/tick-n/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/trace/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/tracemem/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/translators/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/typedef/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/types/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/uctf/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/union/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/usdt/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/ustack/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/vars/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/common/version/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/tools/exclude.sh soc2013/def/crashdump-head/cddl/usr.sbin/dtrace/tests/tools/genmakefiles.sh soc2013/def/crashdump-head/cddl/usr.sbin/lockstat/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/plockstat/Makefile soc2013/def/crashdump-head/cddl/usr.sbin/tests/Makefile soc2013/def/crashdump-head/contrib/apr/ (props changed) soc2013/def/crashdump-head/contrib/apr/CHANGES soc2013/def/crashdump-head/contrib/apr/CMakeLists.txt soc2013/def/crashdump-head/contrib/apr/Makefile.in soc2013/def/crashdump-head/contrib/apr/NOTICE soc2013/def/crashdump-head/contrib/apr/NWGNUmakefile soc2013/def/crashdump-head/contrib/apr/apr.dsp soc2013/def/crashdump-head/contrib/apr/apr.spec soc2013/def/crashdump-head/contrib/apr/build-outputs.mk soc2013/def/crashdump-head/contrib/apr/configure soc2013/def/crashdump-head/contrib/apr/configure.in soc2013/def/crashdump-head/contrib/apr/encoding/apr_escape.c soc2013/def/crashdump-head/contrib/apr/include/apr_skiplist.h soc2013/def/crashdump-head/contrib/apr/include/apr_version.h soc2013/def/crashdump-head/contrib/apr/libapr.dsp soc2013/def/crashdump-head/contrib/apr/locks/unix/proc_mutex.c soc2013/def/crashdump-head/contrib/apr/memory/unix/apr_pools.c soc2013/def/crashdump-head/contrib/apr/misc/unix/errorcodes.c soc2013/def/crashdump-head/contrib/apr/network_io/unix/sockaddr.c soc2013/def/crashdump-head/contrib/apr/network_io/unix/sockets.c soc2013/def/crashdump-head/contrib/apr/poll/unix/epoll.c soc2013/def/crashdump-head/contrib/apr/poll/unix/kqueue.c soc2013/def/crashdump-head/contrib/apr/poll/unix/poll.c soc2013/def/crashdump-head/contrib/apr/poll/unix/pollcb.c soc2013/def/crashdump-head/contrib/apr/poll/unix/port.c soc2013/def/crashdump-head/contrib/apr/poll/unix/z_asio.c soc2013/def/crashdump-head/contrib/apr/tables/apr_skiplist.c soc2013/def/crashdump-head/contrib/binutils/ (props changed) soc2013/def/crashdump-head/contrib/binutils/bfd/elf32-arm.c soc2013/def/crashdump-head/contrib/binutils/gas/config/tc-i386.c soc2013/def/crashdump-head/contrib/binutils/opcodes/arm-dis.c soc2013/def/crashdump-head/contrib/bmake/ (props changed) soc2013/def/crashdump-head/contrib/bmake/ChangeLog soc2013/def/crashdump-head/contrib/bmake/FILES soc2013/def/crashdump-head/contrib/bmake/Makefile soc2013/def/crashdump-head/contrib/bmake/arch.c soc2013/def/crashdump-head/contrib/bmake/bmake.1 soc2013/def/crashdump-head/contrib/bmake/bmake.cat1 soc2013/def/crashdump-head/contrib/bmake/compat.c soc2013/def/crashdump-head/contrib/bmake/cond.c soc2013/def/crashdump-head/contrib/bmake/configure.in soc2013/def/crashdump-head/contrib/bmake/for.c soc2013/def/crashdump-head/contrib/bmake/job.c soc2013/def/crashdump-head/contrib/bmake/machine.sh soc2013/def/crashdump-head/contrib/bmake/main.c soc2013/def/crashdump-head/contrib/bmake/make-bootstrap.sh.in soc2013/def/crashdump-head/contrib/bmake/make.1 soc2013/def/crashdump-head/contrib/bmake/make.c soc2013/def/crashdump-head/contrib/bmake/make.h soc2013/def/crashdump-head/contrib/bmake/meta.c soc2013/def/crashdump-head/contrib/bmake/mk/ChangeLog soc2013/def/crashdump-head/contrib/bmake/mk/auto.obj.mk soc2013/def/crashdump-head/contrib/bmake/mk/dirdeps.mk soc2013/def/crashdump-head/contrib/bmake/mk/doc.mk soc2013/def/crashdump-head/contrib/bmake/mk/gendirdeps.mk soc2013/def/crashdump-head/contrib/bmake/mk/host-target.mk soc2013/def/crashdump-head/contrib/bmake/mk/install-mk soc2013/def/crashdump-head/contrib/bmake/mk/meta.autodep.mk soc2013/def/crashdump-head/contrib/bmake/mk/meta.stage.mk soc2013/def/crashdump-head/contrib/bmake/mk/meta.sys.mk soc2013/def/crashdump-head/contrib/bmake/mk/meta2deps.sh soc2013/def/crashdump-head/contrib/bmake/mk/mkopt.sh soc2013/def/crashdump-head/contrib/bmake/mk/own.mk soc2013/def/crashdump-head/contrib/bmake/mk/rst2htm.mk soc2013/def/crashdump-head/contrib/bmake/nonints.h soc2013/def/crashdump-head/contrib/bmake/os.sh soc2013/def/crashdump-head/contrib/bmake/parse.c soc2013/def/crashdump-head/contrib/bmake/suff.c soc2013/def/crashdump-head/contrib/bmake/targ.c soc2013/def/crashdump-head/contrib/bmake/unit-tests/Makefile.in soc2013/def/crashdump-head/contrib/bmake/unit-tests/varmisc.exp soc2013/def/crashdump-head/contrib/bmake/unit-tests/varmisc.mk soc2013/def/crashdump-head/contrib/bmake/var.c soc2013/def/crashdump-head/contrib/compiler-rt/ (props changed) soc2013/def/crashdump-head/contrib/compiler-rt/LICENSE.TXT soc2013/def/crashdump-head/contrib/compiler-rt/include/sanitizer/coverage_interface.h soc2013/def/crashdump-head/contrib/compiler-rt/include/sanitizer/dfsan_interface.h soc2013/def/crashdump-head/contrib/compiler-rt/include/sanitizer/lsan_interface.h soc2013/def/crashdump-head/contrib/compiler-rt/include/sanitizer/msan_interface.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_allocator.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_allocator.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_fake_stack.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_flags.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_globals.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_interceptors.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_interceptors.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_interface_internal.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_internal.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_linux.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_mac.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_mapping.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_poisoning.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_poisoning.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_posix.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_report.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_report.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_rtl.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_stats.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_stats.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_suppressions.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_suppressions.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_thread.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_win.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/scripts/asan_symbolize.py soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/tests/asan_asm_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/tests/asan_str_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/asan/tests/asan_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/arm/aeabi_memcmp.S soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/arm/aeabi_memcpy.S soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/arm/aeabi_memmove.S soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/arm/aeabi_memset.S soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/clear_cache.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/enable_execute_stack.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixdfdi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixsfdi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixunsdfdi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixunsdfti.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixunssfdi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/floatditf.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/floatunditf.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fp_extend.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fp_extend_impl.inc soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fp_trunc.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fp_trunc_impl.inc soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/int_endianness.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/int_lib.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/multc3.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/dfsan/dfsan.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/dfsan/dfsan_custom.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/dfsan/done_abilist.txt soc2013/def/crashdump-head/contrib/compiler-rt/lib/dfsan/scripts/check_custom_wrappers.sh soc2013/def/crashdump-head/contrib/compiler-rt/lib/interception/interception.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/interception/interception_win.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/lsan/lsan_common.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/lsan/lsan_common.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/lsan/lsan_common_linux.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/lsan/lsan_thread.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan.syms.extra soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan_allocator.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan_interceptors.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan_interface_internal.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan_linux.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan_new_delete.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan_origin.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan_poisoning.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan_report.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/msan_thread.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/msan/tests/msan_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/profile/GCDAProfiling.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/profile/InstrProfiling.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/profile/InstrProfilingFile.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_mapping_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/scripts/check_lint.sh soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/scripts/cpplint.py soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/scripts/litlint.py soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/scripts/sancov.py soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_libc_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_posix_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_procmaps_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_stacktrace_printer_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_stacktrace_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_stoptheworld_test.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/dd/dd_rtl.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/go/buildgo.sh soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan.syms.extra soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_fd.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_fd.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/tsan/rtl/tsan_update_shadow_word_inl.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_diag.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_diag.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_flags.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_flags.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_init.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_init.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.h soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_value.cc soc2013/def/crashdump-head/contrib/compiler-rt/lib/ubsan/ubsan_value.h soc2013/def/crashdump-head/contrib/dma/ (props changed) soc2013/def/crashdump-head/contrib/dma/LICENSE soc2013/def/crashdump-head/contrib/dma/README.markdown soc2013/def/crashdump-head/contrib/dma/TODO soc2013/def/crashdump-head/contrib/dma/VERSION soc2013/def/crashdump-head/contrib/dma/aliases_parse.y soc2013/def/crashdump-head/contrib/dma/aliases_scan.l soc2013/def/crashdump-head/contrib/dma/conf.c soc2013/def/crashdump-head/contrib/dma/dma-mbox-create.c soc2013/def/crashdump-head/contrib/dma/dma.8 soc2013/def/crashdump-head/contrib/dma/dma.c soc2013/def/crashdump-head/contrib/dma/dma.h soc2013/def/crashdump-head/contrib/dma/dns.c soc2013/def/crashdump-head/contrib/dma/get-version.sh soc2013/def/crashdump-head/contrib/dma/local.c soc2013/def/crashdump-head/contrib/dma/mail.c soc2013/def/crashdump-head/contrib/dma/net.c soc2013/def/crashdump-head/contrib/dma/spool.c soc2013/def/crashdump-head/contrib/dma/util.c soc2013/def/crashdump-head/contrib/dtc/ (props changed) soc2013/def/crashdump-head/contrib/dtc/checks.c soc2013/def/crashdump-head/contrib/elftoolchain/ (props changed) soc2013/def/crashdump-head/contrib/elftoolchain/addr2line/addr2line.1 soc2013/def/crashdump-head/contrib/elftoolchain/addr2line/addr2line.c soc2013/def/crashdump-head/contrib/elftoolchain/common/_elftc.h soc2013/def/crashdump-head/contrib/elftoolchain/common/elfdefinitions.h soc2013/def/crashdump-head/contrib/elftoolchain/common/native-elf-format soc2013/def/crashdump-head/contrib/elftoolchain/cxxfilt/c++filt.1 soc2013/def/crashdump-head/contrib/elftoolchain/elfcopy/elfcopy.1 soc2013/def/crashdump-head/contrib/elftoolchain/elfcopy/elfcopy.h soc2013/def/crashdump-head/contrib/elftoolchain/elfcopy/main.c soc2013/def/crashdump-head/contrib/elftoolchain/elfcopy/sections.c soc2013/def/crashdump-head/contrib/elftoolchain/elfcopy/segments.c soc2013/def/crashdump-head/contrib/elftoolchain/elfcopy/symbols.c soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_add_line_entry.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_def_macro.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_expand_frame_instructions.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_formblock.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_formflag.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_formref.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_formsig8.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_formudata.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_get_fde_info_for_all_regs.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_get_fde_info_for_reg.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_get_ranges.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_hasattr.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_next_cu_header.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_producer_init.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_sections.c soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/dwarf_whatattr.3 soc2013/def/crashdump-head/contrib/elftoolchain/libdwarf/libdwarf_reloc.c soc2013/def/crashdump-head/contrib/elftoolchain/libelf/elf.3 soc2013/def/crashdump-head/contrib/elftoolchain/libelf/elf_begin.3 soc2013/def/crashdump-head/contrib/elftoolchain/libelf/elf_cntl.3 soc2013/def/crashdump-head/contrib/elftoolchain/libelf/elf_getdata.3 soc2013/def/crashdump-head/contrib/elftoolchain/libelf/elf_open.3 soc2013/def/crashdump-head/contrib/elftoolchain/libelf/elf_update.c soc2013/def/crashdump-head/contrib/elftoolchain/libelf/gelf.3 soc2013/def/crashdump-head/contrib/elftoolchain/libelftc/elftc_demangle.3 soc2013/def/crashdump-head/contrib/elftoolchain/libelftc/elftc_symbol_table_create.3 soc2013/def/crashdump-head/contrib/elftoolchain/libelftc/libelftc_dem_gnu3.c soc2013/def/crashdump-head/contrib/elftoolchain/libelftc/os.Linux.mk soc2013/def/crashdump-head/contrib/elftoolchain/nm/nm.1 soc2013/def/crashdump-head/contrib/elftoolchain/readelf/readelf.1 soc2013/def/crashdump-head/contrib/elftoolchain/readelf/readelf.c soc2013/def/crashdump-head/contrib/elftoolchain/size/size.1 soc2013/def/crashdump-head/contrib/elftoolchain/size/size.c soc2013/def/crashdump-head/contrib/elftoolchain/strings/strings.1 soc2013/def/crashdump-head/contrib/expat/ (props changed) soc2013/def/crashdump-head/contrib/expat/lib/xmlparse.c soc2013/def/crashdump-head/contrib/file/ (props changed) soc2013/def/crashdump-head/contrib/file/ChangeLog soc2013/def/crashdump-head/contrib/file/Makefile.in soc2013/def/crashdump-head/contrib/file/TODO soc2013/def/crashdump-head/contrib/file/aclocal.m4 soc2013/def/crashdump-head/contrib/file/compile soc2013/def/crashdump-head/contrib/file/config.h.in soc2013/def/crashdump-head/contrib/file/configure soc2013/def/crashdump-head/contrib/file/configure.ac soc2013/def/crashdump-head/contrib/file/depcomp soc2013/def/crashdump-head/contrib/file/doc/Makefile.in soc2013/def/crashdump-head/contrib/file/doc/file.man soc2013/def/crashdump-head/contrib/file/doc/libmagic.man soc2013/def/crashdump-head/contrib/file/doc/magic.man soc2013/def/crashdump-head/contrib/file/ltmain.sh soc2013/def/crashdump-head/contrib/file/magic/Magdir/adventure soc2013/def/crashdump-head/contrib/file/magic/Magdir/android soc2013/def/crashdump-head/contrib/file/magic/Magdir/apple soc2013/def/crashdump-head/contrib/file/magic/Magdir/archive soc2013/def/crashdump-head/contrib/file/magic/Magdir/audio soc2013/def/crashdump-head/contrib/file/magic/Magdir/c-lang soc2013/def/crashdump-head/contrib/file/magic/Magdir/c64 soc2013/def/crashdump-head/contrib/file/magic/Magdir/cafebabe soc2013/def/crashdump-head/contrib/file/magic/Magdir/commands soc2013/def/crashdump-head/contrib/file/magic/Magdir/compress soc2013/def/crashdump-head/contrib/file/magic/Magdir/console soc2013/def/crashdump-head/contrib/file/magic/Magdir/database soc2013/def/crashdump-head/contrib/file/magic/Magdir/dyadic soc2013/def/crashdump-head/contrib/file/magic/Magdir/elf soc2013/def/crashdump-head/contrib/file/magic/Magdir/filesystems soc2013/def/crashdump-head/contrib/file/magic/Magdir/fortran soc2013/def/crashdump-head/contrib/file/magic/Magdir/frame soc2013/def/crashdump-head/contrib/file/magic/Magdir/gnu soc2013/def/crashdump-head/contrib/file/magic/Magdir/iff soc2013/def/crashdump-head/contrib/file/magic/Magdir/images soc2013/def/crashdump-head/contrib/file/magic/Magdir/jpeg soc2013/def/crashdump-head/contrib/file/magic/Magdir/karma soc2013/def/crashdump-head/contrib/file/magic/Magdir/linux soc2013/def/crashdump-head/contrib/file/magic/Magdir/mach soc2013/def/crashdump-head/contrib/file/magic/Magdir/mail.news soc2013/def/crashdump-head/contrib/file/magic/Magdir/make soc2013/def/crashdump-head/contrib/file/magic/Magdir/map soc2013/def/crashdump-head/contrib/file/magic/Magdir/mathematica soc2013/def/crashdump-head/contrib/file/magic/Magdir/misctools soc2013/def/crashdump-head/contrib/file/magic/Magdir/modem soc2013/def/crashdump-head/contrib/file/magic/Magdir/mozilla soc2013/def/crashdump-head/contrib/file/magic/Magdir/msdos soc2013/def/crashdump-head/contrib/file/magic/Magdir/netscape soc2013/def/crashdump-head/contrib/file/magic/Magdir/os2 soc2013/def/crashdump-head/contrib/file/magic/Magdir/pdf soc2013/def/crashdump-head/contrib/file/magic/Magdir/perl soc2013/def/crashdump-head/contrib/file/magic/Magdir/python soc2013/def/crashdump-head/contrib/file/magic/Magdir/riff soc2013/def/crashdump-head/contrib/file/magic/Magdir/scientific soc2013/def/crashdump-head/contrib/file/magic/Magdir/sereal soc2013/def/crashdump-head/contrib/file/magic/Magdir/sgi soc2013/def/crashdump-head/contrib/file/magic/Magdir/sgml soc2013/def/crashdump-head/contrib/file/magic/Magdir/varied.script soc2013/def/crashdump-head/contrib/file/magic/Magdir/vorbis soc2013/def/crashdump-head/contrib/file/magic/Magdir/windows soc2013/def/crashdump-head/contrib/file/magic/Makefile.am soc2013/def/crashdump-head/contrib/file/magic/Makefile.in soc2013/def/crashdump-head/contrib/file/missing soc2013/def/crashdump-head/contrib/file/python/Makefile.in soc2013/def/crashdump-head/contrib/file/src/Makefile.in soc2013/def/crashdump-head/contrib/file/src/apprentice.c soc2013/def/crashdump-head/contrib/file/src/ascmagic.c soc2013/def/crashdump-head/contrib/file/src/cdf.c soc2013/def/crashdump-head/contrib/file/src/cdf.h soc2013/def/crashdump-head/contrib/file/src/compress.c soc2013/def/crashdump-head/contrib/file/src/encoding.c soc2013/def/crashdump-head/contrib/file/src/file.c soc2013/def/crashdump-head/contrib/file/src/file.h soc2013/def/crashdump-head/contrib/file/src/file_opts.h soc2013/def/crashdump-head/contrib/file/src/fsmagic.c soc2013/def/crashdump-head/contrib/file/src/funcs.c soc2013/def/crashdump-head/contrib/file/src/is_tar.c soc2013/def/crashdump-head/contrib/file/src/magic.c soc2013/def/crashdump-head/contrib/file/src/magic.h soc2013/def/crashdump-head/contrib/file/src/magic.h.in soc2013/def/crashdump-head/contrib/file/src/print.c soc2013/def/crashdump-head/contrib/file/src/readcdf.c soc2013/def/crashdump-head/contrib/file/src/readelf.c soc2013/def/crashdump-head/contrib/file/src/softmagic.c soc2013/def/crashdump-head/contrib/file/tests/Makefile.in soc2013/def/crashdump-head/contrib/gcc/ (props changed) soc2013/def/crashdump-head/contrib/gcc/c-cppbuiltin.c soc2013/def/crashdump-head/contrib/gcc/cfgexpand.c soc2013/def/crashdump-head/contrib/gcc/common.opt soc2013/def/crashdump-head/contrib/gcc/config/arm/crti.asm soc2013/def/crashdump-head/contrib/gcc/config/arm/crtn.asm soc2013/def/crashdump-head/contrib/gcc/config/arm/lib1funcs.asm soc2013/def/crashdump-head/contrib/gcc/doc/cpp.texi soc2013/def/crashdump-head/contrib/gcc/doc/gcc.1 soc2013/def/crashdump-head/contrib/gcc/doc/invoke.texi soc2013/def/crashdump-head/contrib/gcc/dwarf2.h soc2013/def/crashdump-head/contrib/gcc/gcc.c soc2013/def/crashdump-head/contrib/gcc/longlong.h soc2013/def/crashdump-head/contrib/gdb/ (props changed) soc2013/def/crashdump-head/contrib/gdb/gdb/arm-tdep.c soc2013/def/crashdump-head/contrib/gdb/gdb/c-valprint.c soc2013/def/crashdump-head/contrib/gdb/gdb/dwarf2expr.c soc2013/def/crashdump-head/contrib/gdb/gdb/dwarf2expr.h soc2013/def/crashdump-head/contrib/gdb/gdb/dwarf2loc.c soc2013/def/crashdump-head/contrib/gdb/gdb/dwarf2read.c soc2013/def/crashdump-head/contrib/gdb/gdb/value.h soc2013/def/crashdump-head/contrib/gdb/gdb/values.c soc2013/def/crashdump-head/contrib/groff/ (props changed) soc2013/def/crashdump-head/contrib/groff/tmac/doc-syms soc2013/def/crashdump-head/contrib/groff/tmac/groff_mdoc.man soc2013/def/crashdump-head/contrib/ipfilter/ (props changed) soc2013/def/crashdump-head/contrib/ipfilter/ml_ipl.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mlfk_ipl.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mlh_rule.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mli_ipl.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mln_ipl.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mls_ipl.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/tools/ipf.c soc2013/def/crashdump-head/contrib/libarchive/ (props changed) soc2013/def/crashdump-head/contrib/libarchive/libarchive/ (props changed) soc2013/def/crashdump-head/contrib/libarchive/libarchive/archive_read.c soc2013/def/crashdump-head/contrib/libarchive/libarchive/archive_read_support_format_cpio.c soc2013/def/crashdump-head/contrib/libarchive/libarchive/archive_read_support_format_tar.c soc2013/def/crashdump-head/contrib/libcxxrt/FREEBSD-upgrade soc2013/def/crashdump-head/contrib/libcxxrt/libelftc_dem_gnu3.c soc2013/def/crashdump-head/contrib/libexecinfo/ (props changed) soc2013/def/crashdump-head/contrib/libexecinfo/backtrace.3 soc2013/def/crashdump-head/contrib/libucl/ChangeLog.md soc2013/def/crashdump-head/contrib/libucl/README.md soc2013/def/crashdump-head/contrib/libucl/configure.ac soc2013/def/crashdump-head/contrib/libucl/doc/lua_api.md soc2013/def/crashdump-head/contrib/libucl/klib/kvec.h soc2013/def/crashdump-head/contrib/libucl/lua/lua_ucl.c soc2013/def/crashdump-head/contrib/libucl/src/tree.h soc2013/def/crashdump-head/contrib/libucl/src/ucl_chartable.h soc2013/def/crashdump-head/contrib/libucl/src/ucl_emitter.c soc2013/def/crashdump-head/contrib/libucl/src/ucl_hash.c soc2013/def/crashdump-head/contrib/libucl/src/ucl_internal.h soc2013/def/crashdump-head/contrib/libucl/src/ucl_util.c soc2013/def/crashdump-head/contrib/libucl/src/xxhash.c soc2013/def/crashdump-head/contrib/libucl/tests/Makefile.am soc2013/def/crashdump-head/contrib/libucl/tests/basic/13.in soc2013/def/crashdump-head/contrib/libucl/tests/test_basic.c soc2013/def/crashdump-head/contrib/libucl/utils/chargen.c soc2013/def/crashdump-head/contrib/libucl/utils/objdump.c soc2013/def/crashdump-head/contrib/netbsd-tests/bin/dd/t_dd.sh soc2013/def/crashdump-head/contrib/netbsd-tests/kernel/t_lockf.c soc2013/def/crashdump-head/contrib/netbsd-tests/kernel/t_mqueue.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/c063/t_faccessat.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/c063/t_openat.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/c063/t_readlinkat.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/c063/t_unlinkat.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/gen/posix_spawn/t_spawnattr.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/gen/t_glob.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/locale/t_mbrtowc.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/locale/t_mbstowcs.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/regex/debug.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/ssp/h_readlink.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/string/t_memmem.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libc/sys/t_getcontext.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libcrypt/t_crypt.c soc2013/def/crashdump-head/contrib/netbsd-tests/lib/libm/t_fmod.c soc2013/def/crashdump-head/contrib/sendmail/ (props changed) soc2013/def/crashdump-head/contrib/sendmail/CACerts soc2013/def/crashdump-head/contrib/sendmail/FAQ soc2013/def/crashdump-head/contrib/sendmail/FREEBSD-upgrade soc2013/def/crashdump-head/contrib/sendmail/INSTALL soc2013/def/crashdump-head/contrib/sendmail/KNOWNBUGS soc2013/def/crashdump-head/contrib/sendmail/PGPKEYS soc2013/def/crashdump-head/contrib/sendmail/README soc2013/def/crashdump-head/contrib/sendmail/RELEASE_NOTES soc2013/def/crashdump-head/contrib/sendmail/cf/README soc2013/def/crashdump-head/contrib/sendmail/cf/cf/Makefile soc2013/def/crashdump-head/contrib/sendmail/cf/cf/submit.cf soc2013/def/crashdump-head/contrib/sendmail/cf/cf/submit.mc soc2013/def/crashdump-head/contrib/sendmail/cf/feature/block_bad_helo.m4 soc2013/def/crashdump-head/contrib/sendmail/cf/feature/ldap_routing.m4 soc2013/def/crashdump-head/contrib/sendmail/cf/m4/cfhead.m4 soc2013/def/crashdump-head/contrib/sendmail/cf/m4/proto.m4 soc2013/def/crashdump-head/contrib/sendmail/cf/m4/version.m4 soc2013/def/crashdump-head/contrib/sendmail/doc/op/op.me soc2013/def/crashdump-head/contrib/sendmail/editmap/editmap.c soc2013/def/crashdump-head/contrib/sendmail/include/sendmail/sendmail.h soc2013/def/crashdump-head/contrib/sendmail/include/sm/bdb.h soc2013/def/crashdump-head/contrib/sendmail/include/sm/cdefs.h soc2013/def/crashdump-head/contrib/sendmail/include/sm/conf.h soc2013/def/crashdump-head/contrib/sendmail/include/sm/errstring.h soc2013/def/crashdump-head/contrib/sendmail/include/sm/fdset.h soc2013/def/crashdump-head/contrib/sendmail/libmilter/docs/smfi_setsymlist.html soc2013/def/crashdump-head/contrib/sendmail/libmilter/engine.c soc2013/def/crashdump-head/contrib/sendmail/libmilter/handler.c soc2013/def/crashdump-head/contrib/sendmail/libmilter/listener.c soc2013/def/crashdump-head/contrib/sendmail/libmilter/signal.c soc2013/def/crashdump-head/contrib/sendmail/libmilter/smfi.c soc2013/def/crashdump-head/contrib/sendmail/libmilter/worker.c soc2013/def/crashdump-head/contrib/sendmail/libsm/Makefile.m4 soc2013/def/crashdump-head/contrib/sendmail/libsm/errstring.c soc2013/def/crashdump-head/contrib/sendmail/libsm/local.h soc2013/def/crashdump-head/contrib/sendmail/libsm/mbdb.c soc2013/def/crashdump-head/contrib/sendmail/libsm/refill.c soc2013/def/crashdump-head/contrib/sendmail/libsm/stdio.c soc2013/def/crashdump-head/contrib/sendmail/libsm/vfprintf.c soc2013/def/crashdump-head/contrib/sendmail/libsmdb/smdb.c soc2013/def/crashdump-head/contrib/sendmail/makemap/makemap.c soc2013/def/crashdump-head/contrib/sendmail/src/README soc2013/def/crashdump-head/contrib/sendmail/src/TRACEFLAGS soc2013/def/crashdump-head/contrib/sendmail/src/TUNING soc2013/def/crashdump-head/contrib/sendmail/src/bf.c soc2013/def/crashdump-head/contrib/sendmail/src/collect.c soc2013/def/crashdump-head/contrib/sendmail/src/conf.c soc2013/def/crashdump-head/contrib/sendmail/src/daemon.c soc2013/def/crashdump-head/contrib/sendmail/src/deliver.c soc2013/def/crashdump-head/contrib/sendmail/src/envelope.c soc2013/def/crashdump-head/contrib/sendmail/src/err.c soc2013/def/crashdump-head/contrib/sendmail/src/headers.c soc2013/def/crashdump-head/contrib/sendmail/src/main.c soc2013/def/crashdump-head/contrib/sendmail/src/map.c soc2013/def/crashdump-head/contrib/sendmail/src/mci.c soc2013/def/crashdump-head/contrib/sendmail/src/milter.c soc2013/def/crashdump-head/contrib/sendmail/src/parseaddr.c soc2013/def/crashdump-head/contrib/sendmail/src/queue.c soc2013/def/crashdump-head/contrib/sendmail/src/readcf.c soc2013/def/crashdump-head/contrib/sendmail/src/recipient.c soc2013/def/crashdump-head/contrib/sendmail/src/savemail.c soc2013/def/crashdump-head/contrib/sendmail/src/sendmail.8 soc2013/def/crashdump-head/contrib/sendmail/src/sendmail.h soc2013/def/crashdump-head/contrib/sendmail/src/sfsasl.c soc2013/def/crashdump-head/contrib/sendmail/src/sm_resolve.c soc2013/def/crashdump-head/contrib/sendmail/src/srvrsmtp.c soc2013/def/crashdump-head/contrib/sendmail/src/tls.c soc2013/def/crashdump-head/contrib/sendmail/src/usersmtp.c soc2013/def/crashdump-head/contrib/sendmail/src/util.c soc2013/def/crashdump-head/contrib/sendmail/src/version.c soc2013/def/crashdump-head/contrib/tzdata/ (props changed) soc2013/def/crashdump-head/contrib/tzdata/africa soc2013/def/crashdump-head/contrib/tzdata/antarctica soc2013/def/crashdump-head/contrib/tzdata/asia soc2013/def/crashdump-head/contrib/tzdata/australasia soc2013/def/crashdump-head/contrib/tzdata/backward soc2013/def/crashdump-head/contrib/tzdata/europe soc2013/def/crashdump-head/contrib/tzdata/leap-seconds.list soc2013/def/crashdump-head/contrib/tzdata/leapseconds soc2013/def/crashdump-head/contrib/tzdata/northamerica soc2013/def/crashdump-head/contrib/tzdata/southamerica soc2013/def/crashdump-head/contrib/tzdata/zone.tab soc2013/def/crashdump-head/contrib/tzdata/zone1970.tab soc2013/def/crashdump-head/contrib/wpa/ (props changed) soc2013/def/crashdump-head/contrib/wpa/hostapd/ChangeLog soc2013/def/crashdump-head/contrib/wpa/hostapd/config_file.c soc2013/def/crashdump-head/contrib/wpa/hostapd/config_file.h soc2013/def/crashdump-head/contrib/wpa/hostapd/ctrl_iface.c soc2013/def/crashdump-head/contrib/wpa/hostapd/defconfig soc2013/def/crashdump-head/contrib/wpa/hostapd/hlr_auc_gw.c soc2013/def/crashdump-head/contrib/wpa/hostapd/hlr_auc_gw.milenage_db soc2013/def/crashdump-head/contrib/wpa/hostapd/hostapd.conf soc2013/def/crashdump-head/contrib/wpa/hostapd/hostapd_cli.c soc2013/def/crashdump-head/contrib/wpa/hostapd/main.c soc2013/def/crashdump-head/contrib/wpa/hs20/client/Makefile soc2013/def/crashdump-head/contrib/wpa/hs20/client/osu_client.c soc2013/def/crashdump-head/contrib/wpa/hs20/client/spp_client.c soc2013/def/crashdump-head/contrib/wpa/src/ap/accounting.c soc2013/def/crashdump-head/contrib/wpa/src/ap/acs.c soc2013/def/crashdump-head/contrib/wpa/src/ap/ap_config.c soc2013/def/crashdump-head/contrib/wpa/src/ap/ap_config.h soc2013/def/crashdump-head/contrib/wpa/src/ap/ap_drv_ops.c soc2013/def/crashdump-head/contrib/wpa/src/ap/ap_drv_ops.h soc2013/def/crashdump-head/contrib/wpa/src/ap/ap_list.c soc2013/def/crashdump-head/contrib/wpa/src/ap/ap_list.h soc2013/def/crashdump-head/contrib/wpa/src/ap/authsrv.c soc2013/def/crashdump-head/contrib/wpa/src/ap/beacon.c soc2013/def/crashdump-head/contrib/wpa/src/ap/beacon.h soc2013/def/crashdump-head/contrib/wpa/src/ap/ctrl_iface_ap.c soc2013/def/crashdump-head/contrib/wpa/src/ap/dfs.c soc2013/def/crashdump-head/contrib/wpa/src/ap/drv_callbacks.c soc2013/def/crashdump-head/contrib/wpa/src/ap/eap_user_db.c soc2013/def/crashdump-head/contrib/wpa/src/ap/hostapd.c soc2013/def/crashdump-head/contrib/wpa/src/ap/hostapd.h soc2013/def/crashdump-head/contrib/wpa/src/ap/hw_features.c soc2013/def/crashdump-head/contrib/wpa/src/ap/hw_features.h soc2013/def/crashdump-head/contrib/wpa/src/ap/ieee802_11.c soc2013/def/crashdump-head/contrib/wpa/src/ap/ieee802_11.h soc2013/def/crashdump-head/contrib/wpa/src/ap/ieee802_11_auth.c soc2013/def/crashdump-head/contrib/wpa/src/ap/ieee802_11_auth.h soc2013/def/crashdump-head/contrib/wpa/src/ap/ieee802_11_ht.c soc2013/def/crashdump-head/contrib/wpa/src/ap/ieee802_11_vht.c soc2013/def/crashdump-head/contrib/wpa/src/ap/ieee802_1x.c soc2013/def/crashdump-head/contrib/wpa/src/ap/ieee802_1x.h soc2013/def/crashdump-head/contrib/wpa/src/ap/ndisc_snoop.c soc2013/def/crashdump-head/contrib/wpa/src/ap/sta_info.c soc2013/def/crashdump-head/contrib/wpa/src/ap/sta_info.h soc2013/def/crashdump-head/contrib/wpa/src/ap/utils.c soc2013/def/crashdump-head/contrib/wpa/src/ap/vlan_init.c soc2013/def/crashdump-head/contrib/wpa/src/ap/vlan_init.h soc2013/def/crashdump-head/contrib/wpa/src/ap/vlan_util.c soc2013/def/crashdump-head/contrib/wpa/src/ap/wmm.c soc2013/def/crashdump-head/contrib/wpa/src/ap/wpa_auth.c soc2013/def/crashdump-head/contrib/wpa/src/ap/wpa_auth.h soc2013/def/crashdump-head/contrib/wpa/src/ap/wpa_auth_ft.c soc2013/def/crashdump-head/contrib/wpa/src/ap/wpa_auth_glue.c soc2013/def/crashdump-head/contrib/wpa/src/ap/wpa_auth_i.h soc2013/def/crashdump-head/contrib/wpa/src/ap/wpa_auth_ie.c soc2013/def/crashdump-head/contrib/wpa/src/ap/wps_hostapd.c soc2013/def/crashdump-head/contrib/wpa/src/ap/x_snoop.c soc2013/def/crashdump-head/contrib/wpa/src/common/common_module_tests.c soc2013/def/crashdump-head/contrib/wpa/src/common/defs.h soc2013/def/crashdump-head/contrib/wpa/src/common/hw_features_common.c soc2013/def/crashdump-head/contrib/wpa/src/common/hw_features_common.h soc2013/def/crashdump-head/contrib/wpa/src/common/ieee802_11_common.c soc2013/def/crashdump-head/contrib/wpa/src/common/ieee802_11_common.h soc2013/def/crashdump-head/contrib/wpa/src/common/ieee802_11_defs.h soc2013/def/crashdump-head/contrib/wpa/src/common/privsep_commands.h soc2013/def/crashdump-head/contrib/wpa/src/common/qca-vendor.h soc2013/def/crashdump-head/contrib/wpa/src/common/sae.c soc2013/def/crashdump-head/contrib/wpa/src/common/sae.h soc2013/def/crashdump-head/contrib/wpa/src/common/version.h soc2013/def/crashdump-head/contrib/wpa/src/common/wpa_common.c soc2013/def/crashdump-head/contrib/wpa/src/common/wpa_common.h soc2013/def/crashdump-head/contrib/wpa/src/common/wpa_ctrl.c soc2013/def/crashdump-head/contrib/wpa/src/common/wpa_ctrl.h soc2013/def/crashdump-head/contrib/wpa/src/crypto/crypto.h soc2013/def/crashdump-head/contrib/wpa/src/crypto/crypto_module_tests.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/crypto_openssl.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/dh_groups.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/fips_prf_openssl.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/ms_funcs.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/ms_funcs.h soc2013/def/crashdump-head/contrib/wpa/src/crypto/random.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/sha1-tlsprf.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/sha1-tprf.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/sha256-kdf.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/sha384.h soc2013/def/crashdump-head/contrib/wpa/src/crypto/tls.h soc2013/def/crashdump-head/contrib/wpa/src/crypto/tls_gnutls.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/tls_internal.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/tls_none.c soc2013/def/crashdump-head/contrib/wpa/src/crypto/tls_openssl.c soc2013/def/crashdump-head/contrib/wpa/src/drivers/driver.h soc2013/def/crashdump-head/contrib/wpa/src/drivers/driver_bsd.c soc2013/def/crashdump-head/contrib/wpa/src/drivers/driver_ndis.c soc2013/def/crashdump-head/contrib/wpa/src/drivers/driver_nl80211.h soc2013/def/crashdump-head/contrib/wpa/src/drivers/driver_nl80211_android.c soc2013/def/crashdump-head/contrib/wpa/src/drivers/driver_nl80211_capa.c soc2013/def/crashdump-head/contrib/wpa/src/drivers/driver_nl80211_event.c soc2013/def/crashdump-head/contrib/wpa/src/drivers/driver_nl80211_scan.c soc2013/def/crashdump-head/contrib/wpa/src/drivers/driver_privsep.c soc2013/def/crashdump-head/contrib/wpa/src/drivers/drivers.c soc2013/def/crashdump-head/contrib/wpa/src/eap_common/eap_common.c soc2013/def/crashdump-head/contrib/wpa/src/eap_common/eap_fast_common.c soc2013/def/crashdump-head/contrib/wpa/src/eap_common/eap_pwd_common.c soc2013/def/crashdump-head/contrib/wpa/src/eap_common/eap_pwd_common.h soc2013/def/crashdump-head/contrib/wpa/src/eap_common/eap_sake_common.c soc2013/def/crashdump-head/contrib/wpa/src/eap_common/ikev2_common.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap.h soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_aka.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_eke.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_fast.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_gpsk.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_i.h soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_mschapv2.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_pax.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_peap.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_pwd.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_sake.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_sim.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_tls.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_tls_common.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_tls_common.h soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_ttls.c soc2013/def/crashdump-head/contrib/wpa/src/eap_peer/eap_wsc.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap.h soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_i.h soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_server.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_server_eke.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_server_fast.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_server_mschapv2.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_server_peap.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_server_pwd.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_server_tls.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_server_tls_common.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_server_ttls.c soc2013/def/crashdump-head/contrib/wpa/src/eap_server/eap_tls_common.h soc2013/def/crashdump-head/contrib/wpa/src/eapol_auth/eapol_auth_sm.c soc2013/def/crashdump-head/contrib/wpa/src/eapol_auth/eapol_auth_sm.h soc2013/def/crashdump-head/contrib/wpa/src/eapol_supp/eapol_supp_sm.c soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p.c soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p.h soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p_build.c soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p_dev_disc.c soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p_go_neg.c soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p_group.c soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p_i.h soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p_invitation.c soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p_parse.c soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p_pd.c soc2013/def/crashdump-head/contrib/wpa/src/p2p/p2p_utils.c soc2013/def/crashdump-head/contrib/wpa/src/radius/radius.c soc2013/def/crashdump-head/contrib/wpa/src/radius/radius_das.c soc2013/def/crashdump-head/contrib/wpa/src/radius/radius_server.c soc2013/def/crashdump-head/contrib/wpa/src/radius/radius_server.h soc2013/def/crashdump-head/contrib/wpa/src/rsn_supp/tdls.c soc2013/def/crashdump-head/contrib/wpa/src/rsn_supp/wpa.c soc2013/def/crashdump-head/contrib/wpa/src/rsn_supp/wpa_ft.c soc2013/def/crashdump-head/contrib/wpa/src/rsn_supp/wpa_ie.c soc2013/def/crashdump-head/contrib/wpa/src/rsn_supp/wpa_ie.h soc2013/def/crashdump-head/contrib/wpa/src/tls/libtommath.c soc2013/def/crashdump-head/contrib/wpa/src/tls/tlsv1_client.c soc2013/def/crashdump-head/contrib/wpa/src/tls/tlsv1_client.h soc2013/def/crashdump-head/contrib/wpa/src/tls/tlsv1_server.c soc2013/def/crashdump-head/contrib/wpa/src/tls/tlsv1_server.h soc2013/def/crashdump-head/contrib/wpa/src/tls/x509v3.c soc2013/def/crashdump-head/contrib/wpa/src/utils/browser-wpadebug.c soc2013/def/crashdump-head/contrib/wpa/src/utils/common.c soc2013/def/crashdump-head/contrib/wpa/src/utils/common.h soc2013/def/crashdump-head/contrib/wpa/src/utils/eloop.c soc2013/def/crashdump-head/contrib/wpa/src/utils/http_curl.c soc2013/def/crashdump-head/contrib/wpa/src/utils/includes.h soc2013/def/crashdump-head/contrib/wpa/src/utils/os.h soc2013/def/crashdump-head/contrib/wpa/src/utils/os_internal.c soc2013/def/crashdump-head/contrib/wpa/src/utils/os_none.c soc2013/def/crashdump-head/contrib/wpa/src/utils/os_unix.c soc2013/def/crashdump-head/contrib/wpa/src/utils/os_win32.c soc2013/def/crashdump-head/contrib/wpa/src/utils/radiotap.c soc2013/def/crashdump-head/contrib/wpa/src/utils/utils_module_tests.c soc2013/def/crashdump-head/contrib/wpa/src/utils/wpa_debug.c soc2013/def/crashdump-head/contrib/wpa/src/utils/wpa_debug.h soc2013/def/crashdump-head/contrib/wpa/src/utils/wpabuf.c soc2013/def/crashdump-head/contrib/wpa/src/wps/http_client.c soc2013/def/crashdump-head/contrib/wpa/src/wps/http_server.c soc2013/def/crashdump-head/contrib/wpa/src/wps/httpread.c soc2013/def/crashdump-head/contrib/wpa/src/wps/ndef.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps.h soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_attr_parse.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_attr_parse.h soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_common.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_defs.h soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_enrollee.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_er.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_er_ssdp.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_module_tests.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_registrar.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_upnp.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_upnp_ap.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_upnp_event.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_upnp_ssdp.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_upnp_web.c soc2013/def/crashdump-head/contrib/wpa/src/wps/wps_validate.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/ChangeLog soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/ap.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/ap.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/bss.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/bss.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/config.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/config.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/config_file.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/config_ssid.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/ctrl_iface.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/ctrl_iface_named_pipe.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/ctrl_iface_udp.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/ctrl_iface_unix.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_new.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_new.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_wps.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_new_introspect.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_old.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/defconfig soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/driver_i.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/eapol_test.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/events.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/hs20_supplicant.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/ibss_rsn.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/interworking.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/main.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/mesh.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/mesh_mpm.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/mesh_rsn.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/notify.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/notify.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/p2p_supplicant.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/p2p_supplicant.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/preauth_test.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/scan.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/sme.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/wpa_cli.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/wpa_priv.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/wpa_supplicant.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/wpa_supplicant.conf soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/wpa_supplicant_i.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/wpas_glue.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/wpas_glue.h soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/wps_supplicant.c soc2013/def/crashdump-head/contrib/wpa/wpa_supplicant/wps_supplicant.h soc2013/def/crashdump-head/contrib/xz/ (props changed) soc2013/def/crashdump-head/contrib/xz/ChangeLog soc2013/def/crashdump-head/contrib/xz/THANKS soc2013/def/crashdump-head/contrib/xz/src/common/tuklib_physmem.c soc2013/def/crashdump-head/contrib/xz/src/liblzma/api/lzma.h soc2013/def/crashdump-head/contrib/xz/src/liblzma/api/lzma/version.h soc2013/def/crashdump-head/contrib/xz/src/liblzma/common/index.c soc2013/def/crashdump-head/contrib/xz/src/liblzma/lz/lz_encoder.c soc2013/def/crashdump-head/contrib/xz/src/liblzma/lzma/lzma_encoder.c soc2013/def/crashdump-head/contrib/xz/src/xz/args.h soc2013/def/crashdump-head/contrib/xz/src/xz/file_io.c soc2013/def/crashdump-head/contrib/xz/src/xz/main.c soc2013/def/crashdump-head/contrib/xz/src/xz/message.c soc2013/def/crashdump-head/contrib/xz/src/xz/options.c soc2013/def/crashdump-head/contrib/xz/src/xz/xz.1 soc2013/def/crashdump-head/gnu/Makefile soc2013/def/crashdump-head/gnu/lib/ (props changed) soc2013/def/crashdump-head/gnu/lib/Makefile soc2013/def/crashdump-head/gnu/lib/csu/Makefile soc2013/def/crashdump-head/gnu/lib/libgcc/Makefile soc2013/def/crashdump-head/gnu/lib/libgomp/Makefile soc2013/def/crashdump-head/gnu/lib/libgomp/config.h soc2013/def/crashdump-head/gnu/lib/libreadline/readline/Makefile soc2013/def/crashdump-head/gnu/lib/libstdc++/Makefile soc2013/def/crashdump-head/gnu/lib/libsupc++/Makefile soc2013/def/crashdump-head/gnu/lib/tests/Makefile soc2013/def/crashdump-head/gnu/tests/Makefile soc2013/def/crashdump-head/gnu/usr.bin/Makefile soc2013/def/crashdump-head/gnu/usr.bin/binutils/ (props changed) soc2013/def/crashdump-head/gnu/usr.bin/binutils/Makefile soc2013/def/crashdump-head/gnu/usr.bin/binutils/ld/Makefile soc2013/def/crashdump-head/gnu/usr.bin/binutils/ld/Makefile.amd64 soc2013/def/crashdump-head/gnu/usr.bin/binutils/ld/Makefile.mips soc2013/def/crashdump-head/gnu/usr.bin/binutils/ld/Makefile.powerpc64 soc2013/def/crashdump-head/gnu/usr.bin/binutils/ld/Makefile.sparc64 soc2013/def/crashdump-head/gnu/usr.bin/binutils/ld/genscripts.sh soc2013/def/crashdump-head/gnu/usr.bin/binutils/libbfd/Makefile soc2013/def/crashdump-head/gnu/usr.bin/binutils/libbfd/Makefile.i386 soc2013/def/crashdump-head/gnu/usr.bin/cc/Makefile soc2013/def/crashdump-head/gnu/usr.bin/cc/cc1/Makefile soc2013/def/crashdump-head/gnu/usr.bin/cc/cc1plus/Makefile soc2013/def/crashdump-head/gnu/usr.bin/cc/cc_tools/ (props changed) soc2013/def/crashdump-head/gnu/usr.bin/cc/cc_tools/Makefile soc2013/def/crashdump-head/gnu/usr.bin/diff/tests/Makefile soc2013/def/crashdump-head/gnu/usr.bin/dtc/Makefile soc2013/def/crashdump-head/gnu/usr.bin/gdb/ (props changed) soc2013/def/crashdump-head/gnu/usr.bin/gdb/kgdb/Makefile soc2013/def/crashdump-head/gnu/usr.bin/gdb/kgdb/main.c soc2013/def/crashdump-head/gnu/usr.bin/gdb/kgdb/trgt.c soc2013/def/crashdump-head/gnu/usr.bin/gdb/kgdb/trgt_amd64.c soc2013/def/crashdump-head/gnu/usr.bin/gdb/kgdb/trgt_arm.c soc2013/def/crashdump-head/gnu/usr.bin/grep/savedir.c soc2013/def/crashdump-head/gnu/usr.bin/groff/Makefile soc2013/def/crashdump-head/gnu/usr.bin/groff/Makefile.inc soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devX100-12/Makefile soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devX100/Makefile soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devX75-12/Makefile soc2013/def/crashdump-head/gnu/usr.bin/groff/font/devX75/Makefile soc2013/def/crashdump-head/gnu/usr.bin/groff/src/preproc/Makefile soc2013/def/crashdump-head/gnu/usr.bin/groff/src/utils/indxbib/Makefile soc2013/def/crashdump-head/gnu/usr.bin/groff/tmac/Makefile soc2013/def/crashdump-head/gnu/usr.bin/rcs/Makefile soc2013/def/crashdump-head/gnu/usr.bin/tests/Makefile soc2013/def/crashdump-head/lib/Makefile soc2013/def/crashdump-head/lib/atf/libatf-c++/tests/Makefile soc2013/def/crashdump-head/lib/atf/libatf-c++/tests/detail/Makefile soc2013/def/crashdump-head/lib/atf/libatf-c/tests/Makefile soc2013/def/crashdump-head/lib/atf/libatf-c/tests/detail/Makefile soc2013/def/crashdump-head/lib/atf/tests/Makefile soc2013/def/crashdump-head/lib/atf/tests/test-programs/Makefile soc2013/def/crashdump-head/lib/clang/Makefile soc2013/def/crashdump-head/lib/clang/clang.build.mk soc2013/def/crashdump-head/lib/clang/include/Makefile soc2013/def/crashdump-head/lib/clang/include/clang/Basic/Version.inc soc2013/def/crashdump-head/lib/clang/include/clang/Config/config.h soc2013/def/crashdump-head/lib/clang/include/llvm/Config/config.h soc2013/def/crashdump-head/lib/clang/include/llvm/Config/llvm-config.h soc2013/def/crashdump-head/lib/clang/libclanganalysis/Makefile soc2013/def/crashdump-head/lib/clang/libclangbasic/Makefile soc2013/def/crashdump-head/lib/clang/libclangcodegen/Makefile soc2013/def/crashdump-head/lib/clang/libclangdriver/Makefile soc2013/def/crashdump-head/lib/clang/libclangfrontend/Makefile soc2013/def/crashdump-head/lib/clang/libclangstaticanalyzercheckers/Makefile soc2013/def/crashdump-head/lib/clang/libclangstaticanalyzercore/Makefile soc2013/def/crashdump-head/lib/clang/liblldb/Makefile soc2013/def/crashdump-head/lib/clang/liblldbAPI/Makefile soc2013/def/crashdump-head/lib/clang/liblldbCommands/Makefile soc2013/def/crashdump-head/lib/clang/liblldbCore/Makefile soc2013/def/crashdump-head/lib/clang/liblldbDataFormatters/Makefile soc2013/def/crashdump-head/lib/clang/liblldbHostCommon/Makefile soc2013/def/crashdump-head/lib/clang/liblldbHostPOSIX/Makefile soc2013/def/crashdump-head/lib/clang/liblldbInterpreter/Makefile soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessElfCore/Makefile soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessFreeBSD/Makefile soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessGDBRemote/Makefile soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessPOSIX/Makefile soc2013/def/crashdump-head/lib/clang/liblldbPluginProcessUtility/Makefile soc2013/def/crashdump-head/lib/clang/liblldbTarget/Makefile soc2013/def/crashdump-head/lib/clang/liblldbUtility/Makefile soc2013/def/crashdump-head/lib/clang/libllvmanalysis/Makefile soc2013/def/crashdump-head/lib/clang/libllvmarmcodegen/Makefile soc2013/def/crashdump-head/lib/clang/libllvmasmprinter/Makefile soc2013/def/crashdump-head/lib/clang/libllvmbitwriter/Makefile soc2013/def/crashdump-head/lib/clang/libllvmcodegen/Makefile soc2013/def/crashdump-head/lib/clang/libllvmcore/Makefile soc2013/def/crashdump-head/lib/clang/libllvmexecutionengine/Makefile soc2013/def/crashdump-head/lib/clang/libllvminstrumentation/Makefile soc2013/def/crashdump-head/lib/clang/libllvmipo/Makefile soc2013/def/crashdump-head/lib/clang/libllvmmc/Makefile soc2013/def/crashdump-head/lib/clang/libllvmmcdisassembler/Makefile soc2013/def/crashdump-head/lib/clang/libllvmmcjit/Makefile soc2013/def/crashdump-head/lib/clang/libllvmmipscodegen/Makefile soc2013/def/crashdump-head/lib/clang/libllvmobjcarcopts/Makefile soc2013/def/crashdump-head/lib/clang/libllvmobject/Makefile soc2013/def/crashdump-head/lib/clang/libllvmpowerpccodegen/Makefile soc2013/def/crashdump-head/lib/clang/libllvmprofiledata/Makefile soc2013/def/crashdump-head/lib/clang/libllvmruntimedyld/Makefile soc2013/def/crashdump-head/lib/clang/libllvmscalaropts/Makefile soc2013/def/crashdump-head/lib/clang/libllvmsparccodegen/Makefile soc2013/def/crashdump-head/lib/clang/libllvmsupport/Makefile soc2013/def/crashdump-head/lib/clang/libllvmtablegen/Makefile soc2013/def/crashdump-head/lib/clang/libllvmtarget/Makefile soc2013/def/crashdump-head/lib/clang/libllvmtransformutils/Makefile soc2013/def/crashdump-head/lib/clang/libllvmvectorize/Makefile soc2013/def/crashdump-head/lib/clang/libllvmx86codegen/Makefile soc2013/def/crashdump-head/lib/csu/Makefile soc2013/def/crashdump-head/lib/csu/aarch64/Makefile soc2013/def/crashdump-head/lib/csu/aarch64/crt1.c soc2013/def/crashdump-head/lib/csu/amd64/Makefile soc2013/def/crashdump-head/lib/csu/arm/Makefile soc2013/def/crashdump-head/lib/csu/arm/crti.S soc2013/def/crashdump-head/lib/csu/arm/crtn.S soc2013/def/crashdump-head/lib/csu/mips/Makefile soc2013/def/crashdump-head/lib/csu/powerpc/Makefile soc2013/def/crashdump-head/lib/csu/powerpc64/Makefile soc2013/def/crashdump-head/lib/csu/sparc64/Makefile soc2013/def/crashdump-head/lib/libarchive/Makefile soc2013/def/crashdump-head/lib/libarchive/config_freebsd.h soc2013/def/crashdump-head/lib/libauditd/Makefile soc2013/def/crashdump-head/lib/libbsm/Makefile soc2013/def/crashdump-head/lib/libc/ (props changed) soc2013/def/crashdump-head/lib/libc++/Makefile soc2013/def/crashdump-head/lib/libc/Makefile soc2013/def/crashdump-head/lib/libc/aarch64/Symbol.map soc2013/def/crashdump-head/lib/libc/aarch64/gen/Makefile.inc soc2013/def/crashdump-head/lib/libc/aarch64/gen/_set_tp.c soc2013/def/crashdump-head/lib/libc/aarch64/gen/_setjmp.S soc2013/def/crashdump-head/lib/libc/aarch64/gen/setjmp.S soc2013/def/crashdump-head/lib/libc/aarch64/gen/sigsetjmp.S soc2013/def/crashdump-head/lib/libc/aarch64/sys/brk.S soc2013/def/crashdump-head/lib/libc/aarch64/sys/sbrk.S soc2013/def/crashdump-head/lib/libc/amd64/gen/_set_tp.c soc2013/def/crashdump-head/lib/libc/amd64/gen/setjmp.S soc2013/def/crashdump-head/lib/libc/amd64/gen/sigsetjmp.S soc2013/def/crashdump-head/lib/libc/amd64/sys/Makefile.inc soc2013/def/crashdump-head/lib/libc/amd64/sys/__vdso_gettc.c soc2013/def/crashdump-head/lib/libc/arm/SYS.h soc2013/def/crashdump-head/lib/libc/arm/aeabi/Makefile.inc soc2013/def/crashdump-head/lib/libc/arm/aeabi/Symbol.map soc2013/def/crashdump-head/lib/libc/arm/aeabi/aeabi_asm_double.S soc2013/def/crashdump-head/lib/libc/arm/aeabi/aeabi_asm_float.S soc2013/def/crashdump-head/lib/libc/arm/aeabi/aeabi_vfp_double.S soc2013/def/crashdump-head/lib/libc/arm/aeabi/aeabi_vfp_float.S soc2013/def/crashdump-head/lib/libc/arm/gen/__aeabi_read_tp.S soc2013/def/crashdump-head/lib/libc/arm/gen/_ctx_start.S soc2013/def/crashdump-head/lib/libc/arm/gen/_set_tp.c soc2013/def/crashdump-head/lib/libc/arm/gen/_setjmp.S soc2013/def/crashdump-head/lib/libc/arm/gen/alloca.S soc2013/def/crashdump-head/lib/libc/arm/gen/divsi3.S soc2013/def/crashdump-head/lib/libc/arm/gen/setjmp.S soc2013/def/crashdump-head/lib/libc/arm/gen/sigsetjmp.S soc2013/def/crashdump-head/lib/libc/arm/string/ffs.S soc2013/def/crashdump-head/lib/libc/arm/string/memcmp.S soc2013/def/crashdump-head/lib/libc/arm/string/memcpy_arm.S soc2013/def/crashdump-head/lib/libc/arm/string/memcpy_xscale.S soc2013/def/crashdump-head/lib/libc/arm/string/memmove.S soc2013/def/crashdump-head/lib/libc/arm/string/memset.S soc2013/def/crashdump-head/lib/libc/arm/string/strcmp.S soc2013/def/crashdump-head/lib/libc/arm/string/strlen.S soc2013/def/crashdump-head/lib/libc/arm/string/strncmp.S soc2013/def/crashdump-head/lib/libc/arm/sys/Ovfork.S soc2013/def/crashdump-head/lib/libc/arm/sys/brk.S soc2013/def/crashdump-head/lib/libc/arm/sys/cerror.S soc2013/def/crashdump-head/lib/libc/arm/sys/pipe.S soc2013/def/crashdump-head/lib/libc/arm/sys/ptrace.S soc2013/def/crashdump-head/lib/libc/arm/sys/sbrk.S soc2013/def/crashdump-head/lib/libc/arm/sys/shmat.S soc2013/def/crashdump-head/lib/libc/arm/sys/sigreturn.S soc2013/def/crashdump-head/lib/libc/arm/sys/syscall.S soc2013/def/crashdump-head/lib/libc/compat-43/creat.c soc2013/def/crashdump-head/lib/libc/compat-43/sigcompat.c soc2013/def/crashdump-head/lib/libc/db/btree/bt_open.c soc2013/def/crashdump-head/lib/libc/db/hash/hash.c soc2013/def/crashdump-head/lib/libc/db/hash/hash_page.c soc2013/def/crashdump-head/lib/libc/db/hash/ndbm.c soc2013/def/crashdump-head/lib/libc/db/recno/rec_open.c soc2013/def/crashdump-head/lib/libc/gdtoa/Makefile.inc soc2013/def/crashdump-head/lib/libc/gdtoa/_ldtoa.c soc2013/def/crashdump-head/lib/libc/gen/Makefile.inc soc2013/def/crashdump-head/lib/libc/gen/alarm.c soc2013/def/crashdump-head/lib/libc/gen/assert.c soc2013/def/crashdump-head/lib/libc/gen/clock.c soc2013/def/crashdump-head/lib/libc/gen/daemon.c soc2013/def/crashdump-head/lib/libc/gen/devname.c soc2013/def/crashdump-head/lib/libc/gen/directory.3 soc2013/def/crashdump-head/lib/libc/gen/dlfcn.c soc2013/def/crashdump-head/lib/libc/gen/dup3.c soc2013/def/crashdump-head/lib/libc/gen/elf_utils.c soc2013/def/crashdump-head/lib/libc/gen/err.c soc2013/def/crashdump-head/lib/libc/gen/exec.c soc2013/def/crashdump-head/lib/libc/gen/feature_present.c soc2013/def/crashdump-head/lib/libc/gen/fmtcheck.c soc2013/def/crashdump-head/lib/libc/gen/fnmatch.c soc2013/def/crashdump-head/lib/libc/gen/fpclassify.c soc2013/def/crashdump-head/lib/libc/gen/ftok.c soc2013/def/crashdump-head/lib/libc/gen/fts-compat.c soc2013/def/crashdump-head/lib/libc/gen/fts.c soc2013/def/crashdump-head/lib/libc/gen/getbsize.c soc2013/def/crashdump-head/lib/libc/gen/getcwd.c soc2013/def/crashdump-head/lib/libc/gen/getdomainname.c soc2013/def/crashdump-head/lib/libc/gen/getgrent.c soc2013/def/crashdump-head/lib/libc/gen/gethostname.c soc2013/def/crashdump-head/lib/libc/gen/getloadavg.c soc2013/def/crashdump-head/lib/libc/gen/getmntinfo.c soc2013/def/crashdump-head/lib/libc/gen/getpagesize.c soc2013/def/crashdump-head/lib/libc/gen/getpwent.c soc2013/def/crashdump-head/lib/libc/gen/getusershell.c soc2013/def/crashdump-head/lib/libc/gen/getutxent.3 soc2013/def/crashdump-head/lib/libc/gen/getvfsbyname.c soc2013/def/crashdump-head/lib/libc/gen/glob.c soc2013/def/crashdump-head/lib/libc/gen/initgroups.c soc2013/def/crashdump-head/lib/libc/gen/isatty.c soc2013/def/crashdump-head/lib/libc/gen/isinf.c soc2013/def/crashdump-head/lib/libc/gen/nice.3 soc2013/def/crashdump-head/lib/libc/gen/nlist.c soc2013/def/crashdump-head/lib/libc/gen/pause.c soc2013/def/crashdump-head/lib/libc/gen/popen.c soc2013/def/crashdump-head/lib/libc/gen/posix_spawn.3 soc2013/def/crashdump-head/lib/libc/gen/posix_spawn.c soc2013/def/crashdump-head/lib/libc/gen/posix_spawn_file_actions_addopen.3 soc2013/def/crashdump-head/lib/libc/gen/posix_spawn_file_actions_init.3 soc2013/def/crashdump-head/lib/libc/gen/posix_spawnattr_getflags.3 soc2013/def/crashdump-head/lib/libc/gen/posix_spawnattr_getpgroup.3 soc2013/def/crashdump-head/lib/libc/gen/posix_spawnattr_getschedparam.3 soc2013/def/crashdump-head/lib/libc/gen/posix_spawnattr_getschedpolicy.3 soc2013/def/crashdump-head/lib/libc/gen/posix_spawnattr_getsigdefault.3 soc2013/def/crashdump-head/lib/libc/gen/posix_spawnattr_getsigmask.3 soc2013/def/crashdump-head/lib/libc/gen/posix_spawnattr_init.3 soc2013/def/crashdump-head/lib/libc/gen/psignal.c soc2013/def/crashdump-head/lib/libc/gen/raise.c soc2013/def/crashdump-head/lib/libc/gen/readdir.c soc2013/def/crashdump-head/lib/libc/gen/readpassphrase.c soc2013/def/crashdump-head/lib/libc/gen/rewinddir.c soc2013/def/crashdump-head/lib/libc/gen/seekdir.c soc2013/def/crashdump-head/lib/libc/gen/semctl.c soc2013/def/crashdump-head/lib/libc/gen/setjmperr.c soc2013/def/crashdump-head/lib/libc/gen/setmode.c soc2013/def/crashdump-head/lib/libc/gen/siginterrupt.c soc2013/def/crashdump-head/lib/libc/gen/signal.c soc2013/def/crashdump-head/lib/libc/gen/sigsetops.c soc2013/def/crashdump-head/lib/libc/gen/sleep.c soc2013/def/crashdump-head/lib/libc/gen/stringlist.c soc2013/def/crashdump-head/lib/libc/gen/strtofflags.c soc2013/def/crashdump-head/lib/libc/gen/sysconf.c soc2013/def/crashdump-head/lib/libc/gen/sysctl.3 soc2013/def/crashdump-head/lib/libc/gen/sysctl.c soc2013/def/crashdump-head/lib/libc/gen/syslog.3 soc2013/def/crashdump-head/lib/libc/gen/telldir.c soc2013/def/crashdump-head/lib/libc/gen/telldir.h soc2013/def/crashdump-head/lib/libc/gen/tls.c soc2013/def/crashdump-head/lib/libc/gen/ttyslot.c soc2013/def/crashdump-head/lib/libc/gen/ualarm.c soc2013/def/crashdump-head/lib/libc/gen/uname.c soc2013/def/crashdump-head/lib/libc/gen/unvis-compat.c soc2013/def/crashdump-head/lib/libc/gen/usleep.c soc2013/def/crashdump-head/lib/libc/gen/utime.c soc2013/def/crashdump-head/lib/libc/gen/wait.c soc2013/def/crashdump-head/lib/libc/gen/wait3.c soc2013/def/crashdump-head/lib/libc/gen/waitid.c soc2013/def/crashdump-head/lib/libc/gen/waitpid.c soc2013/def/crashdump-head/lib/libc/gen/wordexp.3 soc2013/def/crashdump-head/lib/libc/gen/wordexp.c soc2013/def/crashdump-head/lib/libc/gmon/gmon.c soc2013/def/crashdump-head/lib/libc/i386/gen/setjmp.S soc2013/def/crashdump-head/lib/libc/i386/gen/sigsetjmp.S soc2013/def/crashdump-head/lib/libc/i386/sys/Makefile.inc soc2013/def/crashdump-head/lib/libc/i386/sys/__vdso_gettc.c soc2013/def/crashdump-head/lib/libc/iconv/bsd_iconv.c soc2013/def/crashdump-head/lib/libc/iconv/citrus_esdb.c soc2013/def/crashdump-head/lib/libc/include/libc_private.h soc2013/def/crashdump-head/lib/libc/inet/inet_lnaof.c soc2013/def/crashdump-head/lib/libc/inet/inet_makeaddr.c soc2013/def/crashdump-head/lib/libc/inet/inet_net_ntop.c soc2013/def/crashdump-head/lib/libc/inet/inet_neta.c soc2013/def/crashdump-head/lib/libc/inet/inet_netof.c soc2013/def/crashdump-head/lib/libc/inet/inet_network.c soc2013/def/crashdump-head/lib/libc/isc/ev_timers.c soc2013/def/crashdump-head/lib/libc/locale/Makefile.inc soc2013/def/crashdump-head/lib/libc/locale/big5.c soc2013/def/crashdump-head/lib/libc/locale/collate.c soc2013/def/crashdump-head/lib/libc/locale/collate.h soc2013/def/crashdump-head/lib/libc/locale/collcmp.c soc2013/def/crashdump-head/lib/libc/locale/euc.c soc2013/def/crashdump-head/lib/libc/locale/gb18030.c soc2013/def/crashdump-head/lib/libc/locale/gb2312.c soc2013/def/crashdump-head/lib/libc/locale/gbk.c soc2013/def/crashdump-head/lib/libc/locale/isctype.c soc2013/def/crashdump-head/lib/libc/locale/iswctype.c soc2013/def/crashdump-head/lib/libc/locale/mblocal.h soc2013/def/crashdump-head/lib/libc/locale/mbsnrtowcs.c soc2013/def/crashdump-head/lib/libc/locale/mskanji.c soc2013/def/crashdump-head/lib/libc/locale/nl_langinfo.c soc2013/def/crashdump-head/lib/libc/locale/none.c soc2013/def/crashdump-head/lib/libc/locale/rune.c soc2013/def/crashdump-head/lib/libc/locale/setlocale.c soc2013/def/crashdump-head/lib/libc/locale/setrunelocale.c soc2013/def/crashdump-head/lib/libc/locale/table.c soc2013/def/crashdump-head/lib/libc/locale/tolower.c soc2013/def/crashdump-head/lib/libc/locale/toupper.c soc2013/def/crashdump-head/lib/libc/locale/utf8.c soc2013/def/crashdump-head/lib/libc/locale/wcsnrtombs.c soc2013/def/crashdump-head/lib/libc/locale/wctype.c soc2013/def/crashdump-head/lib/libc/mips/gen/_set_tp.c soc2013/def/crashdump-head/lib/libc/mips/sys/Makefile.inc soc2013/def/crashdump-head/lib/libc/net/getaddrinfo.3 soc2013/def/crashdump-head/lib/libc/net/getaddrinfo.c soc2013/def/crashdump-head/lib/libc/net/gethostbydns.c soc2013/def/crashdump-head/lib/libc/net/gethostnamadr.c soc2013/def/crashdump-head/lib/libc/net/getnameinfo.3 soc2013/def/crashdump-head/lib/libc/net/getnameinfo.c soc2013/def/crashdump-head/lib/libc/net/getnetbydns.c soc2013/def/crashdump-head/lib/libc/net/getnetnamadr.c soc2013/def/crashdump-head/lib/libc/net/getproto.c soc2013/def/crashdump-head/lib/libc/net/getservent.c soc2013/def/crashdump-head/lib/libc/net/if_nametoindex.c soc2013/def/crashdump-head/lib/libc/net/linkaddr.c soc2013/def/crashdump-head/lib/libc/net/map_v4v6.c soc2013/def/crashdump-head/lib/libc/net/netdb_private.h soc2013/def/crashdump-head/lib/libc/net/nscache.c soc2013/def/crashdump-head/lib/libc/net/nslexer.l soc2013/def/crashdump-head/lib/libc/net/nsparser.y soc2013/def/crashdump-head/lib/libc/net/nss_compat.c soc2013/def/crashdump-head/lib/libc/net/ntoh.c soc2013/def/crashdump-head/lib/libc/net/rcmd.c soc2013/def/crashdump-head/lib/libc/net/rcmdsh.c soc2013/def/crashdump-head/lib/libc/net/recv.c soc2013/def/crashdump-head/lib/libc/net/rthdr.c soc2013/def/crashdump-head/lib/libc/net/sctp_bindx.3 soc2013/def/crashdump-head/lib/libc/net/send.c soc2013/def/crashdump-head/lib/libc/net/sockatmark.c soc2013/def/crashdump-head/lib/libc/nls/catopen.3 soc2013/def/crashdump-head/lib/libc/posix1e/acl_add_flag_np.3 soc2013/def/crashdump-head/lib/libc/posix1e/acl_compat.c soc2013/def/crashdump-head/lib/libc/posix1e/acl_entry.c soc2013/def/crashdump-head/lib/libc/posix1e/acl_flag.c soc2013/def/crashdump-head/lib/libc/posix1e/acl_init.c soc2013/def/crashdump-head/lib/libc/posix1e/acl_strip.c soc2013/def/crashdump-head/lib/libc/posix1e/acl_support.h soc2013/def/crashdump-head/lib/libc/posix1e/acl_support_nfs4.c soc2013/def/crashdump-head/lib/libc/posix1e/mac.3 soc2013/def/crashdump-head/lib/libc/posix1e/mac.conf.5 soc2013/def/crashdump-head/lib/libc/powerpc/gen/_set_tp.c soc2013/def/crashdump-head/lib/libc/powerpc64/gen/_set_tp.c soc2013/def/crashdump-head/lib/libc/regex/re_format.7 soc2013/def/crashdump-head/lib/libc/regex/regex.3 soc2013/def/crashdump-head/lib/libc/resolv/h_errno.c soc2013/def/crashdump-head/lib/libc/resolv/res_comp.c soc2013/def/crashdump-head/lib/libc/resolv/res_data.c soc2013/def/crashdump-head/lib/libc/resolv/res_debug.c soc2013/def/crashdump-head/lib/libc/resolv/res_init.c soc2013/def/crashdump-head/lib/libc/resolv/res_mkupdate.c soc2013/def/crashdump-head/lib/libc/resolv/res_send.c soc2013/def/crashdump-head/lib/libc/resolv/res_state.c soc2013/def/crashdump-head/lib/libc/rpc/auth_des.c soc2013/def/crashdump-head/lib/libc/rpc/auth_none.c soc2013/def/crashdump-head/lib/libc/rpc/auth_time.c soc2013/def/crashdump-head/lib/libc/rpc/auth_unix.c soc2013/def/crashdump-head/lib/libc/rpc/authdes_prot.c soc2013/def/crashdump-head/lib/libc/rpc/authunix_prot.c soc2013/def/crashdump-head/lib/libc/rpc/bindresvport.c soc2013/def/crashdump-head/lib/libc/rpc/clnt_bcast.c soc2013/def/crashdump-head/lib/libc/rpc/clnt_dg.c soc2013/def/crashdump-head/lib/libc/rpc/clnt_perror.c soc2013/def/crashdump-head/lib/libc/rpc/clnt_raw.c soc2013/def/crashdump-head/lib/libc/rpc/clnt_simple.c soc2013/def/crashdump-head/lib/libc/rpc/clnt_vc.c soc2013/def/crashdump-head/lib/libc/rpc/crypt_client.c soc2013/def/crashdump-head/lib/libc/rpc/des_crypt.c soc2013/def/crashdump-head/lib/libc/rpc/des_soft.c soc2013/def/crashdump-head/lib/libc/rpc/getnetconfig.c soc2013/def/crashdump-head/lib/libc/rpc/getnetpath.c soc2013/def/crashdump-head/lib/libc/rpc/getpublickey.c soc2013/def/crashdump-head/lib/libc/rpc/getrpcent.c soc2013/def/crashdump-head/lib/libc/rpc/getrpcport.c soc2013/def/crashdump-head/lib/libc/rpc/key_call.c soc2013/def/crashdump-head/lib/libc/rpc/mt_misc.c soc2013/def/crashdump-head/lib/libc/rpc/netname.c soc2013/def/crashdump-head/lib/libc/rpc/netnamer.c soc2013/def/crashdump-head/lib/libc/rpc/pmap_getmaps.c soc2013/def/crashdump-head/lib/libc/rpc/pmap_getport.c soc2013/def/crashdump-head/lib/libc/rpc/pmap_prot.c soc2013/def/crashdump-head/lib/libc/rpc/pmap_prot2.c soc2013/def/crashdump-head/lib/libc/rpc/pmap_rmt.c soc2013/def/crashdump-head/lib/libc/rpc/rpc_callmsg.c soc2013/def/crashdump-head/lib/libc/rpc/rpc_generic.c soc2013/def/crashdump-head/lib/libc/rpc/rpc_prot.c soc2013/def/crashdump-head/lib/libc/rpc/rpc_soc.c soc2013/def/crashdump-head/lib/libc/rpc/rpcb_clnt.c soc2013/def/crashdump-head/lib/libc/rpc/rpcb_prot.c soc2013/def/crashdump-head/lib/libc/rpc/rpcb_st_xdr.c soc2013/def/crashdump-head/lib/libc/rpc/rpcbind.3 soc2013/def/crashdump-head/lib/libc/rpc/rpcdname.c soc2013/def/crashdump-head/lib/libc/rpc/rtime.c soc2013/def/crashdump-head/lib/libc/rpc/svc.c soc2013/def/crashdump-head/lib/libc/rpc/svc_auth.c soc2013/def/crashdump-head/lib/libc/rpc/svc_auth_des.c soc2013/def/crashdump-head/lib/libc/rpc/svc_auth_unix.c soc2013/def/crashdump-head/lib/libc/rpc/svc_dg.c soc2013/def/crashdump-head/lib/libc/rpc/svc_generic.c soc2013/def/crashdump-head/lib/libc/rpc/svc_raw.c soc2013/def/crashdump-head/lib/libc/rpc/svc_run.c soc2013/def/crashdump-head/lib/libc/rpc/svc_simple.c soc2013/def/crashdump-head/lib/libc/rpc/svc_vc.c soc2013/def/crashdump-head/lib/libc/sparc64/fpu/fpu.c soc2013/def/crashdump-head/lib/libc/sparc64/gen/_set_tp.c soc2013/def/crashdump-head/lib/libc/stdio/Makefile.inc soc2013/def/crashdump-head/lib/libc/stdio/Symbol.map soc2013/def/crashdump-head/lib/libc/stdio/_flock_stub.c soc2013/def/crashdump-head/lib/libc/stdio/fclose.3 soc2013/def/crashdump-head/lib/libc/stdio/fclose.c soc2013/def/crashdump-head/lib/libc/stdio/fdopen.c soc2013/def/crashdump-head/lib/libc/stdio/fgetwln.c soc2013/def/crashdump-head/lib/libc/stdio/findfp.c soc2013/def/crashdump-head/lib/libc/stdio/fmemopen.c soc2013/def/crashdump-head/lib/libc/stdio/fopen.3 soc2013/def/crashdump-head/lib/libc/stdio/fopen.c soc2013/def/crashdump-head/lib/libc/stdio/freopen.c soc2013/def/crashdump-head/lib/libc/stdio/ftell.c soc2013/def/crashdump-head/lib/libc/stdio/getchar.c soc2013/def/crashdump-head/lib/libc/stdio/open_memstream.3 soc2013/def/crashdump-head/lib/libc/stdio/stdio.c soc2013/def/crashdump-head/lib/libc/stdio/tmpfile.c soc2013/def/crashdump-head/lib/libc/stdio/vfscanf.c soc2013/def/crashdump-head/lib/libc/stdlib/Makefile.inc soc2013/def/crashdump-head/lib/libc/stdlib/Symbol.map soc2013/def/crashdump-head/lib/libc/stdlib/abort.c soc2013/def/crashdump-head/lib/libc/stdlib/abs.c soc2013/def/crashdump-head/lib/libc/stdlib/atexit.c soc2013/def/crashdump-head/lib/libc/stdlib/atof.c soc2013/def/crashdump-head/lib/libc/stdlib/atoi.c soc2013/def/crashdump-head/lib/libc/stdlib/atol.c soc2013/def/crashdump-head/lib/libc/stdlib/atoll.c soc2013/def/crashdump-head/lib/libc/stdlib/bsearch.c soc2013/def/crashdump-head/lib/libc/stdlib/exit.c soc2013/def/crashdump-head/lib/libc/stdlib/heapsort.c soc2013/def/crashdump-head/lib/libc/stdlib/jemalloc/Makefile.inc soc2013/def/crashdump-head/lib/libc/stdlib/jemalloc/Symbol.map soc2013/def/crashdump-head/lib/libc/stdlib/labs.c soc2013/def/crashdump-head/lib/libc/stdlib/merge.c soc2013/def/crashdump-head/lib/libc/stdlib/qsort.c soc2013/def/crashdump-head/lib/libc/stdlib/radixsort.c soc2013/def/crashdump-head/lib/libc/stdlib/rand.c soc2013/def/crashdump-head/lib/libc/stdlib/system.3 soc2013/def/crashdump-head/lib/libc/stdlib/system.c soc2013/def/crashdump-head/lib/libc/stdlib/tfind.c soc2013/def/crashdump-head/lib/libc/stdtime/ (props changed) soc2013/def/crashdump-head/lib/libc/stdtime/strftime.c soc2013/def/crashdump-head/lib/libc/string/bcopy.3 soc2013/def/crashdump-head/lib/libc/string/bzero.3 soc2013/def/crashdump-head/lib/libc/string/ffs.3 soc2013/def/crashdump-head/lib/libc/string/memmem.3 soc2013/def/crashdump-head/lib/libc/string/memmem.c soc2013/def/crashdump-head/lib/libc/string/strchr.3 soc2013/def/crashdump-head/lib/libc/string/strchrnul.c soc2013/def/crashdump-head/lib/libc/string/strcoll.c soc2013/def/crashdump-head/lib/libc/string/strndup.c soc2013/def/crashdump-head/lib/libc/string/strxfrm.c soc2013/def/crashdump-head/lib/libc/string/wcscoll.c soc2013/def/crashdump-head/lib/libc/string/wcsxfrm.c soc2013/def/crashdump-head/lib/libc/sys/Makefile.inc soc2013/def/crashdump-head/lib/libc/sys/Symbol.map soc2013/def/crashdump-head/lib/libc/sys/__error.c soc2013/def/crashdump-head/lib/libc/sys/__vdso_gettimeofday.c soc2013/def/crashdump-head/lib/libc/sys/close.c soc2013/def/crashdump-head/lib/libc/sys/cpuset.2 soc2013/def/crashdump-head/lib/libc/sys/cpuset_getaffinity.2 soc2013/def/crashdump-head/lib/libc/sys/fork.2 soc2013/def/crashdump-head/lib/libc/sys/fsync.c soc2013/def/crashdump-head/lib/libc/sys/getrlimit.2 soc2013/def/crashdump-head/lib/libc/sys/kqueue.2 soc2013/def/crashdump-head/lib/libc/sys/madvise.2 soc2013/def/crashdump-head/lib/libc/sys/msync.c soc2013/def/crashdump-head/lib/libc/sys/open.2 soc2013/def/crashdump-head/lib/libc/sys/posix_fadvise.2 soc2013/def/crashdump-head/lib/libc/sys/posix_openpt.2 soc2013/def/crashdump-head/lib/libc/sys/procctl.2 soc2013/def/crashdump-head/lib/libc/sys/ptrace.2 soc2013/def/crashdump-head/lib/libc/sys/readv.c soc2013/def/crashdump-head/lib/libc/sys/reboot.2 soc2013/def/crashdump-head/lib/libc/sys/setuid.2 soc2013/def/crashdump-head/lib/libc/sys/shmctl.2 soc2013/def/crashdump-head/lib/libc/sys/shutdown.2 soc2013/def/crashdump-head/lib/libc/sys/sigaction.c soc2013/def/crashdump-head/lib/libc/sys/sigprocmask.c soc2013/def/crashdump-head/lib/libc/sys/sigsuspend.c soc2013/def/crashdump-head/lib/libc/sys/socketpair.2 soc2013/def/crashdump-head/lib/libc/sys/truncate.2 soc2013/def/crashdump-head/lib/libc/sys/unlink.2 soc2013/def/crashdump-head/lib/libc/sys/utrace.2 soc2013/def/crashdump-head/lib/libc/sys/wait.2 soc2013/def/crashdump-head/lib/libc/sys/writev.c soc2013/def/crashdump-head/lib/libc/tests/Makefile soc2013/def/crashdump-head/lib/libc/tests/Makefile.netbsd-tests soc2013/def/crashdump-head/lib/libc/tests/c063/Makefile soc2013/def/crashdump-head/lib/libc/tests/db/Makefile soc2013/def/crashdump-head/lib/libc/tests/gen/Makefile soc2013/def/crashdump-head/lib/libc/tests/gen/arc4random_test.c soc2013/def/crashdump-head/lib/libc/tests/gen/execve/Makefile soc2013/def/crashdump-head/lib/libc/tests/gen/posix_spawn/Makefile soc2013/def/crashdump-head/lib/libc/tests/hash/Makefile soc2013/def/crashdump-head/lib/libc/tests/inet/Makefile soc2013/def/crashdump-head/lib/libc/tests/locale/Makefile soc2013/def/crashdump-head/lib/libc/tests/net/Makefile soc2013/def/crashdump-head/lib/libc/tests/net/getaddrinfo/Makefile soc2013/def/crashdump-head/lib/libc/tests/regex/Makefile soc2013/def/crashdump-head/lib/libc/tests/rpc/Makefile soc2013/def/crashdump-head/lib/libc/tests/setjmp/Makefile soc2013/def/crashdump-head/lib/libc/tests/ssp/Makefile soc2013/def/crashdump-head/lib/libc/tests/stdio/Makefile soc2013/def/crashdump-head/lib/libc/tests/stdio/fmemopen2_test.c soc2013/def/crashdump-head/lib/libc/tests/stdlib/Makefile soc2013/def/crashdump-head/lib/libc/tests/string/Makefile soc2013/def/crashdump-head/lib/libc/tests/sys/Makefile soc2013/def/crashdump-head/lib/libc/tests/termios/Makefile soc2013/def/crashdump-head/lib/libc/tests/time/Makefile soc2013/def/crashdump-head/lib/libc/tests/tls/Makefile soc2013/def/crashdump-head/lib/libc/tests/tls/dso/Makefile soc2013/def/crashdump-head/lib/libc/tests/ttyio/Makefile soc2013/def/crashdump-head/lib/libc/xdr/xdr.c soc2013/def/crashdump-head/lib/libc/xdr/xdr_array.c soc2013/def/crashdump-head/lib/libc/xdr/xdr_float.c soc2013/def/crashdump-head/lib/libc/xdr/xdr_mem.c soc2013/def/crashdump-head/lib/libc/xdr/xdr_rec.c soc2013/def/crashdump-head/lib/libc/xdr/xdr_reference.c soc2013/def/crashdump-head/lib/libc/xdr/xdr_sizeof.c soc2013/def/crashdump-head/lib/libc/xdr/xdr_stdio.c soc2013/def/crashdump-head/lib/libc/yp/yplib.c soc2013/def/crashdump-head/lib/libcam/camlib.c soc2013/def/crashdump-head/lib/libcapsicum/libcapsicum.3 soc2013/def/crashdump-head/lib/libcapsicum/libcapsicum.c soc2013/def/crashdump-head/lib/libcapsicum/libcapsicum.h soc2013/def/crashdump-head/lib/libcapsicum/libcapsicum_dns.c soc2013/def/crashdump-head/lib/libcapsicum/libcapsicum_grp.c soc2013/def/crashdump-head/lib/libcapsicum/libcapsicum_pwd.c soc2013/def/crashdump-head/lib/libcapsicum/libcapsicum_random.c soc2013/def/crashdump-head/lib/libcapsicum/libcapsicum_service.c soc2013/def/crashdump-head/lib/libcapsicum/libcapsicum_sysctl.c soc2013/def/crashdump-head/lib/libcasper/libcasper.c soc2013/def/crashdump-head/lib/libclang_rt/Makefile soc2013/def/crashdump-head/lib/libclang_rt/Makefile.inc soc2013/def/crashdump-head/lib/libclang_rt/asan/Makefile soc2013/def/crashdump-head/lib/libclang_rt/asan_cxx/Makefile soc2013/def/crashdump-head/lib/libclang_rt/profile/Makefile soc2013/def/crashdump-head/lib/libcompiler_rt/Makefile soc2013/def/crashdump-head/lib/libcrypt/Makefile soc2013/def/crashdump-head/lib/libcrypt/tests/Makefile soc2013/def/crashdump-head/lib/libcxxrt/Version.map soc2013/def/crashdump-head/lib/libdevstat/devstat.c soc2013/def/crashdump-head/lib/libdpv/dialogrc.c soc2013/def/crashdump-head/lib/libdpv/dialogrc.h soc2013/def/crashdump-head/lib/libdpv/dprompt.c soc2013/def/crashdump-head/lib/libdpv/dpv.3 soc2013/def/crashdump-head/lib/libdpv/dpv.c soc2013/def/crashdump-head/lib/libdwarf/Makefile soc2013/def/crashdump-head/lib/libedit/chartype.c soc2013/def/crashdump-head/lib/libedit/chartype.h soc2013/def/crashdump-head/lib/libedit/edit/readline/readline.h soc2013/def/crashdump-head/lib/libedit/el.c soc2013/def/crashdump-head/lib/libedit/eln.c soc2013/def/crashdump-head/lib/libedit/map.c soc2013/def/crashdump-head/lib/libedit/readline.c soc2013/def/crashdump-head/lib/libedit/tty.c soc2013/def/crashdump-head/lib/libedit/vi.c soc2013/def/crashdump-head/lib/libelf/Makefile soc2013/def/crashdump-head/lib/libelftc/elftc_version.c soc2013/def/crashdump-head/lib/libevent/Makefile soc2013/def/crashdump-head/lib/libfetch/common.c soc2013/def/crashdump-head/lib/libfetch/fetch.3 soc2013/def/crashdump-head/lib/libfetch/file.c soc2013/def/crashdump-head/lib/libfetch/http.c soc2013/def/crashdump-head/lib/libfigpar/figpar.3 soc2013/def/crashdump-head/lib/libfigpar/figpar.c soc2013/def/crashdump-head/lib/libfigpar/figpar.h soc2013/def/crashdump-head/lib/libgeom/geom_xml2tree.c soc2013/def/crashdump-head/lib/libgpio/gpio.3 soc2013/def/crashdump-head/lib/libgssapi/gss_accept_sec_context.c soc2013/def/crashdump-head/lib/libiconv_modules/BIG5/Makefile soc2013/def/crashdump-head/lib/libiconv_modules/EUC/Makefile soc2013/def/crashdump-head/lib/libiconv_modules/EUCTW/Makefile soc2013/def/crashdump-head/lib/libiconv_modules/Makefile soc2013/def/crashdump-head/lib/libiconv_modules/UTF1632/Makefile soc2013/def/crashdump-head/lib/libiconv_modules/UTF7/Makefile soc2013/def/crashdump-head/lib/libiconv_modules/UTF7/citrus_utf7.c soc2013/def/crashdump-head/lib/libiconv_modules/iconv_std/Makefile soc2013/def/crashdump-head/lib/libipsec/pfkey_dump.c soc2013/def/crashdump-head/lib/libkvm/Makefile soc2013/def/crashdump-head/lib/libkvm/kvm.3 soc2013/def/crashdump-head/lib/libkvm/kvm.c soc2013/def/crashdump-head/lib/libkvm/kvm.h soc2013/def/crashdump-head/lib/libkvm/kvm_amd64.c soc2013/def/crashdump-head/lib/libkvm/kvm_arm.c soc2013/def/crashdump-head/lib/libkvm/kvm_cptime.c soc2013/def/crashdump-head/lib/libkvm/kvm_file.c soc2013/def/crashdump-head/lib/libkvm/kvm_getloadavg.c soc2013/def/crashdump-head/lib/libkvm/kvm_getswapinfo.c soc2013/def/crashdump-head/lib/libkvm/kvm_i386.c soc2013/def/crashdump-head/lib/libkvm/kvm_minidump_amd64.c soc2013/def/crashdump-head/lib/libkvm/kvm_minidump_arm.c soc2013/def/crashdump-head/lib/libkvm/kvm_minidump_i386.c soc2013/def/crashdump-head/lib/libkvm/kvm_minidump_mips.c soc2013/def/crashdump-head/lib/libkvm/kvm_nlist.3 soc2013/def/crashdump-head/lib/libkvm/kvm_open.3 soc2013/def/crashdump-head/lib/libkvm/kvm_pcpu.c soc2013/def/crashdump-head/lib/libkvm/kvm_powerpc.c soc2013/def/crashdump-head/lib/libkvm/kvm_powerpc64.c soc2013/def/crashdump-head/lib/libkvm/kvm_private.h soc2013/def/crashdump-head/lib/libkvm/kvm_proc.c soc2013/def/crashdump-head/lib/libkvm/kvm_read.3 soc2013/def/crashdump-head/lib/libkvm/kvm_sparc64.c soc2013/def/crashdump-head/lib/libkvm/kvm_vnet.c soc2013/def/crashdump-head/lib/liblzma/Makefile soc2013/def/crashdump-head/lib/liblzma/config.h soc2013/def/crashdump-head/lib/libmagic/config.h soc2013/def/crashdump-head/lib/libmd/Makefile soc2013/def/crashdump-head/lib/libmd/md4.h soc2013/def/crashdump-head/lib/libmd/md4c.c soc2013/def/crashdump-head/lib/libmd/md5.h soc2013/def/crashdump-head/lib/libmd/md5c.c soc2013/def/crashdump-head/lib/libmd/mdXhl.c soc2013/def/crashdump-head/lib/libmd/ripemd.h soc2013/def/crashdump-head/lib/libmd/rmd160c.c soc2013/def/crashdump-head/lib/libmd/sha.h soc2013/def/crashdump-head/lib/libmd/sha1c.c soc2013/def/crashdump-head/lib/libmd/sha512.h soc2013/def/crashdump-head/lib/libmd/sha512c.c soc2013/def/crashdump-head/lib/libmd/shadriver.c soc2013/def/crashdump-head/lib/libmilter/Makefile soc2013/def/crashdump-head/lib/libmp/tests/Makefile soc2013/def/crashdump-head/lib/libnetbsd/README soc2013/def/crashdump-head/lib/libnv/Makefile soc2013/def/crashdump-head/lib/libnv/tests/Makefile soc2013/def/crashdump-head/lib/libnv/tests/dnv_tests.cc soc2013/def/crashdump-head/lib/libnv/tests/nv_tests.cc soc2013/def/crashdump-head/lib/libnv/tests/nvlist_add_test.c soc2013/def/crashdump-head/lib/libnv/tests/nvlist_exists_test.c soc2013/def/crashdump-head/lib/libnv/tests/nvlist_free_test.c soc2013/def/crashdump-head/lib/libnv/tests/nvlist_get_test.c soc2013/def/crashdump-head/lib/libnv/tests/nvlist_move_test.c soc2013/def/crashdump-head/lib/libnv/tests/nvlist_send_recv_test.c soc2013/def/crashdump-head/lib/libpam/Makefile soc2013/def/crashdump-head/lib/libpam/Makefile.inc soc2013/def/crashdump-head/lib/libpam/libpam/Makefile soc2013/def/crashdump-head/lib/libpam/libpam/tests/Makefile soc2013/def/crashdump-head/lib/libpcap/Makefile soc2013/def/crashdump-head/lib/libpmc/libpmc.c soc2013/def/crashdump-head/lib/libpmc/pmc.h soc2013/def/crashdump-head/lib/libproc/Makefile soc2013/def/crashdump-head/lib/libproc/proc_bkpt.c soc2013/def/crashdump-head/lib/libproc/proc_regs.c soc2013/def/crashdump-head/lib/libproc/tests/Makefile soc2013/def/crashdump-head/lib/libprocstat/Makefile soc2013/def/crashdump-head/lib/libprocstat/libprocstat.3 soc2013/def/crashdump-head/lib/libprocstat/libprocstat.c soc2013/def/crashdump-head/lib/librt/Makefile soc2013/def/crashdump-head/lib/librt/tests/Makefile soc2013/def/crashdump-head/lib/librtld_db/Makefile soc2013/def/crashdump-head/lib/libsbuf/Makefile soc2013/def/crashdump-head/lib/libsbuf/Symbol.map soc2013/def/crashdump-head/lib/libsbuf/Version.def soc2013/def/crashdump-head/lib/libsm/Makefile soc2013/def/crashdump-head/lib/libsmdb/Makefile soc2013/def/crashdump-head/lib/libsmutil/Makefile soc2013/def/crashdump-head/lib/libsqlite3/Makefile soc2013/def/crashdump-head/lib/libstand/Makefile soc2013/def/crashdump-head/lib/libstand/open.c soc2013/def/crashdump-head/lib/libtelnet/Makefile soc2013/def/crashdump-head/lib/libthr/Makefile soc2013/def/crashdump-head/lib/libthr/arch/amd64/Makefile.inc soc2013/def/crashdump-head/lib/libthr/arch/i386/Makefile.inc soc2013/def/crashdump-head/lib/libthr/tests/Makefile soc2013/def/crashdump-head/lib/libthr/tests/dlopen/Makefile soc2013/def/crashdump-head/lib/libthr/tests/dlopen/dso/Makefile soc2013/def/crashdump-head/lib/libthr/thread/thr_create.c soc2013/def/crashdump-head/lib/libthr/thread/thr_once.c soc2013/def/crashdump-head/lib/libthr/thread/thr_rtld.c soc2013/def/crashdump-head/lib/libthr/thread/thr_sig.c soc2013/def/crashdump-head/lib/libthr/thread/thr_spec.c soc2013/def/crashdump-head/lib/libucl/Makefile soc2013/def/crashdump-head/lib/libufs/Makefile soc2013/def/crashdump-head/lib/libugidfw/Makefile soc2013/def/crashdump-head/lib/libugidfw/ugidfw.c soc2013/def/crashdump-head/lib/libunbound/Makefile soc2013/def/crashdump-head/lib/libusb/Makefile soc2013/def/crashdump-head/lib/libusb/libusb10.c soc2013/def/crashdump-head/lib/libusb/libusb20_desc.c soc2013/def/crashdump-head/lib/libutil/ (props changed) soc2013/def/crashdump-head/lib/libutil/Makefile soc2013/def/crashdump-head/lib/libutil/gr_util.c soc2013/def/crashdump-head/lib/libutil/hexdump.3 soc2013/def/crashdump-head/lib/libutil/kinfo_getallproc.3 soc2013/def/crashdump-head/lib/libutil/kinfo_getfile.3 soc2013/def/crashdump-head/lib/libutil/kinfo_getfile.c soc2013/def/crashdump-head/lib/libutil/kinfo_getproc.3 soc2013/def/crashdump-head/lib/libutil/kinfo_getvmmap.3 soc2013/def/crashdump-head/lib/libutil/kinfo_getvmmap.c soc2013/def/crashdump-head/lib/libutil/libutil.h soc2013/def/crashdump-head/lib/libutil/pty.3 soc2013/def/crashdump-head/lib/libutil/pw_util.3 soc2013/def/crashdump-head/lib/libutil/pw_util.c soc2013/def/crashdump-head/lib/libutil/tests/Makefile soc2013/def/crashdump-head/lib/libvmmapi/ (props changed) soc2013/def/crashdump-head/lib/libvmmapi/vmmapi.c soc2013/def/crashdump-head/lib/libvmmapi/vmmapi.h soc2013/def/crashdump-head/lib/libwrap/Makefile soc2013/def/crashdump-head/lib/libxo/Makefile soc2013/def/crashdump-head/lib/libz/ (props changed) soc2013/def/crashdump-head/lib/libz/Makefile soc2013/def/crashdump-head/lib/libz/inflate.c soc2013/def/crashdump-head/lib/msun/Makefile soc2013/def/crashdump-head/lib/msun/arm/Makefile.inc soc2013/def/crashdump-head/lib/msun/man/cacos.3 soc2013/def/crashdump-head/lib/msun/man/exp.3 soc2013/def/crashdump-head/lib/msun/man/j0.3 soc2013/def/crashdump-head/lib/msun/man/lgamma.3 soc2013/def/crashdump-head/lib/msun/man/nextafter.3 soc2013/def/crashdump-head/lib/msun/src/e_j0.c soc2013/def/crashdump-head/lib/msun/src/e_j0f.c soc2013/def/crashdump-head/lib/msun/src/e_j1.c soc2013/def/crashdump-head/lib/msun/src/e_j1f.c soc2013/def/crashdump-head/lib/msun/src/s_ccosh.c soc2013/def/crashdump-head/lib/msun/src/s_ccoshf.c soc2013/def/crashdump-head/lib/msun/src/s_csinh.c soc2013/def/crashdump-head/lib/msun/src/s_csinhf.c soc2013/def/crashdump-head/lib/msun/src/s_ctanh.c soc2013/def/crashdump-head/lib/msun/src/s_ctanhf.c soc2013/def/crashdump-head/lib/msun/src/s_exp2.c soc2013/def/crashdump-head/lib/msun/tests/Makefile soc2013/def/crashdump-head/lib/ncurses/ncurses/Makefile soc2013/def/crashdump-head/lib/tests/Makefile soc2013/def/crashdump-head/libexec/Makefile soc2013/def/crashdump-head/libexec/atf/atf-check/tests/Makefile soc2013/def/crashdump-head/libexec/atf/atf-sh/tests/Makefile soc2013/def/crashdump-head/libexec/atf/tests/Makefile soc2013/def/crashdump-head/libexec/atrun/atrun.man soc2013/def/crashdump-head/libexec/casper/dns/dns.c soc2013/def/crashdump-head/libexec/casper/grp/grp.c soc2013/def/crashdump-head/libexec/casper/pwd/pwd.c soc2013/def/crashdump-head/libexec/casper/random/random.c soc2013/def/crashdump-head/libexec/casper/sysctl/sysctl.c soc2013/def/crashdump-head/libexec/ftpd/Makefile soc2013/def/crashdump-head/libexec/getty/subr.c soc2013/def/crashdump-head/libexec/hyperv/Makefile soc2013/def/crashdump-head/libexec/mail.local/Makefile soc2013/def/crashdump-head/libexec/rtld-elf/Makefile soc2013/def/crashdump-head/libexec/rtld-elf/aarch64/reloc.c soc2013/def/crashdump-head/libexec/rtld-elf/aarch64/rtld_machdep.h soc2013/def/crashdump-head/libexec/rtld-elf/aarch64/rtld_start.S soc2013/def/crashdump-head/libexec/rtld-elf/amd64/Makefile.inc soc2013/def/crashdump-head/libexec/rtld-elf/arm/rtld_start.S soc2013/def/crashdump-head/libexec/rtld-elf/debug.h soc2013/def/crashdump-head/libexec/rtld-elf/i386/Makefile.inc soc2013/def/crashdump-head/libexec/rtld-elf/libmap.c soc2013/def/crashdump-head/libexec/rtld-elf/malloc.c soc2013/def/crashdump-head/libexec/rtld-elf/map_object.c soc2013/def/crashdump-head/libexec/rtld-elf/powerpc64/reloc.c soc2013/def/crashdump-head/libexec/rtld-elf/rtld.c soc2013/def/crashdump-head/libexec/rtld-elf/rtld.h soc2013/def/crashdump-head/libexec/rtld-elf/tests/Makefile soc2013/def/crashdump-head/libexec/save-entropy/Makefile soc2013/def/crashdump-head/libexec/smrsh/Makefile soc2013/def/crashdump-head/libexec/talkd/table.c soc2013/def/crashdump-head/libexec/tcpd/Makefile soc2013/def/crashdump-head/libexec/tests/Makefile soc2013/def/crashdump-head/libexec/ypxfr/ypxfr_getmap.c soc2013/def/crashdump-head/libexec/ypxfr/ypxfr_main.c soc2013/def/crashdump-head/libexec/ypxfr/ypxfrd_getmap.c soc2013/def/crashdump-head/sbin/ (props changed) soc2013/def/crashdump-head/sbin/Makefile soc2013/def/crashdump-head/sbin/atm/atmconfig/Makefile soc2013/def/crashdump-head/sbin/atm/atmconfig/atmconfig.8 soc2013/def/crashdump-head/sbin/badsect/Makefile soc2013/def/crashdump-head/sbin/bsdlabel/bsdlabel.8 soc2013/def/crashdump-head/sbin/camcontrol/Makefile soc2013/def/crashdump-head/sbin/camcontrol/camcontrol.8 soc2013/def/crashdump-head/sbin/camcontrol/camcontrol.c soc2013/def/crashdump-head/sbin/camcontrol/camcontrol.h soc2013/def/crashdump-head/sbin/camcontrol/fwdownload.c soc2013/def/crashdump-head/sbin/camcontrol/modeedit.c soc2013/def/crashdump-head/sbin/camcontrol/persist.c soc2013/def/crashdump-head/sbin/camcontrol/progress.c soc2013/def/crashdump-head/sbin/casperd/casperd.8 soc2013/def/crashdump-head/sbin/casperd/casperd.c soc2013/def/crashdump-head/sbin/casperd/zygote.c soc2013/def/crashdump-head/sbin/casperd/zygote.h soc2013/def/crashdump-head/sbin/devd/devd.cc soc2013/def/crashdump-head/sbin/devd/devd.conf.5 soc2013/def/crashdump-head/sbin/devd/tests/Makefile soc2013/def/crashdump-head/sbin/dhclient/dhclient.c soc2013/def/crashdump-head/sbin/dhclient/tests/Makefile soc2013/def/crashdump-head/sbin/dumpfs/dumpfs.8 soc2013/def/crashdump-head/sbin/dumpfs/dumpfs.c soc2013/def/crashdump-head/sbin/dumpon/ (props changed) soc2013/def/crashdump-head/sbin/dumpon/dumpon.c soc2013/def/crashdump-head/sbin/fdisk/fdisk.8 soc2013/def/crashdump-head/sbin/ffsinfo/ffsinfo.8 soc2013/def/crashdump-head/sbin/fsck_ffs/fsck.h soc2013/def/crashdump-head/sbin/fsck_ffs/globs.c soc2013/def/crashdump-head/sbin/geom/class/eli/geli.8 soc2013/def/crashdump-head/sbin/geom/class/eli/geom_eli.c soc2013/def/crashdump-head/sbin/geom/class/mountver/geom_mountver.c soc2013/def/crashdump-head/sbin/geom/class/mountver/gmountver.8 soc2013/def/crashdump-head/sbin/geom/class/multipath/gmultipath.8 soc2013/def/crashdump-head/sbin/geom/class/nop/geom_nop.c soc2013/def/crashdump-head/sbin/geom/class/nop/gnop.8 soc2013/def/crashdump-head/sbin/geom/class/part/geom_part.c soc2013/def/crashdump-head/sbin/geom/class/part/gpart.8 soc2013/def/crashdump-head/sbin/geom/class/raid/graid.8 soc2013/def/crashdump-head/sbin/ggate/ggatec/ggatec.8 soc2013/def/crashdump-head/sbin/ggate/ggatec/ggatec.c soc2013/def/crashdump-head/sbin/ggate/ggated/ggated.8 soc2013/def/crashdump-head/sbin/ggate/ggated/ggated.c soc2013/def/crashdump-head/sbin/ggate/ggatel/ggatel.8 soc2013/def/crashdump-head/sbin/ggate/ggatel/ggatel.c soc2013/def/crashdump-head/sbin/growfs/tests/Makefile soc2013/def/crashdump-head/sbin/ifconfig/Makefile soc2013/def/crashdump-head/sbin/ifconfig/af_inet.c soc2013/def/crashdump-head/sbin/ifconfig/af_inet6.c soc2013/def/crashdump-head/sbin/ifconfig/carp.c soc2013/def/crashdump-head/sbin/ifconfig/ifbridge.c soc2013/def/crashdump-head/sbin/ifconfig/ifclone.c soc2013/def/crashdump-head/sbin/ifconfig/ifconfig.8 soc2013/def/crashdump-head/sbin/ifconfig/ifconfig.c soc2013/def/crashdump-head/sbin/ifconfig/iffib.c soc2013/def/crashdump-head/sbin/ifconfig/ifgif.c soc2013/def/crashdump-head/sbin/ifconfig/ifgre.c soc2013/def/crashdump-head/sbin/ifconfig/ifgroup.c soc2013/def/crashdump-head/sbin/ifconfig/ifieee80211.c soc2013/def/crashdump-head/sbin/ifconfig/iflagg.c soc2013/def/crashdump-head/sbin/ifconfig/ifmac.c soc2013/def/crashdump-head/sbin/ifconfig/ifmedia.c soc2013/def/crashdump-head/sbin/ifconfig/ifpfsync.c soc2013/def/crashdump-head/sbin/ifconfig/ifvlan.c soc2013/def/crashdump-head/sbin/ifconfig/ifvxlan.c soc2013/def/crashdump-head/sbin/ifconfig/sfp.c soc2013/def/crashdump-head/sbin/ifconfig/tests/Makefile soc2013/def/crashdump-head/sbin/init/Makefile soc2013/def/crashdump-head/sbin/init/init.8 soc2013/def/crashdump-head/sbin/init/init.c soc2013/def/crashdump-head/sbin/init/pathnames.h soc2013/def/crashdump-head/sbin/ipf/Makefile soc2013/def/crashdump-head/sbin/ipf/Makefile.inc soc2013/def/crashdump-head/sbin/ipf/ipf/Makefile soc2013/def/crashdump-head/sbin/ipf/ipftest/Makefile soc2013/def/crashdump-head/sbin/ipf/ipmon/Makefile soc2013/def/crashdump-head/sbin/ipf/ipnat/Makefile soc2013/def/crashdump-head/sbin/ipf/ippool/Makefile soc2013/def/crashdump-head/sbin/ipfw/ (props changed) soc2013/def/crashdump-head/sbin/ipfw/ipfw2.c soc2013/def/crashdump-head/sbin/ipfw/ipfw2.h soc2013/def/crashdump-head/sbin/ipfw/nat.c soc2013/def/crashdump-head/sbin/ipfw/tables.c soc2013/def/crashdump-head/sbin/mdconfig/mdconfig.8 soc2013/def/crashdump-head/sbin/mdconfig/mdconfig.c soc2013/def/crashdump-head/sbin/mdconfig/tests/Makefile soc2013/def/crashdump-head/sbin/mount/mount.8 soc2013/def/crashdump-head/sbin/mount/mount.conf.8 soc2013/def/crashdump-head/sbin/mount_nfs/mount_nfs.c soc2013/def/crashdump-head/sbin/mount_unionfs/mount_unionfs.8 soc2013/def/crashdump-head/sbin/natd/natd.c soc2013/def/crashdump-head/sbin/newfs/newfs.8 soc2013/def/crashdump-head/sbin/newfs/newfs.c soc2013/def/crashdump-head/sbin/newfs_msdos/Makefile soc2013/def/crashdump-head/sbin/newfs_msdos/newfs_msdos.8 soc2013/def/crashdump-head/sbin/newfs_msdos/newfs_msdos.c soc2013/def/crashdump-head/sbin/newfs_nandfs/newfs_nandfs.8 soc2013/def/crashdump-head/sbin/newfs_nandfs/newfs_nandfs.c soc2013/def/crashdump-head/sbin/nvmecontrol/logpage.c soc2013/def/crashdump-head/sbin/pfctl/parse.y soc2013/def/crashdump-head/sbin/pfctl/pfctl.c soc2013/def/crashdump-head/sbin/pfctl/pfctl_altq.c soc2013/def/crashdump-head/sbin/pfctl/pfctl_parser.c soc2013/def/crashdump-head/sbin/pfctl/pfctl_parser.h soc2013/def/crashdump-head/sbin/pfctl/pfctl_qstats.c soc2013/def/crashdump-head/sbin/ping/ping.c soc2013/def/crashdump-head/sbin/ping6/Makefile soc2013/def/crashdump-head/sbin/ping6/ping6.c soc2013/def/crashdump-head/sbin/rcorder/rcorder.c soc2013/def/crashdump-head/sbin/reboot/boot_i386.8 soc2013/def/crashdump-head/sbin/reboot/nextboot.8 soc2013/def/crashdump-head/sbin/reboot/reboot.8 soc2013/def/crashdump-head/sbin/reboot/reboot.c soc2013/def/crashdump-head/sbin/resolvconf/Makefile soc2013/def/crashdump-head/sbin/restore/tape.c soc2013/def/crashdump-head/sbin/route/route.c soc2013/def/crashdump-head/sbin/routed/input.c soc2013/def/crashdump-head/sbin/rtsol/Makefile soc2013/def/crashdump-head/sbin/savecore/savecore.8 soc2013/def/crashdump-head/sbin/savecore/savecore.c soc2013/def/crashdump-head/sbin/setkey/parse.y soc2013/def/crashdump-head/sbin/setkey/setkey.8 soc2013/def/crashdump-head/sbin/setkey/token.l soc2013/def/crashdump-head/sbin/swapon/swapon.c soc2013/def/crashdump-head/sbin/sysctl/sysctl.c soc2013/def/crashdump-head/sbin/tests/Makefile soc2013/def/crashdump-head/sbin/umount/umount.8 soc2013/def/crashdump-head/share/ (props changed) soc2013/def/crashdump-head/share/Makefile soc2013/def/crashdump-head/share/colldef/Makefile soc2013/def/crashdump-head/share/dict/Makefile soc2013/def/crashdump-head/share/doc/IPv6/Makefile soc2013/def/crashdump-head/share/doc/Makefile soc2013/def/crashdump-head/share/doc/atf/Makefile soc2013/def/crashdump-head/share/doc/legal/Makefile soc2013/def/crashdump-head/share/doc/legal/intel_ipw/Makefile soc2013/def/crashdump-head/share/doc/legal/intel_iwi/Makefile soc2013/def/crashdump-head/share/doc/legal/intel_iwn/Makefile soc2013/def/crashdump-head/share/doc/legal/intel_wpi/Makefile soc2013/def/crashdump-head/share/doc/legal/realtek/Makefile soc2013/def/crashdump-head/share/doc/llvm/Makefile soc2013/def/crashdump-head/share/doc/llvm/clang/Makefile soc2013/def/crashdump-head/share/doc/papers/Makefile soc2013/def/crashdump-head/share/doc/papers/bufbio/bio.ms soc2013/def/crashdump-head/share/doc/pjdfstest/Makefile soc2013/def/crashdump-head/share/doc/psd/Makefile soc2013/def/crashdump-head/share/doc/smm/Makefile soc2013/def/crashdump-head/share/doc/usd/06.bc/bc soc2013/def/crashdump-head/share/doc/usd/18.msdiffs/ms.diffs soc2013/def/crashdump-head/share/doc/usd/22.trofftut/tt00 soc2013/def/crashdump-head/share/doc/usd/Makefile soc2013/def/crashdump-head/share/doc/usd/contents/contents.ms soc2013/def/crashdump-head/share/dtrace/Makefile soc2013/def/crashdump-head/share/dtrace/nfsattrstats soc2013/def/crashdump-head/share/dtrace/nfsclienttime soc2013/def/crashdump-head/share/dtrace/toolkit/Makefile soc2013/def/crashdump-head/share/examples/Makefile soc2013/def/crashdump-head/share/examples/bhyve/vmrun.sh soc2013/def/crashdump-head/share/examples/csh/dot.cshrc soc2013/def/crashdump-head/share/examples/etc/make.conf soc2013/def/crashdump-head/share/examples/mdoc/example.4 soc2013/def/crashdump-head/share/examples/pf/Makefile soc2013/def/crashdump-head/share/examples/ses/srcs/getencstat.c soc2013/def/crashdump-head/share/examples/smbfs/Makefile soc2013/def/crashdump-head/share/examples/smbfs/print/Makefile soc2013/def/crashdump-head/share/examples/tests/Makefile soc2013/def/crashdump-head/share/examples/tests/tests/plain/cp_test.sh soc2013/def/crashdump-head/share/i18n/Makefile soc2013/def/crashdump-head/share/i18n/csmapper/Makefile soc2013/def/crashdump-head/share/i18n/csmapper/Makefile.inc soc2013/def/crashdump-head/share/i18n/esdb/Makefile soc2013/def/crashdump-head/share/i18n/esdb/Makefile.inc soc2013/def/crashdump-head/share/keys/pkg/trusted/Makefile soc2013/def/crashdump-head/share/man/Makefile soc2013/def/crashdump-head/share/man/man3/Makefile soc2013/def/crashdump-head/share/man/man3/bitstring.3 soc2013/def/crashdump-head/share/man/man3/pthread_getspecific.3 soc2013/def/crashdump-head/share/man/man3/pthread_setspecific.3 soc2013/def/crashdump-head/share/man/man3/queue.3 soc2013/def/crashdump-head/share/man/man4/ (props changed) soc2013/def/crashdump-head/share/man/man4/Makefile soc2013/def/crashdump-head/share/man/man4/aacraid.4 soc2013/def/crashdump-head/share/man/man4/acpi.4 soc2013/def/crashdump-head/share/man/man4/acpi_hp.4 soc2013/def/crashdump-head/share/man/man4/acpi_ibm.4 soc2013/def/crashdump-head/share/man/man4/acpi_panasonic.4 soc2013/def/crashdump-head/share/man/man4/ada.4 soc2013/def/crashdump-head/share/man/man4/altq.4 soc2013/def/crashdump-head/share/man/man4/aue.4 soc2013/def/crashdump-head/share/man/man4/axe.4 soc2013/def/crashdump-head/share/man/man4/axge.4 soc2013/def/crashdump-head/share/man/man4/blackhole.4 soc2013/def/crashdump-head/share/man/man4/bwi.4 soc2013/def/crashdump-head/share/man/man4/bwn.4 soc2013/def/crashdump-head/share/man/man4/capsicum.4 soc2013/def/crashdump-head/share/man/man4/cdce.4 soc2013/def/crashdump-head/share/man/man4/ctl.4 soc2013/def/crashdump-head/share/man/man4/cue.4 soc2013/def/crashdump-head/share/man/man4/da.4 soc2013/def/crashdump-head/share/man/man4/ddb.4 soc2013/def/crashdump-head/share/man/man4/em.4 soc2013/def/crashdump-head/share/man/man4/geom.4 soc2013/def/crashdump-head/share/man/man4/geom_fox.4 soc2013/def/crashdump-head/share/man/man4/geom_map.4 soc2013/def/crashdump-head/share/man/man4/gif.4 soc2013/def/crashdump-head/share/man/man4/gre.4 soc2013/def/crashdump-head/share/man/man4/hptiop.4 soc2013/def/crashdump-head/share/man/man4/iic.4 soc2013/def/crashdump-head/share/man/man4/ipheth.4 soc2013/def/crashdump-head/share/man/man4/ipw.4 soc2013/def/crashdump-head/share/man/man4/ipwfw.4 soc2013/def/crashdump-head/share/man/man4/iscsi.4 soc2013/def/crashdump-head/share/man/man4/isp.4 soc2013/def/crashdump-head/share/man/man4/ispfw.4 soc2013/def/crashdump-head/share/man/man4/iwi.4 soc2013/def/crashdump-head/share/man/man4/iwifw.4 soc2013/def/crashdump-head/share/man/man4/kue.4 soc2013/def/crashdump-head/share/man/man4/lagg.4 soc2013/def/crashdump-head/share/man/man4/mac.4 soc2013/def/crashdump-head/share/man/man4/mac_ifoff.4 soc2013/def/crashdump-head/share/man/man4/mac_mls.4 soc2013/def/crashdump-head/share/man/man4/mac_none.4 soc2013/def/crashdump-head/share/man/man4/mac_partition.4 soc2013/def/crashdump-head/share/man/man4/mac_seeotheruids.4 soc2013/def/crashdump-head/share/man/man4/mac_stub.4 soc2013/def/crashdump-head/share/man/man4/mac_test.4 soc2013/def/crashdump-head/share/man/man4/malo.4 soc2013/def/crashdump-head/share/man/man4/man4.i386/wl.4 soc2013/def/crashdump-head/share/man/man4/md.4 soc2013/def/crashdump-head/share/man/man4/miibus.4 soc2013/def/crashdump-head/share/man/man4/mos.4 soc2013/def/crashdump-head/share/man/man4/ng_btsocket.4 soc2013/def/crashdump-head/share/man/man4/ng_pppoe.4 soc2013/def/crashdump-head/share/man/man4/procdesc.4 soc2013/def/crashdump-head/share/man/man4/proto.4 soc2013/def/crashdump-head/share/man/man4/ral.4 soc2013/def/crashdump-head/share/man/man4/random.4 soc2013/def/crashdump-head/share/man/man4/rights.4 soc2013/def/crashdump-head/share/man/man4/rsu.4 soc2013/def/crashdump-head/share/man/man4/rue.4 soc2013/def/crashdump-head/share/man/man4/ses.4 soc2013/def/crashdump-head/share/man/man4/sfxge.4 (contents, props changed) soc2013/def/crashdump-head/share/man/man4/siftr.4 soc2013/def/crashdump-head/share/man/man4/smb.4 soc2013/def/crashdump-head/share/man/man4/smsc.4 soc2013/def/crashdump-head/share/man/man4/snp.4 soc2013/def/crashdump-head/share/man/man4/tcp.4 soc2013/def/crashdump-head/share/man/man4/timecounters.4 soc2013/def/crashdump-head/share/man/man4/uart.4 soc2013/def/crashdump-head/share/man/man4/udav.4 soc2013/def/crashdump-head/share/man/man4/uftdi.4 soc2013/def/crashdump-head/share/man/man4/urndis.4 soc2013/def/crashdump-head/share/man/man4/urtwn.4 soc2013/def/crashdump-head/share/man/man4/urtwnfw.4 soc2013/def/crashdump-head/share/man/man4/usb_quirk.4 soc2013/def/crashdump-head/share/man/man4/vpo.4 soc2013/def/crashdump-head/share/man/man4/vt.4 soc2013/def/crashdump-head/share/man/man4/vtnet.4 soc2013/def/crashdump-head/share/man/man4/witness.4 soc2013/def/crashdump-head/share/man/man4/wlan.4 soc2013/def/crashdump-head/share/man/man4/wpi.4 soc2013/def/crashdump-head/share/man/man4/xen.4 soc2013/def/crashdump-head/share/man/man4/xnb.4 soc2013/def/crashdump-head/share/man/man5/Makefile soc2013/def/crashdump-head/share/man/man5/core.5 soc2013/def/crashdump-head/share/man/man5/devfs.conf.5 soc2013/def/crashdump-head/share/man/man5/device.hints.5 soc2013/def/crashdump-head/share/man/man5/fstab.5 soc2013/def/crashdump-head/share/man/man5/make.conf.5 soc2013/def/crashdump-head/share/man/man5/pf.conf.5 soc2013/def/crashdump-head/share/man/man5/rc.conf.5 soc2013/def/crashdump-head/share/man/man5/resolver.5 soc2013/def/crashdump-head/share/man/man5/src.conf.5 soc2013/def/crashdump-head/share/man/man5/style.Makefile.5 soc2013/def/crashdump-head/share/man/man7/build.7 soc2013/def/crashdump-head/share/man/man7/hier.7 soc2013/def/crashdump-head/share/man/man7/release.7 soc2013/def/crashdump-head/share/man/man7/tuning.7 soc2013/def/crashdump-head/share/man/man8/Makefile soc2013/def/crashdump-head/share/man/man8/nanobsd.8 soc2013/def/crashdump-head/share/man/man8/picobsd.8 soc2013/def/crashdump-head/share/man/man8/uefi.8 soc2013/def/crashdump-head/share/man/man8/yp.8 soc2013/def/crashdump-head/share/man/man9/BUS_ADD_CHILD.9 soc2013/def/crashdump-head/share/man/man9/CTASSERT.9 soc2013/def/crashdump-head/share/man/man9/Makefile soc2013/def/crashdump-head/share/man/man9/SDT.9 soc2013/def/crashdump-head/share/man/man9/VOP_ADVISE.9 soc2013/def/crashdump-head/share/man/man9/acl.9 soc2013/def/crashdump-head/share/man/man9/altq.9 soc2013/def/crashdump-head/share/man/man9/atomic.9 soc2013/def/crashdump-head/share/man/man9/crypto.9 soc2013/def/crashdump-head/share/man/man9/devfs_set_cdevpriv.9 soc2013/def/crashdump-head/share/man/man9/device_add_child.9 soc2013/def/crashdump-head/share/man/man9/getenv.9 soc2013/def/crashdump-head/share/man/man9/hash.9 soc2013/def/crashdump-head/share/man/man9/ifnet.9 soc2013/def/crashdump-head/share/man/man9/locking.9 soc2013/def/crashdump-head/share/man/man9/mac.9 soc2013/def/crashdump-head/share/man/man9/malloc.9 soc2013/def/crashdump-head/share/man/man9/mbuf.9 soc2013/def/crashdump-head/share/man/man9/namei.9 soc2013/def/crashdump-head/share/man/man9/pci.9 soc2013/def/crashdump-head/share/man/man9/pci_iov_schema.9 soc2013/def/crashdump-head/share/man/man9/pmap.9 soc2013/def/crashdump-head/share/man/man9/printf.9 soc2013/def/crashdump-head/share/man/man9/psignal.9 soc2013/def/crashdump-head/share/man/man9/random.9 soc2013/def/crashdump-head/share/man/man9/random_harvest.9 soc2013/def/crashdump-head/share/man/man9/sbuf.9 soc2013/def/crashdump-head/share/man/man9/sleep.9 soc2013/def/crashdump-head/share/man/man9/stack.9 soc2013/def/crashdump-head/share/man/man9/style.9 soc2013/def/crashdump-head/share/man/man9/sysctl.9 soc2013/def/crashdump-head/share/man/man9/sysctl_add_oid.9 soc2013/def/crashdump-head/share/man/man9/taskqueue.9 soc2013/def/crashdump-head/share/man/man9/timeout.9 soc2013/def/crashdump-head/share/misc/Makefile soc2013/def/crashdump-head/share/misc/bsd-family-tree soc2013/def/crashdump-head/share/misc/committers-ports.dot soc2013/def/crashdump-head/share/misc/committers-src.dot soc2013/def/crashdump-head/share/misc/organization.dot soc2013/def/crashdump-head/share/misc/pci_vendors soc2013/def/crashdump-head/share/misc/scsi_modes soc2013/def/crashdump-head/share/mk/Makefile soc2013/def/crashdump-head/share/mk/atf.test.mk soc2013/def/crashdump-head/share/mk/bsd.README soc2013/def/crashdump-head/share/mk/bsd.compiler.mk soc2013/def/crashdump-head/share/mk/bsd.cpu.mk soc2013/def/crashdump-head/share/mk/bsd.crunchgen.mk soc2013/def/crashdump-head/share/mk/bsd.dep.mk soc2013/def/crashdump-head/share/mk/bsd.doc.mk soc2013/def/crashdump-head/share/mk/bsd.files.mk soc2013/def/crashdump-head/share/mk/bsd.incs.mk soc2013/def/crashdump-head/share/mk/bsd.info.mk soc2013/def/crashdump-head/share/mk/bsd.init.mk soc2013/def/crashdump-head/share/mk/bsd.lib.mk soc2013/def/crashdump-head/share/mk/bsd.libnames.mk soc2013/def/crashdump-head/share/mk/bsd.man.mk soc2013/def/crashdump-head/share/mk/bsd.mkopt.mk soc2013/def/crashdump-head/share/mk/bsd.nls.mk soc2013/def/crashdump-head/share/mk/bsd.obj.mk soc2013/def/crashdump-head/share/mk/bsd.opts.mk soc2013/def/crashdump-head/share/mk/bsd.own.mk soc2013/def/crashdump-head/share/mk/bsd.port.mk soc2013/def/crashdump-head/share/mk/bsd.port.subdir.mk soc2013/def/crashdump-head/share/mk/bsd.prog.mk soc2013/def/crashdump-head/share/mk/bsd.progs.mk soc2013/def/crashdump-head/share/mk/bsd.subdir.mk soc2013/def/crashdump-head/share/mk/bsd.sys.mk soc2013/def/crashdump-head/share/mk/bsd.test.mk soc2013/def/crashdump-head/share/mk/netbsd-tests.test.mk soc2013/def/crashdump-head/share/mk/src.libnames.mk soc2013/def/crashdump-head/share/mk/src.opts.mk soc2013/def/crashdump-head/share/mk/src.sys.mk soc2013/def/crashdump-head/share/mk/suite.test.mk soc2013/def/crashdump-head/share/mk/sys.mk soc2013/def/crashdump-head/share/monetdef/Makefile soc2013/def/crashdump-head/share/monetdef/am_ET.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/be_BY.CP1131.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/be_BY.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/be_BY.ISO8859-5.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/be_BY.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/bg_BG.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/bg_BG.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/cs_CZ.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/cs_CZ.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/de_AT.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/en_GB.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/en_IE.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/he_IL.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/hi_IN.ISCII-DEV.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/hu_HU.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/hy_AM.ARMSCII-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/hy_AM.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/ja_JP.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/ja_JP.eucJP.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/ko_KR.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/ko_KR.eucKR.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/lv_LV.ISO8859-13.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/nl_NL.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/pl_PL.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/pl_PL.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/ru_RU.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/ru_RU.CP866.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/ru_RU.ISO8859-5.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/ru_RU.KOI8-R.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/ru_RU.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/tr_TR.ISO8859-9.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/uk_UA.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/uk_UA.ISO8859-5.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/uk_UA.KOI8-U.src (contents, props changed) soc2013/def/crashdump-head/share/monetdef/uk_UA.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/Makefile soc2013/def/crashdump-head/share/msgdef/am_ET.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/be_BY.CP1131.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/be_BY.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/be_BY.ISO8859-5.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/be_BY.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/bg_BG.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/bg_BG.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/el_GR.ISO8859-7.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/el_GR.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/he_IL.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/hi_IN.ISCII-DEV.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/hy_AM.ARMSCII-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/hy_AM.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ja_JP.SJIS.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ja_JP.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ja_JP.eucJP.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ko_KR.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ko_KR.eucKR.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/lv_LV.ISO8859-13.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/lv_LV.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ru_RU.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ru_RU.CP866.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ru_RU.ISO8859-5.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ru_RU.KOI8-R.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/ru_RU.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/tr_TR.ISO8859-9.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/uk_UA.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/uk_UA.ISO8859-5.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/uk_UA.KOI8-U.src (contents, props changed) soc2013/def/crashdump-head/share/msgdef/uk_UA.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/numericdef/Makefile soc2013/def/crashdump-head/share/security/Makefile soc2013/def/crashdump-head/share/sendmail/Makefile soc2013/def/crashdump-head/share/skel/Makefile soc2013/def/crashdump-head/share/snmp/mibs/Makefile soc2013/def/crashdump-head/share/syscons/Makefile soc2013/def/crashdump-head/share/syscons/fonts/Makefile soc2013/def/crashdump-head/share/syscons/keymaps/INDEX.keymaps soc2013/def/crashdump-head/share/syscons/keymaps/Makefile soc2013/def/crashdump-head/share/tests/Makefile soc2013/def/crashdump-head/share/timedef/Makefile soc2013/def/crashdump-head/share/timedef/am_ET.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/be_BY.CP1131.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/be_BY.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/be_BY.ISO8859-5.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/be_BY.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/bg_BG.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/bg_BG.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/cs_CZ.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/cs_CZ.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/da_DK.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/de_AT.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/el_GR.ISO8859-7.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/el_GR.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/es_ES.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/et_EE.ISO8859-15.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/et_EE.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/fi_FI.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/fr_FR.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/he_IL.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/hi_IN.ISCII-DEV.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/hr_HR.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/hr_HR.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/hu_HU.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/hu_HU.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/hy_AM.ARMSCII-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/hy_AM.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/is_IS.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/it_IT.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ja_JP.SJIS.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ja_JP.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ja_JP.eucJP.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ko_KR.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ko_KR.eucKR.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/lt_LT.ISO8859-13.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/lt_LT.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/lv_LV.ISO8859-13.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/lv_LV.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/nb_NO.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/nn_NO.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/pl_PL.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/pl_PL.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/pt_BR.ISO8859-1.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/pt_BR.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/pt_PT.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ro_RO.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ro_RO.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ru_RU.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ru_RU.CP866.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ru_RU.ISO8859-5.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ru_RU.KOI8-R.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/ru_RU.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/sk_SK.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/sk_SK.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/sl_SI.ISO8859-2.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/sl_SI.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/sv_SE.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/tr_TR.ISO8859-9.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/tr_TR.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/uk_UA.CP1251.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/uk_UA.ISO8859-5.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/uk_UA.KOI8-U.src (contents, props changed) soc2013/def/crashdump-head/share/timedef/uk_UA.UTF-8.src (contents, props changed) soc2013/def/crashdump-head/share/vt/fonts/Makefile soc2013/def/crashdump-head/share/vt/keymaps/INDEX.keymaps soc2013/def/crashdump-head/share/vt/keymaps/Makefile soc2013/def/crashdump-head/share/zoneinfo/ (props changed) soc2013/def/crashdump-head/share/zoneinfo/Makefile soc2013/def/crashdump-head/sys/ (props changed) soc2013/def/crashdump-head/sys/Makefile soc2013/def/crashdump-head/sys/amd64/Makefile soc2013/def/crashdump-head/sys/amd64/acpica/acpi_machdep.c soc2013/def/crashdump-head/sys/amd64/amd64/apic_vector.S soc2013/def/crashdump-head/sys/amd64/amd64/atomic.c soc2013/def/crashdump-head/sys/amd64/amd64/cpu_switch.S soc2013/def/crashdump-head/sys/amd64/amd64/db_disasm.c soc2013/def/crashdump-head/sys/amd64/amd64/db_trace.c soc2013/def/crashdump-head/sys/amd64/amd64/elf_machdep.c soc2013/def/crashdump-head/sys/amd64/amd64/exception.S soc2013/def/crashdump-head/sys/amd64/amd64/fpu.c soc2013/def/crashdump-head/sys/amd64/amd64/gdb_machdep.c soc2013/def/crashdump-head/sys/amd64/amd64/genassym.c soc2013/def/crashdump-head/sys/amd64/amd64/initcpu.c soc2013/def/crashdump-head/sys/amd64/amd64/machdep.c soc2013/def/crashdump-head/sys/amd64/amd64/mp_machdep.c soc2013/def/crashdump-head/sys/amd64/amd64/mp_watchdog.c soc2013/def/crashdump-head/sys/amd64/amd64/pmap.c soc2013/def/crashdump-head/sys/amd64/amd64/ptrace_machdep.c soc2013/def/crashdump-head/sys/amd64/amd64/support.S soc2013/def/crashdump-head/sys/amd64/amd64/trap.c soc2013/def/crashdump-head/sys/amd64/amd64/vm_machdep.c soc2013/def/crashdump-head/sys/amd64/amd64/xen-locore.S soc2013/def/crashdump-head/sys/amd64/conf/GENERIC soc2013/def/crashdump-head/sys/amd64/conf/NOTES soc2013/def/crashdump-head/sys/amd64/ia32/ia32_reg.c soc2013/def/crashdump-head/sys/amd64/ia32/ia32_signal.c soc2013/def/crashdump-head/sys/amd64/include/atomic.h soc2013/def/crashdump-head/sys/amd64/include/cpufunc.h soc2013/def/crashdump-head/sys/amd64/include/in_cksum.h soc2013/def/crashdump-head/sys/amd64/include/intr_machdep.h soc2013/def/crashdump-head/sys/amd64/include/md_var.h soc2013/def/crashdump-head/sys/amd64/include/param.h soc2013/def/crashdump-head/sys/amd64/include/pcb.h soc2013/def/crashdump-head/sys/amd64/include/pcpu.h soc2013/def/crashdump-head/sys/amd64/include/pmap.h soc2013/def/crashdump-head/sys/amd64/include/pmc_mdep.h soc2013/def/crashdump-head/sys/amd64/include/smp.h soc2013/def/crashdump-head/sys/amd64/include/stack.h soc2013/def/crashdump-head/sys/amd64/include/vmm.h (contents, props changed) soc2013/def/crashdump-head/sys/amd64/include/vmm_dev.h (contents, props changed) soc2013/def/crashdump-head/sys/amd64/include/vmm_instruction_emul.h soc2013/def/crashdump-head/sys/amd64/include/vmparam.h soc2013/def/crashdump-head/sys/amd64/include/xen/ (props changed) soc2013/def/crashdump-head/sys/amd64/include/xen/hypercall.h soc2013/def/crashdump-head/sys/amd64/include/xen/xen-os.h soc2013/def/crashdump-head/sys/amd64/linux32/linux.h soc2013/def/crashdump-head/sys/amd64/linux32/linux32_dummy.c soc2013/def/crashdump-head/sys/amd64/linux32/linux32_genassym.c soc2013/def/crashdump-head/sys/amd64/linux32/linux32_locore.s soc2013/def/crashdump-head/sys/amd64/linux32/linux32_machdep.c soc2013/def/crashdump-head/sys/amd64/linux32/linux32_proto.h soc2013/def/crashdump-head/sys/amd64/linux32/linux32_syscall.h soc2013/def/crashdump-head/sys/amd64/linux32/linux32_syscalls.c soc2013/def/crashdump-head/sys/amd64/linux32/linux32_sysent.c soc2013/def/crashdump-head/sys/amd64/linux32/linux32_systrace_args.c soc2013/def/crashdump-head/sys/amd64/linux32/linux32_sysvec.c soc2013/def/crashdump-head/sys/amd64/linux32/syscalls.conf soc2013/def/crashdump-head/sys/amd64/linux32/syscalls.master soc2013/def/crashdump-head/sys/amd64/vmm/ (props changed) soc2013/def/crashdump-head/sys/amd64/vmm/amd/amdv.c soc2013/def/crashdump-head/sys/amd64/vmm/amd/svm.c soc2013/def/crashdump-head/sys/amd64/vmm/amd/svm.h soc2013/def/crashdump-head/sys/amd64/vmm/amd/svm_genassym.c soc2013/def/crashdump-head/sys/amd64/vmm/amd/svm_msr.c soc2013/def/crashdump-head/sys/amd64/vmm/amd/svm_support.S soc2013/def/crashdump-head/sys/amd64/vmm/amd/vmcb.c soc2013/def/crashdump-head/sys/amd64/vmm/intel/vmx.c soc2013/def/crashdump-head/sys/amd64/vmm/intel/vmx.h soc2013/def/crashdump-head/sys/amd64/vmm/intel/vmx_msr.c soc2013/def/crashdump-head/sys/amd64/vmm/io/ppt.c soc2013/def/crashdump-head/sys/amd64/vmm/io/vatpic.c soc2013/def/crashdump-head/sys/amd64/vmm/io/vatpit.c soc2013/def/crashdump-head/sys/amd64/vmm/io/vhpet.c soc2013/def/crashdump-head/sys/amd64/vmm/io/vioapic.c soc2013/def/crashdump-head/sys/amd64/vmm/io/vlapic.c soc2013/def/crashdump-head/sys/amd64/vmm/io/vpmtmr.c soc2013/def/crashdump-head/sys/amd64/vmm/io/vrtc.c soc2013/def/crashdump-head/sys/amd64/vmm/vmm.c soc2013/def/crashdump-head/sys/amd64/vmm/vmm_dev.c soc2013/def/crashdump-head/sys/amd64/vmm/vmm_instruction_emul.c soc2013/def/crashdump-head/sys/amd64/vmm/vmm_ioport.c soc2013/def/crashdump-head/sys/amd64/vmm/vmm_mem.c soc2013/def/crashdump-head/sys/amd64/vmm/vmm_mem.h soc2013/def/crashdump-head/sys/amd64/vmm/vmm_stat.c soc2013/def/crashdump-head/sys/amd64/vmm/vmm_stat.h soc2013/def/crashdump-head/sys/amd64/vmm/x86.c soc2013/def/crashdump-head/sys/amd64/vmm/x86.h soc2013/def/crashdump-head/sys/arm/allwinner/a10_clk.c soc2013/def/crashdump-head/sys/arm/allwinner/a10_clk.h soc2013/def/crashdump-head/sys/arm/allwinner/a10_gpio.c soc2013/def/crashdump-head/sys/arm/allwinner/a10_gpio.h soc2013/def/crashdump-head/sys/arm/allwinner/a20/a20_mp.c soc2013/def/crashdump-head/sys/arm/allwinner/a20/files.a20 soc2013/def/crashdump-head/sys/arm/allwinner/a20/std.a20 soc2013/def/crashdump-head/sys/arm/allwinner/files.allwinner soc2013/def/crashdump-head/sys/arm/allwinner/if_emac.c soc2013/def/crashdump-head/sys/arm/allwinner/std.a10 soc2013/def/crashdump-head/sys/arm/altera/socfpga/files.socfpga soc2013/def/crashdump-head/sys/arm/altera/socfpga/socfpga_mp.c soc2013/def/crashdump-head/sys/arm/altera/socfpga/std.socfpga soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_ccm.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_machdep.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_mmc.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_mmc.h soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_mp.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_pic.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_pinctrl.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_rng.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_rtc.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_sdxc-m8.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_uart.h soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/aml8726_usb_phy-m6.c soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/files.aml8726 soc2013/def/crashdump-head/sys/arm/amlogic/aml8726/uart_dev_aml8726.c soc2013/def/crashdump-head/sys/arm/arm/autoconf.c soc2013/def/crashdump-head/sys/arm/arm/bcopy_page.S soc2013/def/crashdump-head/sys/arm/arm/bcopyinout.S soc2013/def/crashdump-head/sys/arm/arm/bcopyinout_xscale.S soc2013/def/crashdump-head/sys/arm/arm/blockio.S soc2013/def/crashdump-head/sys/arm/arm/bus_space_base.c soc2013/def/crashdump-head/sys/arm/arm/busdma_machdep-v6.c soc2013/def/crashdump-head/sys/arm/arm/busdma_machdep.c soc2013/def/crashdump-head/sys/arm/arm/copystr.S soc2013/def/crashdump-head/sys/arm/arm/cpu_asm-v6.S soc2013/def/crashdump-head/sys/arm/arm/cpufunc.c soc2013/def/crashdump-head/sys/arm/arm/cpufunc_asm_arm11x6.S soc2013/def/crashdump-head/sys/arm/arm/cpufunc_asm_arm9.S soc2013/def/crashdump-head/sys/arm/arm/cpufunc_asm_armv6.S soc2013/def/crashdump-head/sys/arm/arm/cpufunc_asm_armv7.S soc2013/def/crashdump-head/sys/arm/arm/cpufunc_asm_xscale_c3.S soc2013/def/crashdump-head/sys/arm/arm/cpuinfo.c soc2013/def/crashdump-head/sys/arm/arm/db_disasm.c soc2013/def/crashdump-head/sys/arm/arm/db_interface.c soc2013/def/crashdump-head/sys/arm/arm/elf_machdep.c soc2013/def/crashdump-head/sys/arm/arm/elf_trampoline.c soc2013/def/crashdump-head/sys/arm/arm/exception.S soc2013/def/crashdump-head/sys/arm/arm/fiq.c soc2013/def/crashdump-head/sys/arm/arm/fusu.S soc2013/def/crashdump-head/sys/arm/arm/genassym.c soc2013/def/crashdump-head/sys/arm/arm/generic_timer.c soc2013/def/crashdump-head/sys/arm/arm/gic.c soc2013/def/crashdump-head/sys/arm/arm/identcpu.c soc2013/def/crashdump-head/sys/arm/arm/intr.c soc2013/def/crashdump-head/sys/arm/arm/locore-v4.S soc2013/def/crashdump-head/sys/arm/arm/locore-v6.S soc2013/def/crashdump-head/sys/arm/arm/machdep.c soc2013/def/crashdump-head/sys/arm/arm/mp_machdep.c soc2013/def/crashdump-head/sys/arm/arm/mpcore_timer.c soc2013/def/crashdump-head/sys/arm/arm/nexus.c soc2013/def/crashdump-head/sys/arm/arm/physmem.c soc2013/def/crashdump-head/sys/arm/arm/pl190.c soc2013/def/crashdump-head/sys/arm/arm/pl310.c soc2013/def/crashdump-head/sys/arm/arm/pmap-v6-new.c soc2013/def/crashdump-head/sys/arm/arm/pmap-v6.c soc2013/def/crashdump-head/sys/arm/arm/pmap.c soc2013/def/crashdump-head/sys/arm/arm/pmu.c soc2013/def/crashdump-head/sys/arm/arm/stack_machdep.c soc2013/def/crashdump-head/sys/arm/arm/stdatomic.c soc2013/def/crashdump-head/sys/arm/arm/support.S soc2013/def/crashdump-head/sys/arm/arm/swtch.S soc2013/def/crashdump-head/sys/arm/arm/sys_machdep.c soc2013/def/crashdump-head/sys/arm/arm/syscall.c soc2013/def/crashdump-head/sys/arm/arm/trap-v6.c soc2013/def/crashdump-head/sys/arm/arm/trap.c soc2013/def/crashdump-head/sys/arm/arm/undefined.c soc2013/def/crashdump-head/sys/arm/arm/vfp.c soc2013/def/crashdump-head/sys/arm/arm/vm_machdep.c soc2013/def/crashdump-head/sys/arm/at91/at91_machdep.c soc2013/def/crashdump-head/sys/arm/at91/at91_pio.c soc2013/def/crashdump-head/sys/arm/at91/at91_pmc.c soc2013/def/crashdump-head/sys/arm/at91/files.at91 soc2013/def/crashdump-head/sys/arm/at91/if_ate.c soc2013/def/crashdump-head/sys/arm/at91/if_macb.c soc2013/def/crashdump-head/sys/arm/at91/if_macbreg.h soc2013/def/crashdump-head/sys/arm/at91/if_macbvar.h soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_audio.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_fb.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_fbd.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_intr.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_mbox.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_mbox_prop.h soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_spi.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_systimer.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2835_vcbus.h soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2836.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm2836.h soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/bcm283x_dwc_fdt.c soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/files.bcm2836 soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/files.bcm283x soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/std.bcm2836 soc2013/def/crashdump-head/sys/arm/broadcom/bcm2835/std.rpi soc2013/def/crashdump-head/sys/arm/cavium/cns11xx/econa_machdep.c soc2013/def/crashdump-head/sys/arm/cavium/cns11xx/files.econa soc2013/def/crashdump-head/sys/arm/conf/AML8726 soc2013/def/crashdump-head/sys/arm/conf/APALIS-IMX6 soc2013/def/crashdump-head/sys/arm/conf/ARMADAXP soc2013/def/crashdump-head/sys/arm/conf/ARNDALE soc2013/def/crashdump-head/sys/arm/conf/ARNDALE-OCTA soc2013/def/crashdump-head/sys/arm/conf/ATMEL soc2013/def/crashdump-head/sys/arm/conf/AVILA soc2013/def/crashdump-head/sys/arm/conf/BEAGLEBONE soc2013/def/crashdump-head/sys/arm/conf/BWCT soc2013/def/crashdump-head/sys/arm/conf/CAMBRIA soc2013/def/crashdump-head/sys/arm/conf/CHROMEBOOK soc2013/def/crashdump-head/sys/arm/conf/CHROMEBOOK-PEACH-PIT soc2013/def/crashdump-head/sys/arm/conf/CHROMEBOOK-SNOW soc2013/def/crashdump-head/sys/arm/conf/CHROMEBOOK-SPRING soc2013/def/crashdump-head/sys/arm/conf/CNS11XXNAS soc2013/def/crashdump-head/sys/arm/conf/COLIBRI-VF50 soc2013/def/crashdump-head/sys/arm/conf/COSMIC soc2013/def/crashdump-head/sys/arm/conf/CRB soc2013/def/crashdump-head/sys/arm/conf/CUBIEBOARD soc2013/def/crashdump-head/sys/arm/conf/DB-78XXX soc2013/def/crashdump-head/sys/arm/conf/DB-88F5XXX soc2013/def/crashdump-head/sys/arm/conf/DB-88F6XXX soc2013/def/crashdump-head/sys/arm/conf/DIGI-CCWMX53 soc2013/def/crashdump-head/sys/arm/conf/DOCKSTAR soc2013/def/crashdump-head/sys/arm/conf/DREAMPLUG-1001 soc2013/def/crashdump-head/sys/arm/conf/EA3250 soc2013/def/crashdump-head/sys/arm/conf/EB9200 soc2013/def/crashdump-head/sys/arm/conf/EFIKA_MX soc2013/def/crashdump-head/sys/arm/conf/ETHERNUT5 soc2013/def/crashdump-head/sys/arm/conf/EXYNOS5.common soc2013/def/crashdump-head/sys/arm/conf/EXYNOS5250 soc2013/def/crashdump-head/sys/arm/conf/EXYNOS5420 soc2013/def/crashdump-head/sys/arm/conf/GUMSTIX soc2013/def/crashdump-head/sys/arm/conf/HL200 soc2013/def/crashdump-head/sys/arm/conf/HL201 soc2013/def/crashdump-head/sys/arm/conf/IMX53 soc2013/def/crashdump-head/sys/arm/conf/IMX53-QSB soc2013/def/crashdump-head/sys/arm/conf/IMX6 soc2013/def/crashdump-head/sys/arm/conf/KB920X soc2013/def/crashdump-head/sys/arm/conf/NOTES soc2013/def/crashdump-head/sys/arm/conf/NSLU soc2013/def/crashdump-head/sys/arm/conf/ODROIDC1 soc2013/def/crashdump-head/sys/arm/conf/PANDABOARD soc2013/def/crashdump-head/sys/arm/conf/QILA9G20 soc2013/def/crashdump-head/sys/arm/conf/QUARTZ soc2013/def/crashdump-head/sys/arm/conf/RADXA soc2013/def/crashdump-head/sys/arm/conf/RADXA-LITE soc2013/def/crashdump-head/sys/arm/conf/RK3188 soc2013/def/crashdump-head/sys/arm/conf/RPI-B soc2013/def/crashdump-head/sys/arm/conf/RPI2 soc2013/def/crashdump-head/sys/arm/conf/SAM9260EK soc2013/def/crashdump-head/sys/arm/conf/SAM9G20EK soc2013/def/crashdump-head/sys/arm/conf/SAM9X25EK soc2013/def/crashdump-head/sys/arm/conf/SHEEVAPLUG soc2013/def/crashdump-head/sys/arm/conf/SN9G45 soc2013/def/crashdump-head/sys/arm/conf/SOCKIT.common soc2013/def/crashdump-head/sys/arm/conf/TS7800 soc2013/def/crashdump-head/sys/arm/conf/VERSATILEPB soc2013/def/crashdump-head/sys/arm/conf/VIRT soc2013/def/crashdump-head/sys/arm/conf/VSATV102 soc2013/def/crashdump-head/sys/arm/conf/VYBRID soc2013/def/crashdump-head/sys/arm/conf/ZEDBOARD soc2013/def/crashdump-head/sys/arm/freescale/imx/files.imx5 soc2013/def/crashdump-head/sys/arm/freescale/imx/files.imx6 soc2013/def/crashdump-head/sys/arm/freescale/imx/imx6_anatop.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx6_ccm.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx6_ccmreg.h soc2013/def/crashdump-head/sys/arm/freescale/imx/imx6_machdep.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx6_mp.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx6_sdma.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx_ccmvar.h soc2013/def/crashdump-head/sys/arm/freescale/imx/imx_gpio.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx_i2c.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx_machdep.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx_machdep.h soc2013/def/crashdump-head/sys/arm/freescale/imx/imx_sdhci.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx_wdog.c soc2013/def/crashdump-head/sys/arm/freescale/imx/imx_wdogreg.h soc2013/def/crashdump-head/sys/arm/freescale/imx/std.imx51 soc2013/def/crashdump-head/sys/arm/freescale/imx/std.imx53 soc2013/def/crashdump-head/sys/arm/freescale/imx/std.imx6 soc2013/def/crashdump-head/sys/arm/freescale/vybrid/files.vybrid soc2013/def/crashdump-head/sys/arm/freescale/vybrid/std.vybrid soc2013/def/crashdump-head/sys/arm/freescale/vybrid/vf_i2c.c soc2013/def/crashdump-head/sys/arm/include/_stdint.h soc2013/def/crashdump-head/sys/arm/include/_types.h soc2013/def/crashdump-head/sys/arm/include/armreg.h soc2013/def/crashdump-head/sys/arm/include/asm.h soc2013/def/crashdump-head/sys/arm/include/atags.h soc2013/def/crashdump-head/sys/arm/include/atomic.h soc2013/def/crashdump-head/sys/arm/include/board.h soc2013/def/crashdump-head/sys/arm/include/bus.h soc2013/def/crashdump-head/sys/arm/include/bus_dma.h soc2013/def/crashdump-head/sys/arm/include/cpu-v6.h soc2013/def/crashdump-head/sys/arm/include/cpu.h soc2013/def/crashdump-head/sys/arm/include/cpufunc.h soc2013/def/crashdump-head/sys/arm/include/cpuinfo.h soc2013/def/crashdump-head/sys/arm/include/db_machdep.h soc2013/def/crashdump-head/sys/arm/include/devmap.h soc2013/def/crashdump-head/sys/arm/include/disassem.h soc2013/def/crashdump-head/sys/arm/include/elf.h soc2013/def/crashdump-head/sys/arm/include/endian.h soc2013/def/crashdump-head/sys/arm/include/fdt.h soc2013/def/crashdump-head/sys/arm/include/float.h soc2013/def/crashdump-head/sys/arm/include/intr.h soc2013/def/crashdump-head/sys/arm/include/machdep.h soc2013/def/crashdump-head/sys/arm/include/md_var.h soc2013/def/crashdump-head/sys/arm/include/param.h soc2013/def/crashdump-head/sys/arm/include/pcb.h soc2013/def/crashdump-head/sys/arm/include/pcpu.h soc2013/def/crashdump-head/sys/arm/include/physmem.h soc2013/def/crashdump-head/sys/arm/include/pl310.h soc2013/def/crashdump-head/sys/arm/include/pmap-v6.h soc2013/def/crashdump-head/sys/arm/include/pmap.h soc2013/def/crashdump-head/sys/arm/include/proc.h soc2013/def/crashdump-head/sys/arm/include/pte-v6.h soc2013/def/crashdump-head/sys/arm/include/sf_buf.h soc2013/def/crashdump-head/sys/arm/include/smp.h soc2013/def/crashdump-head/sys/arm/include/sysreg.h soc2013/def/crashdump-head/sys/arm/include/vfp.h soc2013/def/crashdump-head/sys/arm/include/vm.h soc2013/def/crashdump-head/sys/arm/include/vmparam.h soc2013/def/crashdump-head/sys/arm/lpc/files.lpc soc2013/def/crashdump-head/sys/arm/mv/armadaxp/armadaxp_mp.c soc2013/def/crashdump-head/sys/arm/mv/armadaxp/std.armadaxp soc2013/def/crashdump-head/sys/arm/mv/files.mv soc2013/def/crashdump-head/sys/arm/mv/mpic.c soc2013/def/crashdump-head/sys/arm/mv/std-pj4b.mv soc2013/def/crashdump-head/sys/arm/qemu/files.qemu soc2013/def/crashdump-head/sys/arm/qemu/std.virt soc2013/def/crashdump-head/sys/arm/qemu/virt_common.c soc2013/def/crashdump-head/sys/arm/rockchip/files.rk30xx soc2013/def/crashdump-head/sys/arm/rockchip/rk30xx_mp.c soc2013/def/crashdump-head/sys/arm/rockchip/std.rk30xx soc2013/def/crashdump-head/sys/arm/samsung/exynos/exynos5_combiner.c soc2013/def/crashdump-head/sys/arm/samsung/exynos/exynos5_ehci.c soc2013/def/crashdump-head/sys/arm/samsung/exynos/exynos5_i2c.c soc2013/def/crashdump-head/sys/arm/samsung/exynos/exynos5_mp.c soc2013/def/crashdump-head/sys/arm/samsung/exynos/exynos5_pad.c soc2013/def/crashdump-head/sys/arm/samsung/exynos/files.exynos5 soc2013/def/crashdump-head/sys/arm/samsung/exynos/std.exynos5250 soc2013/def/crashdump-head/sys/arm/samsung/exynos/std.exynos5420 soc2013/def/crashdump-head/sys/arm/ti/aintc.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_dmtimer.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_gpio.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_lcd.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_lcd.h soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_pmic.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_prcm.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_pwm.h soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_scm_padconf.c soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_scm_padconf.h soc2013/def/crashdump-head/sys/arm/ti/am335x/am335x_usbss.c soc2013/def/crashdump-head/sys/arm/ti/am335x/files.am335x soc2013/def/crashdump-head/sys/arm/ti/am335x/std.am335x soc2013/def/crashdump-head/sys/arm/ti/cpsw/if_cpsw.c soc2013/def/crashdump-head/sys/arm/ti/cpsw/if_cpswreg.h soc2013/def/crashdump-head/sys/arm/ti/cpsw/if_cpswvar.h soc2013/def/crashdump-head/sys/arm/ti/files.ti soc2013/def/crashdump-head/sys/arm/ti/omap4/files.omap4 soc2013/def/crashdump-head/sys/arm/ti/omap4/omap4_gpio.c soc2013/def/crashdump-head/sys/arm/ti/omap4/omap4_mp.c soc2013/def/crashdump-head/sys/arm/ti/omap4/omap4_prcm_clks.c soc2013/def/crashdump-head/sys/arm/ti/omap4/omap4_scm_padconf.c soc2013/def/crashdump-head/sys/arm/ti/omap4/pandaboard/pandaboard.c soc2013/def/crashdump-head/sys/arm/ti/omap4/std.omap4 soc2013/def/crashdump-head/sys/arm/ti/ti_adc.c soc2013/def/crashdump-head/sys/arm/ti/ti_common.c soc2013/def/crashdump-head/sys/arm/ti/ti_edma3.c soc2013/def/crashdump-head/sys/arm/ti/ti_gpio.c soc2013/def/crashdump-head/sys/arm/ti/ti_gpio.h soc2013/def/crashdump-head/sys/arm/ti/ti_i2c.c soc2013/def/crashdump-head/sys/arm/ti/ti_mbox.c soc2013/def/crashdump-head/sys/arm/ti/ti_prcm.c soc2013/def/crashdump-head/sys/arm/ti/ti_prcm.h soc2013/def/crashdump-head/sys/arm/ti/ti_pruss.c soc2013/def/crashdump-head/sys/arm/ti/ti_pruss.h soc2013/def/crashdump-head/sys/arm/ti/ti_scm.c soc2013/def/crashdump-head/sys/arm/ti/ti_scm.h soc2013/def/crashdump-head/sys/arm/ti/ti_sdhci.c soc2013/def/crashdump-head/sys/arm/ti/ti_sdma.c soc2013/def/crashdump-head/sys/arm/ti/usb/omap_ehci.c soc2013/def/crashdump-head/sys/arm/ti/usb/omap_usb.h soc2013/def/crashdump-head/sys/arm/versatile/files.versatile soc2013/def/crashdump-head/sys/arm/versatile/sp804.c soc2013/def/crashdump-head/sys/arm/versatile/versatile_pci.c soc2013/def/crashdump-head/sys/arm/xilinx/files.zynq7 soc2013/def/crashdump-head/sys/arm/xilinx/std.zynq7 soc2013/def/crashdump-head/sys/arm/xilinx/zy7_mp.c soc2013/def/crashdump-head/sys/arm/xscale/i80321/ep80219_machdep.c soc2013/def/crashdump-head/sys/arm/xscale/i80321/files.i80219 soc2013/def/crashdump-head/sys/arm/xscale/i80321/files.i80321 soc2013/def/crashdump-head/sys/arm/xscale/i80321/i80321_pci.c soc2013/def/crashdump-head/sys/arm/xscale/i80321/iq31244_machdep.c soc2013/def/crashdump-head/sys/arm/xscale/i8134x/crb_machdep.c soc2013/def/crashdump-head/sys/arm/xscale/i8134x/files.i81342 soc2013/def/crashdump-head/sys/arm/xscale/i8134x/i81342_pci.c soc2013/def/crashdump-head/sys/arm/xscale/ixp425/avila_machdep.c soc2013/def/crashdump-head/sys/arm/xscale/ixp425/files.ixp425 soc2013/def/crashdump-head/sys/arm/xscale/ixp425/ixp425_pci.c soc2013/def/crashdump-head/sys/arm/xscale/pxa/files.pxa soc2013/def/crashdump-head/sys/arm/xscale/pxa/pxa_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/bus_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/bus_space_asm.S soc2013/def/crashdump-head/sys/arm64/arm64/busdma_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/copyinout.S soc2013/def/crashdump-head/sys/arm64/arm64/cpufunc_asm.S soc2013/def/crashdump-head/sys/arm64/arm64/elf_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/exception.S soc2013/def/crashdump-head/sys/arm64/arm64/genassym.c soc2013/def/crashdump-head/sys/arm64/arm64/gic.c soc2013/def/crashdump-head/sys/arm64/arm64/identcpu.c soc2013/def/crashdump-head/sys/arm64/arm64/intr_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/locore.S soc2013/def/crashdump-head/sys/arm64/arm64/machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/mem.c soc2013/def/crashdump-head/sys/arm64/arm64/minidump_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/nexus.c soc2013/def/crashdump-head/sys/arm64/arm64/pmap.c soc2013/def/crashdump-head/sys/arm64/arm64/stack_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/support.S soc2013/def/crashdump-head/sys/arm64/arm64/swtch.S soc2013/def/crashdump-head/sys/arm64/arm64/trap.c soc2013/def/crashdump-head/sys/arm64/arm64/uio_machdep.c soc2013/def/crashdump-head/sys/arm64/arm64/vfp.c soc2013/def/crashdump-head/sys/arm64/arm64/vm_machdep.c soc2013/def/crashdump-head/sys/arm64/conf/GENERIC soc2013/def/crashdump-head/sys/arm64/include/_types.h soc2013/def/crashdump-head/sys/arm64/include/armreg.h soc2013/def/crashdump-head/sys/arm64/include/asm.h soc2013/def/crashdump-head/sys/arm64/include/atomic.h soc2013/def/crashdump-head/sys/arm64/include/cpu.h soc2013/def/crashdump-head/sys/arm64/include/cpufunc.h soc2013/def/crashdump-head/sys/arm64/include/float.h soc2013/def/crashdump-head/sys/arm64/include/ieeefp.h soc2013/def/crashdump-head/sys/arm64/include/in_cksum.h soc2013/def/crashdump-head/sys/arm64/include/md_var.h soc2013/def/crashdump-head/sys/arm64/include/param.h soc2013/def/crashdump-head/sys/arm64/include/pcb.h soc2013/def/crashdump-head/sys/arm64/include/pcpu.h soc2013/def/crashdump-head/sys/arm64/include/pmap.h soc2013/def/crashdump-head/sys/arm64/include/pmc_mdep.h soc2013/def/crashdump-head/sys/arm64/include/pte.h soc2013/def/crashdump-head/sys/arm64/include/smp.h soc2013/def/crashdump-head/sys/arm64/include/stack.h soc2013/def/crashdump-head/sys/arm64/include/ucontext.h soc2013/def/crashdump-head/sys/arm64/include/vfp.h soc2013/def/crashdump-head/sys/arm64/include/vmparam.h soc2013/def/crashdump-head/sys/boot/ (props changed) soc2013/def/crashdump-head/sys/boot/Makefile soc2013/def/crashdump-head/sys/boot/arm/ixp425/boot2/arm_init.S soc2013/def/crashdump-head/sys/boot/arm/ixp425/boot2/ixp425_board.c soc2013/def/crashdump-head/sys/boot/arm/ixp425/boot2/lib.h soc2013/def/crashdump-head/sys/boot/arm/uboot/Makefile soc2013/def/crashdump-head/sys/boot/arm/uboot/ldscript.arm soc2013/def/crashdump-head/sys/boot/arm/uboot/start.S soc2013/def/crashdump-head/sys/boot/common/Makefile.inc soc2013/def/crashdump-head/sys/boot/common/dev_net.c soc2013/def/crashdump-head/sys/boot/common/dev_net.h soc2013/def/crashdump-head/sys/boot/common/disk.c soc2013/def/crashdump-head/sys/boot/common/disk.h soc2013/def/crashdump-head/sys/boot/common/load_elf.c soc2013/def/crashdump-head/sys/boot/common/loader.8 soc2013/def/crashdump-head/sys/boot/common/md.c soc2013/def/crashdump-head/sys/boot/common/module.c soc2013/def/crashdump-head/sys/boot/common/newvers.sh soc2013/def/crashdump-head/sys/boot/efi/Makefile.inc soc2013/def/crashdump-head/sys/boot/efi/boot1/Makefile soc2013/def/crashdump-head/sys/boot/efi/libefi/Makefile soc2013/def/crashdump-head/sys/boot/efi/libefi/efipart.c soc2013/def/crashdump-head/sys/boot/efi/loader/Makefile soc2013/def/crashdump-head/sys/boot/efi/loader/arch/amd64/framebuffer.c soc2013/def/crashdump-head/sys/boot/efi/loader/arch/amd64/start.S soc2013/def/crashdump-head/sys/boot/efi/loader/arch/arm/ldscript.arm soc2013/def/crashdump-head/sys/boot/efi/loader/arch/arm/start.S soc2013/def/crashdump-head/sys/boot/efi/loader/arch/arm64/Makefile.inc soc2013/def/crashdump-head/sys/boot/efi/loader/arch/arm64/exec.c soc2013/def/crashdump-head/sys/boot/efi/loader/arch/arm64/start.S soc2013/def/crashdump-head/sys/boot/efi/loader/arch/i386/start.S soc2013/def/crashdump-head/sys/boot/efi/loader/copy.c soc2013/def/crashdump-head/sys/boot/efi/loader/main.c soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/am335x-evm.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/bcm2835.dtsi soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/bcm2836.dtsi soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/beaglebone-black.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/beaglebone.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/cubieboard.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/cubieboard2.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/odroidc1.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/pandaboard.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/rpi.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/rpi2.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/sun4i-a10.dtsi soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/sun7i-a20.dtsi soc2013/def/crashdump-head/sys/boot/fdt/dts/arm/vsatv102-m6.dts soc2013/def/crashdump-head/sys/boot/fdt/dts/mips/beri-sim.dts soc2013/def/crashdump-head/sys/boot/ficl/Makefile soc2013/def/crashdump-head/sys/boot/forth/Makefile soc2013/def/crashdump-head/sys/boot/forth/loader.conf soc2013/def/crashdump-head/sys/boot/forth/loader.conf.5 soc2013/def/crashdump-head/sys/boot/forth/loader.rc soc2013/def/crashdump-head/sys/boot/forth/menu.rc soc2013/def/crashdump-head/sys/boot/forth/support.4th soc2013/def/crashdump-head/sys/boot/i386/Makefile soc2013/def/crashdump-head/sys/boot/i386/Makefile.inc soc2013/def/crashdump-head/sys/boot/i386/boot0/Makefile soc2013/def/crashdump-head/sys/boot/i386/boot0/boot0.S soc2013/def/crashdump-head/sys/boot/i386/boot2/Makefile soc2013/def/crashdump-head/sys/boot/i386/boot2/boot2.c soc2013/def/crashdump-head/sys/boot/i386/gptboot/gptldr.S soc2013/def/crashdump-head/sys/boot/i386/loader/Makefile soc2013/def/crashdump-head/sys/boot/kshim/bsd_busspace.c soc2013/def/crashdump-head/sys/boot/kshim/bsd_global.h soc2013/def/crashdump-head/sys/boot/kshim/bsd_kernel.c soc2013/def/crashdump-head/sys/boot/kshim/bsd_kernel.h soc2013/def/crashdump-head/sys/boot/libstand32/Makefile soc2013/def/crashdump-head/sys/boot/mips/beri/loader/Makefile soc2013/def/crashdump-head/sys/boot/ofw/libofw/ppc64_elf_freebsd.c soc2013/def/crashdump-head/sys/boot/pc98/Makefile.inc soc2013/def/crashdump-head/sys/boot/pc98/boot2/boot2.c soc2013/def/crashdump-head/sys/boot/pc98/loader/Makefile soc2013/def/crashdump-head/sys/boot/powerpc/kboot/ (props changed) soc2013/def/crashdump-head/sys/boot/powerpc/kboot/Makefile soc2013/def/crashdump-head/sys/boot/powerpc/kboot/ppc64_elf_freebsd.c soc2013/def/crashdump-head/sys/boot/powerpc/ofw/ (props changed) soc2013/def/crashdump-head/sys/boot/powerpc/ofw/Makefile soc2013/def/crashdump-head/sys/boot/powerpc/ps3/Makefile soc2013/def/crashdump-head/sys/boot/powerpc/ps3/ppc64_elf_freebsd.c soc2013/def/crashdump-head/sys/boot/sparc64/loader/Makefile soc2013/def/crashdump-head/sys/boot/sparc64/loader/main.c soc2013/def/crashdump-head/sys/boot/uboot/common/main.c soc2013/def/crashdump-head/sys/boot/uboot/fdt/uboot_fdt.c soc2013/def/crashdump-head/sys/boot/uboot/lib/copy.c soc2013/def/crashdump-head/sys/boot/uboot/lib/elf_freebsd.c soc2013/def/crashdump-head/sys/boot/uboot/lib/glue.c soc2013/def/crashdump-head/sys/boot/uboot/lib/libuboot.h soc2013/def/crashdump-head/sys/boot/uboot/lib/module.c soc2013/def/crashdump-head/sys/boot/uboot/lib/net.c soc2013/def/crashdump-head/sys/boot/usb/storage/umass_common.c soc2013/def/crashdump-head/sys/boot/usb/storage/umass_loader.c soc2013/def/crashdump-head/sys/boot/usb/usb_busdma_loader.c soc2013/def/crashdump-head/sys/boot/usb/usbcore.mk soc2013/def/crashdump-head/sys/boot/userboot/ficl/Makefile soc2013/def/crashdump-head/sys/boot/userboot/libstand/Makefile soc2013/def/crashdump-head/sys/boot/userboot/userboot/conf.c soc2013/def/crashdump-head/sys/boot/zfs/Makefile soc2013/def/crashdump-head/sys/boot/zfs/zfsimpl.c soc2013/def/crashdump-head/sys/cam/ata/ata_da.c soc2013/def/crashdump-head/sys/cam/ata/ata_pmp.c soc2013/def/crashdump-head/sys/cam/ata/ata_xpt.c soc2013/def/crashdump-head/sys/cam/cam.c soc2013/def/crashdump-head/sys/cam/cam.h soc2013/def/crashdump-head/sys/cam/cam_compat.c soc2013/def/crashdump-head/sys/cam/cam_periph.c soc2013/def/crashdump-head/sys/cam/cam_periph.h soc2013/def/crashdump-head/sys/cam/cam_xpt.c soc2013/def/crashdump-head/sys/cam/cam_xpt.h soc2013/def/crashdump-head/sys/cam/ctl/README.ctl.txt soc2013/def/crashdump-head/sys/cam/ctl/ctl.c soc2013/def/crashdump-head/sys/cam/ctl/ctl.h soc2013/def/crashdump-head/sys/cam/ctl/ctl_backend.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_backend.h soc2013/def/crashdump-head/sys/cam/ctl/ctl_backend_block.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_backend_ramdisk.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_cmd_table.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_error.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_error.h soc2013/def/crashdump-head/sys/cam/ctl/ctl_frontend.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_frontend.h soc2013/def/crashdump-head/sys/cam/ctl/ctl_frontend_cam_sim.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_frontend_iscsi.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_ha.h soc2013/def/crashdump-head/sys/cam/ctl/ctl_io.h soc2013/def/crashdump-head/sys/cam/ctl/ctl_ioctl.h soc2013/def/crashdump-head/sys/cam/ctl/ctl_private.h soc2013/def/crashdump-head/sys/cam/ctl/ctl_scsi_all.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_ser_table.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_tpc.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_tpc_local.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_util.c soc2013/def/crashdump-head/sys/cam/ctl/ctl_util.h soc2013/def/crashdump-head/sys/cam/ctl/scsi_ctl.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_all.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_all.h soc2013/def/crashdump-head/sys/cam/scsi/scsi_cd.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_cd.h soc2013/def/crashdump-head/sys/cam/scsi/scsi_ch.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_da.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_enc.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_enc.h soc2013/def/crashdump-head/sys/cam/scsi/scsi_enc_ses.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_message.h soc2013/def/crashdump-head/sys/cam/scsi/scsi_pass.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_pt.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_sa.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_sg.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_target.c soc2013/def/crashdump-head/sys/cam/scsi/scsi_xpt.c soc2013/def/crashdump-head/sys/cddl/compat/opensolaris/kern/opensolaris_acl.c soc2013/def/crashdump-head/sys/cddl/compat/opensolaris/kern/opensolaris_kobj.c soc2013/def/crashdump-head/sys/cddl/compat/opensolaris/sys/file.h soc2013/def/crashdump-head/sys/cddl/compat/opensolaris/sys/kstat.h soc2013/def/crashdump-head/sys/cddl/compat/opensolaris/sys/nvpair.h soc2013/def/crashdump-head/sys/cddl/compat/opensolaris/sys/proc.h soc2013/def/crashdump-head/sys/cddl/compat/opensolaris/sys/vnode.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/ (props changed) soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/avl/avl.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/zfs/zfs_fletcher.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/zfs/zfs_fletcher.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/Makefile.files soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/vnode.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ddt.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_diff.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_object.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_bookmark.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deadlist.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_userhold.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/rrwlock.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sha256.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_reftree.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bpobj.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_traverse.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_zfetch.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_prop.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/rrwlock.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/sa.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/sa_impl.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap_impl.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap_leaf.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_checksum.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zrlock.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_leaf.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfeature.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_log.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_onexit.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_replay.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_sa.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_checksum.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_inject.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zrlock.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/sys/acl.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/sys/debug.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/sys/sysevent/eventdefs.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/common/sys/sysmacros.h soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/powerpc/dtrace/fasttrap_isa.c soc2013/def/crashdump-head/sys/cddl/dev/dtrace/amd64/dtrace_asm.S soc2013/def/crashdump-head/sys/cddl/dev/dtrace/amd64/dtrace_isa.c soc2013/def/crashdump-head/sys/cddl/dev/dtrace/amd64/dtrace_subr.c soc2013/def/crashdump-head/sys/cddl/dev/dtrace/arm/dtrace_asm.S soc2013/def/crashdump-head/sys/cddl/dev/dtrace/i386/dtrace_asm.S soc2013/def/crashdump-head/sys/cddl/dev/dtrace/i386/dtrace_isa.c soc2013/def/crashdump-head/sys/cddl/dev/dtrace/i386/dtrace_subr.c soc2013/def/crashdump-head/sys/cddl/dev/dtrace/powerpc/dtrace_isa.c soc2013/def/crashdump-head/sys/cddl/dev/fbt/arm/fbt_isa.c soc2013/def/crashdump-head/sys/cddl/dev/fbt/fbt.c soc2013/def/crashdump-head/sys/cddl/dev/fbt/fbt.h soc2013/def/crashdump-head/sys/cddl/dev/fbt/powerpc/fbt_isa.c soc2013/def/crashdump-head/sys/cddl/dev/fbt/x86/fbt_isa.c soc2013/def/crashdump-head/sys/cddl/dev/profile/profile.c soc2013/def/crashdump-head/sys/cddl/dev/sdt/sdt.c soc2013/def/crashdump-head/sys/cddl/dev/systrace/systrace.c soc2013/def/crashdump-head/sys/compat/freebsd32/freebsd32_misc.c soc2013/def/crashdump-head/sys/compat/freebsd32/freebsd32_syscall.h soc2013/def/crashdump-head/sys/compat/freebsd32/freebsd32_syscalls.c soc2013/def/crashdump-head/sys/compat/freebsd32/freebsd32_sysent.c soc2013/def/crashdump-head/sys/compat/freebsd32/freebsd32_systrace_args.c soc2013/def/crashdump-head/sys/compat/freebsd32/syscalls.master soc2013/def/crashdump-head/sys/compat/ia32/ia32_sysvec.c soc2013/def/crashdump-head/sys/compat/linprocfs/linprocfs.c soc2013/def/crashdump-head/sys/compat/linsysfs/linsysfs.c soc2013/def/crashdump-head/sys/compat/linux/check_error.d soc2013/def/crashdump-head/sys/compat/linux/check_internal_locks.d soc2013/def/crashdump-head/sys/compat/linux/linux_dtrace.h soc2013/def/crashdump-head/sys/compat/linux/linux_emul.c soc2013/def/crashdump-head/sys/compat/linux/linux_emul.h soc2013/def/crashdump-head/sys/compat/linux/linux_file.c soc2013/def/crashdump-head/sys/compat/linux/linux_file.h soc2013/def/crashdump-head/sys/compat/linux/linux_fork.c soc2013/def/crashdump-head/sys/compat/linux/linux_futex.c soc2013/def/crashdump-head/sys/compat/linux/linux_futex.h soc2013/def/crashdump-head/sys/compat/linux/linux_getcwd.c soc2013/def/crashdump-head/sys/compat/linux/linux_ioctl.c soc2013/def/crashdump-head/sys/compat/linux/linux_ioctl.h soc2013/def/crashdump-head/sys/compat/linux/linux_ipc.c soc2013/def/crashdump-head/sys/compat/linux/linux_ipc.h soc2013/def/crashdump-head/sys/compat/linux/linux_mib.c soc2013/def/crashdump-head/sys/compat/linux/linux_mib.h soc2013/def/crashdump-head/sys/compat/linux/linux_misc.c soc2013/def/crashdump-head/sys/compat/linux/linux_misc.h soc2013/def/crashdump-head/sys/compat/linux/linux_signal.c soc2013/def/crashdump-head/sys/compat/linux/linux_signal.h soc2013/def/crashdump-head/sys/compat/linux/linux_socket.c soc2013/def/crashdump-head/sys/compat/linux/linux_socket.h soc2013/def/crashdump-head/sys/compat/linux/linux_stats.c soc2013/def/crashdump-head/sys/compat/linux/linux_sysctl.c soc2013/def/crashdump-head/sys/compat/linux/linux_time.c soc2013/def/crashdump-head/sys/compat/linux/linux_timer.c soc2013/def/crashdump-head/sys/compat/linux/linux_timer.h soc2013/def/crashdump-head/sys/compat/linux/linux_uid16.c soc2013/def/crashdump-head/sys/compat/linux/linux_util.c soc2013/def/crashdump-head/sys/compat/linux/linux_util.h soc2013/def/crashdump-head/sys/compat/linux/stats_timing.d soc2013/def/crashdump-head/sys/compat/ndis/subr_ndis.c soc2013/def/crashdump-head/sys/compat/ndis/subr_ntoskrnl.c soc2013/def/crashdump-head/sys/compat/svr4/imgact_svr4.c soc2013/def/crashdump-head/sys/compat/svr4/svr4_misc.c soc2013/def/crashdump-head/sys/compat/svr4/svr4_resource.c soc2013/def/crashdump-head/sys/compat/svr4/svr4_sysvec.c soc2013/def/crashdump-head/sys/conf/ (props changed) soc2013/def/crashdump-head/sys/conf/Makefile.arm soc2013/def/crashdump-head/sys/conf/Makefile.arm64 soc2013/def/crashdump-head/sys/conf/NOTES soc2013/def/crashdump-head/sys/conf/WITHOUT_SOURCELESS_UCODE soc2013/def/crashdump-head/sys/conf/dtb.mk soc2013/def/crashdump-head/sys/conf/files soc2013/def/crashdump-head/sys/conf/files.amd64 soc2013/def/crashdump-head/sys/conf/files.arm soc2013/def/crashdump-head/sys/conf/files.arm64 soc2013/def/crashdump-head/sys/conf/files.i386 soc2013/def/crashdump-head/sys/conf/files.mips soc2013/def/crashdump-head/sys/conf/files.pc98 soc2013/def/crashdump-head/sys/conf/files.powerpc soc2013/def/crashdump-head/sys/conf/files.sparc64 soc2013/def/crashdump-head/sys/conf/kern.mk soc2013/def/crashdump-head/sys/conf/kern.opts.mk soc2013/def/crashdump-head/sys/conf/kern.post.mk soc2013/def/crashdump-head/sys/conf/kern.pre.mk soc2013/def/crashdump-head/sys/conf/kmod.mk soc2013/def/crashdump-head/sys/conf/ldscript.amd64 soc2013/def/crashdump-head/sys/conf/ldscript.powerpc64 soc2013/def/crashdump-head/sys/conf/newvers.sh soc2013/def/crashdump-head/sys/conf/options soc2013/def/crashdump-head/sys/conf/options.amd64 soc2013/def/crashdump-head/sys/conf/options.arm soc2013/def/crashdump-head/sys/conf/options.arm64 soc2013/def/crashdump-head/sys/conf/options.i386 soc2013/def/crashdump-head/sys/conf/options.powerpc soc2013/def/crashdump-head/sys/contrib/dev/acpica/ (props changed) soc2013/def/crashdump-head/sys/contrib/dev/acpica/acpica_prep.sh soc2013/def/crashdump-head/sys/contrib/dev/acpica/changes.txt soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/adisasm.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/ahids.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/ahpredef.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/ahuuids.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/dmextern.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/dmrestag.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/dmtable.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/dmtbdump.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/dmtbinfo.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/common/getopt.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslanalyze.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslascii.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslcodegen.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslcompile.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslcompiler.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslcompiler.l soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/asldefine.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslerror.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslfileio.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslfiles.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslfold.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslglobal.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/asllookup.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslmain.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslmapenter.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslmapoutput.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslmessages.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslmessages.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslmethod.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslnamesp.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/asloffset.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslopcodes.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/asloperands.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslopt.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/asloptions.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslprepkg.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslprintf.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslstartup.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslstubs.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslsupport.l soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/asltypes.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/asluuid.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/aslxref.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dtcompile.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dtcompiler.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dtexpress.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dtfield.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dtio.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dtparser.y soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dtsubtable.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dttable.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dttemplate.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dttemplate.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/dtutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/preprocess.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/prparser.l soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/prparser.y soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/prscan.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/compiler/prutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbcmds.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbconvert.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbdisply.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbexec.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbfileio.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbhistry.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbinput.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbmethod.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbnames.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbstats.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbtest.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/debugger/dbxface.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmcstyle.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmnames.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmopcode.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmresrc.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmresrcl.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmresrcl2.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmresrcs.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/disassembler/dmwalk.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dsargs.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dscontrol.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dsfield.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dsinit.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dsmethod.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dsobject.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dsutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dswload.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/dispatcher/dswload2.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/events/evgpe.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/events/evgpeinit.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/events/evregion.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exconfig.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exconvrt.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/excreate.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exdebug.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exdump.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exfield.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exfldio.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exmisc.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exnames.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exoparg2.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exoparg3.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exregion.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exresnte.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exresolv.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exstorob.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/executer/exutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/hardware/hwgpe.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/hardware/hwpci.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsaccess.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsconvert.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsdump.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nseval.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsinit.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsload.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsnames.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsparse.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsprepkg.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsrepair.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsrepair2.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nssearch.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsxfeval.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/namespace/nsxfname.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/parser/psargs.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/parser/psloop.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/parser/psobject.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/parser/psopinfo.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/parser/psparse.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/parser/psutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/parser/psxface.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/resources/rscreate.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/resources/rsdump.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/resources/rsmisc.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/resources/rsutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/resources/rsxface.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/tables/tbdata.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/tables/tbfadt.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/tables/tbfind.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/tables/tbinstal.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/tables/tbprint.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/tables/tbutils.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/tables/tbxface.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/tables/tbxfload.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utalloc.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utbuffer.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utcache.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utcopy.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utdebug.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utdelete.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utfileio.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/uthex.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utids.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utinit.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utmisc.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utosi.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utpredef.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utprint.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utstring.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/uttrack.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utxface.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utxferror.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/components/utilities/utxfinit.c soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acbuffer.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/accommon.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acconfig.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acdebug.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acdisasm.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acdispat.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acexcep.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acglobal.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acinterp.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/aclocal.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acmacros.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acnames.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acnamesp.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acobject.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acoutput.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acparser.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acpiosxf.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acpixf.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acpredef.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acstruct.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/actables.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/actbl.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/actbl1.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/actbl2.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/actbl3.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/actypes.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/acutils.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/platform/acenv.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/platform/acenvex.h soc2013/def/crashdump-head/sys/contrib/dev/acpica/include/platform/acgcc.h soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_ani.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_eeprom.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.h soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd_inc.h soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_misc.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_radar.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_radio.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_recv.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_spectral.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub_funcs.c soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub_funcs.h soc2013/def/crashdump-head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300reg.h soc2013/def/crashdump-head/sys/contrib/ipfilter/ (props changed) soc2013/def/crashdump-head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) soc2013/def/crashdump-head/sys/contrib/ipfilter/netinet/ip_nat.c soc2013/def/crashdump-head/sys/contrib/ipfilter/netinet/ip_state.c soc2013/def/crashdump-head/sys/contrib/rdma/krping/krping.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/compat/vchi_bsd.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/compat/vchi_bsd.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchi/vchi.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchi/vchi_common.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_2835_arm.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_arm.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_arm.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_cfg.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_connected.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_connected.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_core.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_core.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_if.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_ioctl.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kern_lib.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_pagelist.h soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_shim.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_util.c soc2013/def/crashdump-head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_util.h soc2013/def/crashdump-head/sys/crypto/aesni/aesencdec.h soc2013/def/crashdump-head/sys/crypto/aesni/aesni.c soc2013/def/crashdump-head/sys/crypto/aesni/aesni.h soc2013/def/crashdump-head/sys/crypto/aesni/aesni_ghash.c soc2013/def/crashdump-head/sys/crypto/sha2/sha256.h soc2013/def/crashdump-head/sys/crypto/sha2/sha256c.c soc2013/def/crashdump-head/sys/ddb/db_access.c soc2013/def/crashdump-head/sys/ddb/db_access.h soc2013/def/crashdump-head/sys/ddb/db_break.c soc2013/def/crashdump-head/sys/ddb/db_capture.c soc2013/def/crashdump-head/sys/ddb/db_command.c soc2013/def/crashdump-head/sys/ddb/db_examine.c soc2013/def/crashdump-head/sys/ddb/db_expr.c soc2013/def/crashdump-head/sys/ddb/db_input.c soc2013/def/crashdump-head/sys/ddb/db_main.c soc2013/def/crashdump-head/sys/ddb/db_print.c soc2013/def/crashdump-head/sys/ddb/db_ps.c soc2013/def/crashdump-head/sys/ddb/db_run.c soc2013/def/crashdump-head/sys/ddb/db_script.c soc2013/def/crashdump-head/sys/ddb/db_sym.c soc2013/def/crashdump-head/sys/ddb/db_sym.h soc2013/def/crashdump-head/sys/ddb/db_textdump.c soc2013/def/crashdump-head/sys/ddb/db_thread.c soc2013/def/crashdump-head/sys/ddb/db_variables.c soc2013/def/crashdump-head/sys/ddb/db_watch.c soc2013/def/crashdump-head/sys/ddb/db_write_cmd.c soc2013/def/crashdump-head/sys/ddb/ddb.h soc2013/def/crashdump-head/sys/dev/acpi_support/acpi_ibm.c soc2013/def/crashdump-head/sys/dev/acpica/Osd/OsdDebug.c soc2013/def/crashdump-head/sys/dev/acpica/Osd/OsdHardware.c soc2013/def/crashdump-head/sys/dev/acpica/acpi.c soc2013/def/crashdump-head/sys/dev/acpica/acpi_cpu.c soc2013/def/crashdump-head/sys/dev/acpica/acpi_package.c soc2013/def/crashdump-head/sys/dev/acpica/acpi_pcib.c soc2013/def/crashdump-head/sys/dev/acpica/acpi_throttle.c soc2013/def/crashdump-head/sys/dev/acpica/acpi_timer.c soc2013/def/crashdump-head/sys/dev/acpica/acpivar.h soc2013/def/crashdump-head/sys/dev/ahci/ahci.c soc2013/def/crashdump-head/sys/dev/ahci/ahci.h soc2013/def/crashdump-head/sys/dev/ahci/ahci_pci.c soc2013/def/crashdump-head/sys/dev/aic7xxx/aic79xx_pci.c soc2013/def/crashdump-head/sys/dev/altera/jtag_uart/altera_jtag_uart_tty.c soc2013/def/crashdump-head/sys/dev/arcmsr/arcmsr.c soc2013/def/crashdump-head/sys/dev/arcmsr/arcmsr.h soc2013/def/crashdump-head/sys/dev/ata/ata-all.c soc2013/def/crashdump-head/sys/dev/ata/ata-all.h soc2013/def/crashdump-head/sys/dev/ata/ata-lowlevel.c soc2013/def/crashdump-head/sys/dev/ata/chipsets/ata-intel.c soc2013/def/crashdump-head/sys/dev/ata/chipsets/ata-jmicron.c soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ah.c soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ah.h soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ah_devid.h soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ah_internal.h soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5210/ar5210.h soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5211/ar5211.h soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5212/ar5212.h soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5312/ar5312.h soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5416/ar5416.h soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c soc2013/def/crashdump-head/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h soc2013/def/crashdump-head/sys/dev/ath/ath_rate/sample/sample.c soc2013/def/crashdump-head/sys/dev/ath/ath_rate/sample/sample.h soc2013/def/crashdump-head/sys/dev/ath/if_ath.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_ahb.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_beacon.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_debug.h soc2013/def/crashdump-head/sys/dev/ath/if_ath_keycache.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_keycache.h soc2013/def/crashdump-head/sys/dev/ath/if_ath_misc.h soc2013/def/crashdump-head/sys/dev/ath/if_ath_pci.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_rx.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_rx.h soc2013/def/crashdump-head/sys/dev/ath/if_ath_rx_edma.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_sysctl.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_tdma.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_tx.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_tx.h soc2013/def/crashdump-head/sys/dev/ath/if_ath_tx_edma.c soc2013/def/crashdump-head/sys/dev/ath/if_ath_tx_ht.c soc2013/def/crashdump-head/sys/dev/ath/if_athvar.h soc2013/def/crashdump-head/sys/dev/atkbdc/atkbd.c soc2013/def/crashdump-head/sys/dev/atkbdc/psm.c soc2013/def/crashdump-head/sys/dev/beri/virtio/virtio_mmio_platform.c soc2013/def/crashdump-head/sys/dev/bwi/bwimac.c soc2013/def/crashdump-head/sys/dev/bwi/bwimac.h soc2013/def/crashdump-head/sys/dev/bwi/bwiphy.c soc2013/def/crashdump-head/sys/dev/bwi/bwirf.c soc2013/def/crashdump-head/sys/dev/bwi/if_bwi.c soc2013/def/crashdump-head/sys/dev/bwi/if_bwi_pci.c soc2013/def/crashdump-head/sys/dev/bwi/if_bwivar.h soc2013/def/crashdump-head/sys/dev/bwn/if_bwn.c soc2013/def/crashdump-head/sys/dev/bwn/if_bwnvar.h soc2013/def/crashdump-head/sys/dev/bxe/bxe.c soc2013/def/crashdump-head/sys/dev/bxe/bxe.h soc2013/def/crashdump-head/sys/dev/bxe/bxe_stats.c soc2013/def/crashdump-head/sys/dev/bxe/bxe_stats.h soc2013/def/crashdump-head/sys/dev/bxe/ecore_hsi.h soc2013/def/crashdump-head/sys/dev/bxe/ecore_reg.h soc2013/def/crashdump-head/sys/dev/bxe/ecore_sp.c soc2013/def/crashdump-head/sys/dev/ce/if_ce.c soc2013/def/crashdump-head/sys/dev/ciss/ciss.c soc2013/def/crashdump-head/sys/dev/cp/if_cp.c soc2013/def/crashdump-head/sys/dev/ctau/if_ct.c soc2013/def/crashdump-head/sys/dev/cx/if_cx.c soc2013/def/crashdump-head/sys/dev/cxgb/cxgb_main.c soc2013/def/crashdump-head/sys/dev/cxgb/cxgb_sge.c soc2013/def/crashdump-head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.c soc2013/def/crashdump-head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.c soc2013/def/crashdump-head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c soc2013/def/crashdump-head/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c soc2013/def/crashdump-head/sys/dev/cxgb/ulp/tom/cxgb_listen.c soc2013/def/crashdump-head/sys/dev/cxgbe/adapter.h soc2013/def/crashdump-head/sys/dev/cxgbe/common/t4_hw.c soc2013/def/crashdump-head/sys/dev/cxgbe/firmware/t4fw_cfg.txt soc2013/def/crashdump-head/sys/dev/cxgbe/firmware/t4fw_cfg_uwire.txt soc2013/def/crashdump-head/sys/dev/cxgbe/firmware/t4fw_interface.h soc2013/def/crashdump-head/sys/dev/cxgbe/firmware/t5fw_cfg.txt soc2013/def/crashdump-head/sys/dev/cxgbe/firmware/t5fw_cfg_uwire.txt soc2013/def/crashdump-head/sys/dev/cxgbe/iw_cxgbe/cm.c soc2013/def/crashdump-head/sys/dev/cxgbe/iw_cxgbe/device.c soc2013/def/crashdump-head/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h soc2013/def/crashdump-head/sys/dev/cxgbe/iw_cxgbe/qp.c soc2013/def/crashdump-head/sys/dev/cxgbe/t4_main.c soc2013/def/crashdump-head/sys/dev/cxgbe/t4_netmap.c soc2013/def/crashdump-head/sys/dev/cxgbe/t4_sge.c soc2013/def/crashdump-head/sys/dev/cxgbe/tom/t4_connect.c soc2013/def/crashdump-head/sys/dev/cxgbe/tom/t4_cpl_io.c soc2013/def/crashdump-head/sys/dev/cxgbe/tom/t4_ddp.c soc2013/def/crashdump-head/sys/dev/cxgbe/tom/t4_listen.c soc2013/def/crashdump-head/sys/dev/cxgbe/tom/t4_tom.c soc2013/def/crashdump-head/sys/dev/dcons/dcons_os.c soc2013/def/crashdump-head/sys/dev/de/if_de.c soc2013/def/crashdump-head/sys/dev/drm/drmP.h soc2013/def/crashdump-head/sys/dev/drm/drm_agpsupport.c soc2013/def/crashdump-head/sys/dev/drm/drm_bufs.c soc2013/def/crashdump-head/sys/dev/drm/drm_drv.c soc2013/def/crashdump-head/sys/dev/drm/drm_irq.c soc2013/def/crashdump-head/sys/dev/drm/i915_drv.c soc2013/def/crashdump-head/sys/dev/drm/mach64_drv.c soc2013/def/crashdump-head/sys/dev/drm/mga_drv.c soc2013/def/crashdump-head/sys/dev/drm/r128_drv.c soc2013/def/crashdump-head/sys/dev/drm/radeon_drv.c soc2013/def/crashdump-head/sys/dev/drm/savage_drv.c soc2013/def/crashdump-head/sys/dev/drm/sis_drv.c soc2013/def/crashdump-head/sys/dev/drm/tdfx_drv.c soc2013/def/crashdump-head/sys/dev/drm2/drmP.h soc2013/def/crashdump-head/sys/dev/drm2/drm_bufs.c soc2013/def/crashdump-head/sys/dev/drm2/drm_crtc.c soc2013/def/crashdump-head/sys/dev/drm2/drm_fops.c soc2013/def/crashdump-head/sys/dev/drm2/drm_irq.c soc2013/def/crashdump-head/sys/dev/drm2/drm_lock.c soc2013/def/crashdump-head/sys/dev/drm2/drm_pci.c soc2013/def/crashdump-head/sys/dev/drm2/drm_stub.c soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_debug.c soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_dma.c soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_drm.h soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_drv.c soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_drv.h soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_gem.c soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_gem_execbuffer.c soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_gem_gtt.c soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_gem_tiling.c soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_irq.c soc2013/def/crashdump-head/sys/dev/drm2/i915/i915_reg.h soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_crt.c soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_ddi.c soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_display.c soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_dp.c soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_drv.h soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_fb.c soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_iic.c soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_opregion.c soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_pm.c soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_ringbuffer.c soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_ringbuffer.h soc2013/def/crashdump-head/sys/dev/drm2/i915/intel_sdvo_regs.h soc2013/def/crashdump-head/sys/dev/drm2/radeon/radeon_device.c soc2013/def/crashdump-head/sys/dev/drm2/ttm/ttm_bo.c soc2013/def/crashdump-head/sys/dev/drm2/ttm/ttm_page_alloc.c soc2013/def/crashdump-head/sys/dev/dwc/if_dwc.c soc2013/def/crashdump-head/sys/dev/dwc/if_dwc.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_80003es2lan.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_80003es2lan.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_82540.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_82541.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_82541.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_82542.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_82543.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_82543.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_82571.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_82571.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_82575.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_82575.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_api.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_api.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_defines.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_hw.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_i210.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_i210.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_ich8lan.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_ich8lan.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_mac.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_mac.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_manage.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_manage.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_mbx.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_mbx.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_nvm.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_nvm.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_osdep.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_osdep.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_phy.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_phy.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_regs.h soc2013/def/crashdump-head/sys/dev/e1000/e1000_vf.c soc2013/def/crashdump-head/sys/dev/e1000/e1000_vf.h soc2013/def/crashdump-head/sys/dev/e1000/if_em.c soc2013/def/crashdump-head/sys/dev/e1000/if_em.h soc2013/def/crashdump-head/sys/dev/e1000/if_igb.c soc2013/def/crashdump-head/sys/dev/e1000/if_igb.h soc2013/def/crashdump-head/sys/dev/e1000/if_lem.c soc2013/def/crashdump-head/sys/dev/e1000/if_lem.h soc2013/def/crashdump-head/sys/dev/etherswitch/arswitch/arswitch_8327.c soc2013/def/crashdump-head/sys/dev/fdt/fdt_slicer.c soc2013/def/crashdump-head/sys/dev/fdt/simplebus.c soc2013/def/crashdump-head/sys/dev/fe/if_fe_cbus.c soc2013/def/crashdump-head/sys/dev/filemon/filemon.c soc2013/def/crashdump-head/sys/dev/filemon/filemon.h soc2013/def/crashdump-head/sys/dev/filemon/filemon_lock.c soc2013/def/crashdump-head/sys/dev/filemon/filemon_wrapper.c soc2013/def/crashdump-head/sys/dev/flash/mx25l.c soc2013/def/crashdump-head/sys/dev/glxsb/glxsb.c soc2013/def/crashdump-head/sys/dev/gpio/gpiobus.c soc2013/def/crashdump-head/sys/dev/gpio/gpioled.c soc2013/def/crashdump-head/sys/dev/gpio/ofw_gpiobus.c soc2013/def/crashdump-head/sys/dev/gxemul/cons/gxemul_cons.c soc2013/def/crashdump-head/sys/dev/hifn/hifn7751.c soc2013/def/crashdump-head/sys/dev/hpt27xx/README soc2013/def/crashdump-head/sys/dev/hpt27xx/amd64-elf.hpt27xx_lib.o.uu (contents, props changed) soc2013/def/crashdump-head/sys/dev/hpt27xx/array.h soc2013/def/crashdump-head/sys/dev/hpt27xx/him.h soc2013/def/crashdump-head/sys/dev/hpt27xx/himfuncs.h soc2013/def/crashdump-head/sys/dev/hpt27xx/hpt27xx_config.c soc2013/def/crashdump-head/sys/dev/hpt27xx/hpt27xx_config.h soc2013/def/crashdump-head/sys/dev/hpt27xx/hpt27xx_os_bsd.c soc2013/def/crashdump-head/sys/dev/hpt27xx/hpt27xx_osm_bsd.c soc2013/def/crashdump-head/sys/dev/hpt27xx/hptintf.h soc2013/def/crashdump-head/sys/dev/hpt27xx/i386-elf.hpt27xx_lib.o.uu soc2013/def/crashdump-head/sys/dev/hpt27xx/ldm.h soc2013/def/crashdump-head/sys/dev/hpt27xx/list.h soc2013/def/crashdump-head/sys/dev/hpt27xx/os_bsd.h soc2013/def/crashdump-head/sys/dev/hpt27xx/osm.h soc2013/def/crashdump-head/sys/dev/hptmv/hptproc.c soc2013/def/crashdump-head/sys/dev/hptnr/README soc2013/def/crashdump-head/sys/dev/hptnr/amd64-elf.hptnr_lib.o.uu soc2013/def/crashdump-head/sys/dev/hptnr/him.h soc2013/def/crashdump-head/sys/dev/hptnr/hptnr_config.c soc2013/def/crashdump-head/sys/dev/hptnr/hptnr_osm_bsd.c soc2013/def/crashdump-head/sys/dev/hptnr/i386-elf.hptnr_lib.o.uu soc2013/def/crashdump-head/sys/dev/hptnr/ldm.h soc2013/def/crashdump-head/sys/dev/hptnr/osm.h soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_amd.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_armv7.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_armv7.h soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_core.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_e500.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_intel.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_logging.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_mips.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_mips24k.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_mips74k.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_mod.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_mpc7xxx.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_octeon.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_piv.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_ppc970.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_ppro.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_soft.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_tsc.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_uncore.c soc2013/def/crashdump-head/sys/dev/hwpmc/hwpmc_xscale.c soc2013/def/crashdump-head/sys/dev/hwpmc/pmc_events.h soc2013/def/crashdump-head/sys/dev/hyperv/ (props changed) soc2013/def/crashdump-head/sys/dev/hyperv/include/hyperv.h soc2013/def/crashdump-head/sys/dev/hyperv/netvsc/hv_net_vsc.c soc2013/def/crashdump-head/sys/dev/hyperv/netvsc/hv_net_vsc.h soc2013/def/crashdump-head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c soc2013/def/crashdump-head/sys/dev/hyperv/netvsc/hv_rndis.h soc2013/def/crashdump-head/sys/dev/hyperv/netvsc/hv_rndis_filter.c soc2013/def/crashdump-head/sys/dev/hyperv/netvsc/hv_rndis_filter.h soc2013/def/crashdump-head/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c soc2013/def/crashdump-head/sys/dev/hyperv/storvsc/hv_vstorage.h soc2013/def/crashdump-head/sys/dev/hyperv/utilities/hv_kvp.c soc2013/def/crashdump-head/sys/dev/hyperv/utilities/hv_util.c soc2013/def/crashdump-head/sys/dev/hyperv/vmbus/hv_channel.c soc2013/def/crashdump-head/sys/dev/hyperv/vmbus/hv_channel_mgmt.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/hyperv/vmbus/hv_connection.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/hyperv/vmbus/hv_hv.c soc2013/def/crashdump-head/sys/dev/hyperv/vmbus/hv_ring_buffer.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/hyperv/vmbus/hv_vmbus_drv_freebsd.c soc2013/def/crashdump-head/sys/dev/hyperv/vmbus/hv_vmbus_priv.h soc2013/def/crashdump-head/sys/dev/ichsmb/ichsmb_pci.c soc2013/def/crashdump-head/sys/dev/ichwd/ichwd.c soc2013/def/crashdump-head/sys/dev/ichwd/ichwd.h soc2013/def/crashdump-head/sys/dev/if_ndis/if_ndis.c soc2013/def/crashdump-head/sys/dev/if_ndis/if_ndisvar.h soc2013/def/crashdump-head/sys/dev/iicbus/icee.c soc2013/def/crashdump-head/sys/dev/iicbus/iicbb.c soc2013/def/crashdump-head/sys/dev/iicbus/iicbus.c soc2013/def/crashdump-head/sys/dev/iicbus/iicbus.h soc2013/def/crashdump-head/sys/dev/iicbus/iicoc.c soc2013/def/crashdump-head/sys/dev/iicbus/iiconf.c soc2013/def/crashdump-head/sys/dev/iicbus/iiconf.h soc2013/def/crashdump-head/sys/dev/iicbus/iicsmb.c soc2013/def/crashdump-head/sys/dev/iicbus/pcf8563.c soc2013/def/crashdump-head/sys/dev/ipmi/ipmi_smbios.c soc2013/def/crashdump-head/sys/dev/ipmi/ipmivars.h soc2013/def/crashdump-head/sys/dev/ipw/if_ipw.c soc2013/def/crashdump-head/sys/dev/ipw/if_ipwvar.h soc2013/def/crashdump-head/sys/dev/isci/isci.c soc2013/def/crashdump-head/sys/dev/isci/isci_interrupt.c soc2013/def/crashdump-head/sys/dev/isci/isci_io_request.c soc2013/def/crashdump-head/sys/dev/iscsi/icl_soft.c soc2013/def/crashdump-head/sys/dev/iscsi/iscsi.c soc2013/def/crashdump-head/sys/dev/isp/isp.c soc2013/def/crashdump-head/sys/dev/isp/isp_freebsd.c soc2013/def/crashdump-head/sys/dev/isp/isp_freebsd.h soc2013/def/crashdump-head/sys/dev/isp/isp_library.c soc2013/def/crashdump-head/sys/dev/isp/isp_library.h soc2013/def/crashdump-head/sys/dev/isp/isp_pci.c soc2013/def/crashdump-head/sys/dev/isp/isp_sbus.c soc2013/def/crashdump-head/sys/dev/isp/isp_stds.h soc2013/def/crashdump-head/sys/dev/isp/isp_target.c soc2013/def/crashdump-head/sys/dev/isp/isp_target.h soc2013/def/crashdump-head/sys/dev/isp/ispmbox.h soc2013/def/crashdump-head/sys/dev/isp/ispreg.h soc2013/def/crashdump-head/sys/dev/isp/ispvar.h soc2013/def/crashdump-head/sys/dev/ispfw/asm_1040.h soc2013/def/crashdump-head/sys/dev/ispfw/asm_1080.h soc2013/def/crashdump-head/sys/dev/ispfw/asm_12160.h soc2013/def/crashdump-head/sys/dev/ispfw/asm_2200.h soc2013/def/crashdump-head/sys/dev/ispfw/asm_2300.h soc2013/def/crashdump-head/sys/dev/ispfw/asm_2322.h soc2013/def/crashdump-head/sys/dev/ispfw/asm_2400.h soc2013/def/crashdump-head/sys/dev/ispfw/asm_2500.h soc2013/def/crashdump-head/sys/dev/ispfw/ispfw.c soc2013/def/crashdump-head/sys/dev/iwi/if_iwi.c soc2013/def/crashdump-head/sys/dev/iwi/if_iwivar.h soc2013/def/crashdump-head/sys/dev/iwn/if_iwn.c soc2013/def/crashdump-head/sys/dev/iwn/if_iwn_ioctl.h soc2013/def/crashdump-head/sys/dev/iwn/if_iwnreg.h soc2013/def/crashdump-head/sys/dev/iwn/if_iwnvar.h soc2013/def/crashdump-head/sys/dev/ixgbe/if_ix.c soc2013/def/crashdump-head/sys/dev/ixgbe/if_ixv.c soc2013/def/crashdump-head/sys/dev/ixgbe/ix_txrx.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_82598.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_82598.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_82599.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_82599.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_api.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_api.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_common.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_common.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_dcb.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_dcb.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_dcb_82598.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_dcb_82598.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_dcb_82599.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_dcb_82599.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_mbx.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_mbx.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_osdep.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_phy.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_phy.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_type.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_vf.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_vf.h soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_x540.c soc2013/def/crashdump-head/sys/dev/ixgbe/ixgbe_x540.h soc2013/def/crashdump-head/sys/dev/ixl/i40e_adminq.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_adminq.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_adminq_cmd.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_alloc.h (props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_common.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_hmc.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_hmc.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_lan_hmc.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_lan_hmc.h (props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_nvm.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_osdep.c (props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_osdep.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_prototype.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_register.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_status.h (props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_type.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/i40e_virtchnl.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/if_ixl.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/ixl/if_ixlv.c soc2013/def/crashdump-head/sys/dev/ixl/ixl.h soc2013/def/crashdump-head/sys/dev/ixl/ixl_txrx.c (props changed) soc2013/def/crashdump-head/sys/dev/ixl/ixlv.h soc2013/def/crashdump-head/sys/dev/ixl/ixlvc.c soc2013/def/crashdump-head/sys/dev/led/led.c soc2013/def/crashdump-head/sys/dev/malo/if_malo.c soc2013/def/crashdump-head/sys/dev/malo/if_malo.h soc2013/def/crashdump-head/sys/dev/malo/if_malo_pci.c soc2013/def/crashdump-head/sys/dev/md/md.c soc2013/def/crashdump-head/sys/dev/mfi/mfi.c soc2013/def/crashdump-head/sys/dev/mge/if_mge.c soc2013/def/crashdump-head/sys/dev/mge/if_mgevar.h soc2013/def/crashdump-head/sys/dev/mii/brgphy.c soc2013/def/crashdump-head/sys/dev/mii/mii.h soc2013/def/crashdump-head/sys/dev/mii/miidevs soc2013/def/crashdump-head/sys/dev/mmc/host/dwmmc.c soc2013/def/crashdump-head/sys/dev/mmc/mmc.c soc2013/def/crashdump-head/sys/dev/mmc/mmcsd.c soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_cnfg.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_hbd.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_history.txt soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_init.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_ioc.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_ra.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_raid.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_sas.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_targ.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_tool.h soc2013/def/crashdump-head/sys/dev/mpr/mpi/mpi2_type.h soc2013/def/crashdump-head/sys/dev/mpr/mpr.c soc2013/def/crashdump-head/sys/dev/mpr/mpr_config.c soc2013/def/crashdump-head/sys/dev/mpr/mpr_ioctl.h soc2013/def/crashdump-head/sys/dev/mpr/mpr_mapping.c soc2013/def/crashdump-head/sys/dev/mpr/mpr_mapping.h soc2013/def/crashdump-head/sys/dev/mpr/mpr_pci.c soc2013/def/crashdump-head/sys/dev/mpr/mpr_sas.c soc2013/def/crashdump-head/sys/dev/mpr/mpr_sas.h soc2013/def/crashdump-head/sys/dev/mpr/mpr_sas_lsi.c soc2013/def/crashdump-head/sys/dev/mpr/mpr_user.c soc2013/def/crashdump-head/sys/dev/mpr/mprvar.h soc2013/def/crashdump-head/sys/dev/mps/mps.c soc2013/def/crashdump-head/sys/dev/mps/mps_config.c soc2013/def/crashdump-head/sys/dev/mps/mpsvar.h soc2013/def/crashdump-head/sys/dev/mpt/mpt.c soc2013/def/crashdump-head/sys/dev/mpt/mpt.h soc2013/def/crashdump-head/sys/dev/mrsas/mrsas.c soc2013/def/crashdump-head/sys/dev/mrsas/mrsas.h soc2013/def/crashdump-head/sys/dev/mrsas/mrsas_cam.c soc2013/def/crashdump-head/sys/dev/mrsas/mrsas_fp.c soc2013/def/crashdump-head/sys/dev/mrsas/mrsas_ioctl.c soc2013/def/crashdump-head/sys/dev/mrsas/mrsas_ioctl.h soc2013/def/crashdump-head/sys/dev/mrsas/mrsas_linux.c soc2013/def/crashdump-head/sys/dev/msk/if_mskreg.h soc2013/def/crashdump-head/sys/dev/mwl/if_mwl.c soc2013/def/crashdump-head/sys/dev/mwl/if_mwl_pci.c soc2013/def/crashdump-head/sys/dev/mwl/if_mwlvar.h soc2013/def/crashdump-head/sys/dev/nand/nand_generic.c soc2013/def/crashdump-head/sys/dev/nand/nandsim_chip.c soc2013/def/crashdump-head/sys/dev/netmap/if_em_netmap.h soc2013/def/crashdump-head/sys/dev/netmap/if_igb_netmap.h soc2013/def/crashdump-head/sys/dev/netmap/if_ixl_netmap.h soc2013/def/crashdump-head/sys/dev/netmap/if_lem_netmap.h soc2013/def/crashdump-head/sys/dev/netmap/if_re_netmap.h soc2013/def/crashdump-head/sys/dev/netmap/if_vtnet_netmap.h soc2013/def/crashdump-head/sys/dev/netmap/ixgbe_netmap.h soc2013/def/crashdump-head/sys/dev/netmap/netmap.c soc2013/def/crashdump-head/sys/dev/netmap/netmap_freebsd.c soc2013/def/crashdump-head/sys/dev/netmap/netmap_generic.c soc2013/def/crashdump-head/sys/dev/netmap/netmap_kern.h soc2013/def/crashdump-head/sys/dev/netmap/netmap_mem2.c soc2013/def/crashdump-head/sys/dev/netmap/netmap_mem2.h soc2013/def/crashdump-head/sys/dev/netmap/netmap_monitor.c soc2013/def/crashdump-head/sys/dev/netmap/netmap_pipe.c soc2013/def/crashdump-head/sys/dev/netmap/netmap_vale.c soc2013/def/crashdump-head/sys/dev/ntb/if_ntb/if_ntb.c soc2013/def/crashdump-head/sys/dev/ntb/ntb_hw/ntb_hw.c soc2013/def/crashdump-head/sys/dev/ntb/ntb_hw/ntb_hw.h soc2013/def/crashdump-head/sys/dev/ntb/ntb_hw/ntb_regs.h soc2013/def/crashdump-head/sys/dev/nvd/nvd.c soc2013/def/crashdump-head/sys/dev/nvme/nvme.c soc2013/def/crashdump-head/sys/dev/nvme/nvme.h soc2013/def/crashdump-head/sys/dev/nvme/nvme_ctrlr.c soc2013/def/crashdump-head/sys/dev/nvme/nvme_ns.c soc2013/def/crashdump-head/sys/dev/nxge/if_nxge.c soc2013/def/crashdump-head/sys/dev/nxge/xgehal/xgehal-fifo.c soc2013/def/crashdump-head/sys/dev/nxge/xgehal/xgehal-ring.c soc2013/def/crashdump-head/sys/dev/oce/oce_if.c soc2013/def/crashdump-head/sys/dev/ofw/ofw_bus_subr.c soc2013/def/crashdump-head/sys/dev/ofw/ofw_bus_subr.h soc2013/def/crashdump-head/sys/dev/ofw/ofw_cpu.c soc2013/def/crashdump-head/sys/dev/ofw/ofw_iicbus.c soc2013/def/crashdump-head/sys/dev/ofw/ofwbus.c soc2013/def/crashdump-head/sys/dev/patm/if_patm_attach.c soc2013/def/crashdump-head/sys/dev/pccbb/pccbb.c soc2013/def/crashdump-head/sys/dev/pccbb/pccbb_pci.c soc2013/def/crashdump-head/sys/dev/pcf/pcf.c soc2013/def/crashdump-head/sys/dev/pci/pci.c soc2013/def/crashdump-head/sys/dev/pci/pci_if.m soc2013/def/crashdump-head/sys/dev/pci/pci_iov.c soc2013/def/crashdump-head/sys/dev/pci/pci_pci.c soc2013/def/crashdump-head/sys/dev/pci/pcib_if.m soc2013/def/crashdump-head/sys/dev/pci/pcib_private.h soc2013/def/crashdump-head/sys/dev/pci/pcireg.h soc2013/def/crashdump-head/sys/dev/pci/pcivar.h soc2013/def/crashdump-head/sys/dev/pci/vga_pci.c soc2013/def/crashdump-head/sys/dev/proto/proto.h soc2013/def/crashdump-head/sys/dev/proto/proto_bus_pci.c soc2013/def/crashdump-head/sys/dev/proto/proto_core.c soc2013/def/crashdump-head/sys/dev/proto/proto_dev.h soc2013/def/crashdump-head/sys/dev/psci/psci.c soc2013/def/crashdump-head/sys/dev/qlxgb/qla_os.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_dbg.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_dbg.h soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_def.h soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_glbl.h soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_hw.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_hw.h soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_inline.h soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_ioctl.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_ioctl.h soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_isr.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_misc.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_os.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_os.h soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_reset.c soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_tmplt.h soc2013/def/crashdump-head/sys/dev/qlxgbe/ql_ver.h soc2013/def/crashdump-head/sys/dev/qlxge/qls_os.c soc2013/def/crashdump-head/sys/dev/ral/if_ral_pci.c soc2013/def/crashdump-head/sys/dev/ral/rt2560.c soc2013/def/crashdump-head/sys/dev/ral/rt2560var.h soc2013/def/crashdump-head/sys/dev/ral/rt2661.c soc2013/def/crashdump-head/sys/dev/ral/rt2661var.h soc2013/def/crashdump-head/sys/dev/ral/rt2860.c soc2013/def/crashdump-head/sys/dev/ral/rt2860var.h soc2013/def/crashdump-head/sys/dev/random/build.sh soc2013/def/crashdump-head/sys/dev/random/fortuna.c soc2013/def/crashdump-head/sys/dev/random/fortuna.h soc2013/def/crashdump-head/sys/dev/random/hash.c soc2013/def/crashdump-head/sys/dev/random/hash.h soc2013/def/crashdump-head/sys/dev/random/ivy.c soc2013/def/crashdump-head/sys/dev/random/nehemiah.c soc2013/def/crashdump-head/sys/dev/random/random_harvestq.c soc2013/def/crashdump-head/sys/dev/random/random_harvestq.h soc2013/def/crashdump-head/sys/dev/random/randomdev.c soc2013/def/crashdump-head/sys/dev/random/randomdev.h soc2013/def/crashdump-head/sys/dev/random/uint128.h soc2013/def/crashdump-head/sys/dev/random/unit_test.c soc2013/def/crashdump-head/sys/dev/random/unit_test.h soc2013/def/crashdump-head/sys/dev/random/yarrow.c soc2013/def/crashdump-head/sys/dev/random/yarrow.h soc2013/def/crashdump-head/sys/dev/re/if_re.c soc2013/def/crashdump-head/sys/dev/rl/if_rlreg.h soc2013/def/crashdump-head/sys/dev/rndtest/rndtest.c soc2013/def/crashdump-head/sys/dev/safe/safe.c soc2013/def/crashdump-head/sys/dev/sdhci/sdhci.c soc2013/def/crashdump-head/sys/dev/sdhci/sdhci.h soc2013/def/crashdump-head/sys/dev/sdhci/sdhci_pci.c soc2013/def/crashdump-head/sys/dev/sfxge/common/efsys.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_bootcfg.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_ev.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_filter.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_impl.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_intr.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_mac.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_mcdi.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_mcdi.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_mon.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_nic.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_nvram.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_phy.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_port.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_regs.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_regs_ef10.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_regs_mcdi.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_regs_pci.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_rx.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_sram.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_tx.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_types.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_vpd.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/efx_wol.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_flash.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_impl.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_mac.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_nic.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_nvram.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_phy.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_sram.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/common/siena_vpd.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_dma.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_ev.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_intr.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_mcdi.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_port.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_rx.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_rx.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_tx.c (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_tx.h (contents, props changed) soc2013/def/crashdump-head/sys/dev/sfxge/sfxge_version.h soc2013/def/crashdump-head/sys/dev/smbus/smb.c soc2013/def/crashdump-head/sys/dev/smbus/smb.h soc2013/def/crashdump-head/sys/dev/smbus/smbconf.h soc2013/def/crashdump-head/sys/dev/smbus/smbus.c soc2013/def/crashdump-head/sys/dev/smbus/smbus.h soc2013/def/crashdump-head/sys/dev/smbus/smbus_if.m soc2013/def/crashdump-head/sys/dev/sound/midi/midi.c soc2013/def/crashdump-head/sys/dev/sound/midi/mpu401.c soc2013/def/crashdump-head/sys/dev/sound/midi/sequencer.c soc2013/def/crashdump-head/sys/dev/sound/pci/atiixp.c soc2013/def/crashdump-head/sys/dev/sound/pci/es137x.c soc2013/def/crashdump-head/sys/dev/sound/pci/hda/hdaa.c soc2013/def/crashdump-head/sys/dev/sound/pci/hda/hdaa_patches.c soc2013/def/crashdump-head/sys/dev/sound/pci/hda/hdac.c soc2013/def/crashdump-head/sys/dev/sound/pci/via8233.c soc2013/def/crashdump-head/sys/dev/sound/pcm/channel.c soc2013/def/crashdump-head/sys/dev/sound/pcm/channel.h soc2013/def/crashdump-head/sys/dev/sound/pcm/dsp.c soc2013/def/crashdump-head/sys/dev/sound/pcm/feeder_chain.c soc2013/def/crashdump-head/sys/dev/sound/pcm/sound.h soc2013/def/crashdump-head/sys/dev/sound/usb/uaudio.c soc2013/def/crashdump-head/sys/dev/sym/sym_hipd.c soc2013/def/crashdump-head/sys/dev/syscons/scmouse.c soc2013/def/crashdump-head/sys/dev/syscons/syscons.c soc2013/def/crashdump-head/sys/dev/ti/if_ti.c soc2013/def/crashdump-head/sys/dev/twa/tw_osl_freebsd.c soc2013/def/crashdump-head/sys/dev/tws/tws.c soc2013/def/crashdump-head/sys/dev/uart/uart_bus.h soc2013/def/crashdump-head/sys/dev/uart/uart_bus_pci.c soc2013/def/crashdump-head/sys/dev/uart/uart_core.c soc2013/def/crashdump-head/sys/dev/uart/uart_cpu_fdt.c soc2013/def/crashdump-head/sys/dev/uart/uart_dev_ns8250.c soc2013/def/crashdump-head/sys/dev/uart/uart_dev_ti8250.c soc2013/def/crashdump-head/sys/dev/uart/uart_tty.c soc2013/def/crashdump-head/sys/dev/ubsec/ubsec.c soc2013/def/crashdump-head/sys/dev/usb/controller/dwc_otg.c soc2013/def/crashdump-head/sys/dev/usb/controller/dwc_otg.h soc2013/def/crashdump-head/sys/dev/usb/controller/dwc_otgreg.h soc2013/def/crashdump-head/sys/dev/usb/controller/uhci.h soc2013/def/crashdump-head/sys/dev/usb/controller/uhci_pci.c soc2013/def/crashdump-head/sys/dev/usb/controller/usb_controller.c soc2013/def/crashdump-head/sys/dev/usb/controller/xhci.c soc2013/def/crashdump-head/sys/dev/usb/controller/xhci_pci.c soc2013/def/crashdump-head/sys/dev/usb/input/ukbd.c soc2013/def/crashdump-head/sys/dev/usb/input/wsp.c soc2013/def/crashdump-head/sys/dev/usb/net/if_cdce.c soc2013/def/crashdump-head/sys/dev/usb/net/if_urndis.c soc2013/def/crashdump-head/sys/dev/usb/quirk/usb_quirk.c soc2013/def/crashdump-head/sys/dev/usb/quirk/usb_quirk.h soc2013/def/crashdump-head/sys/dev/usb/serial/u3g.c soc2013/def/crashdump-head/sys/dev/usb/serial/uftdi.c soc2013/def/crashdump-head/sys/dev/usb/serial/uftdi_reg.h soc2013/def/crashdump-head/sys/dev/usb/serial/usb_serial.c soc2013/def/crashdump-head/sys/dev/usb/template/usb_template.c soc2013/def/crashdump-head/sys/dev/usb/template/usb_template.h soc2013/def/crashdump-head/sys/dev/usb/uftdiio.h soc2013/def/crashdump-head/sys/dev/usb/usb_bus.h soc2013/def/crashdump-head/sys/dev/usb/usb_busdma.c soc2013/def/crashdump-head/sys/dev/usb/usb_busdma.h soc2013/def/crashdump-head/sys/dev/usb/usb_dev.c soc2013/def/crashdump-head/sys/dev/usb/usb_device.c soc2013/def/crashdump-head/sys/dev/usb/usb_dynamic.c soc2013/def/crashdump-head/sys/dev/usb/usb_dynamic.h soc2013/def/crashdump-head/sys/dev/usb/usb_hub.c soc2013/def/crashdump-head/sys/dev/usb/usb_ioctl.h soc2013/def/crashdump-head/sys/dev/usb/usb_msctest.c soc2013/def/crashdump-head/sys/dev/usb/usb_msctest.h soc2013/def/crashdump-head/sys/dev/usb/usb_pf.c soc2013/def/crashdump-head/sys/dev/usb/usb_process.h soc2013/def/crashdump-head/sys/dev/usb/usb_transfer.c soc2013/def/crashdump-head/sys/dev/usb/usbdevs soc2013/def/crashdump-head/sys/dev/usb/usbdi.h soc2013/def/crashdump-head/sys/dev/usb/video/udl.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_rsu.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_rsureg.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_rum.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_rumreg.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_rumvar.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_run.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_runreg.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_runvar.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_uath.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_uathvar.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_upgt.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_upgtvar.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_ural.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_uralvar.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_urtw.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_urtwn.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_urtwnreg.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_urtwvar.h soc2013/def/crashdump-head/sys/dev/usb/wlan/if_zyd.c soc2013/def/crashdump-head/sys/dev/usb/wlan/if_zydreg.h soc2013/def/crashdump-head/sys/dev/videomode/videomode.h soc2013/def/crashdump-head/sys/dev/virtio/mmio/virtio_mmio.c soc2013/def/crashdump-head/sys/dev/virtio/mmio/virtio_mmio.h soc2013/def/crashdump-head/sys/dev/virtio/mmio/virtio_mmio_if.m soc2013/def/crashdump-head/sys/dev/virtio/network/if_vtnet.c soc2013/def/crashdump-head/sys/dev/virtio/random/virtio_random.c soc2013/def/crashdump-head/sys/dev/vmware/vmxnet3/if_vmx.c soc2013/def/crashdump-head/sys/dev/vt/colors/vt_termcolors.c soc2013/def/crashdump-head/sys/dev/vt/hw/efifb/efifb.c soc2013/def/crashdump-head/sys/dev/vt/hw/fb/vt_early_fb.c soc2013/def/crashdump-head/sys/dev/vt/hw/fb/vt_fb.c soc2013/def/crashdump-head/sys/dev/vt/hw/vga/vt_vga.c soc2013/def/crashdump-head/sys/dev/vt/hw/vga/vt_vga_reg.h soc2013/def/crashdump-head/sys/dev/vt/vt.h soc2013/def/crashdump-head/sys/dev/vt/vt_core.c soc2013/def/crashdump-head/sys/dev/vt/vt_sysmouse.c soc2013/def/crashdump-head/sys/dev/watchdog/watchdog.c soc2013/def/crashdump-head/sys/dev/wi/if_wi.c soc2013/def/crashdump-head/sys/dev/wi/if_wi_macio.c soc2013/def/crashdump-head/sys/dev/wi/if_wi_pccard.c soc2013/def/crashdump-head/sys/dev/wi/if_wi_pci.c soc2013/def/crashdump-head/sys/dev/wi/if_wivar.h soc2013/def/crashdump-head/sys/dev/wpi/if_wpi.c soc2013/def/crashdump-head/sys/dev/wpi/if_wpi_debug.h soc2013/def/crashdump-head/sys/dev/wpi/if_wpireg.h soc2013/def/crashdump-head/sys/dev/wpi/if_wpivar.h soc2013/def/crashdump-head/sys/dev/wtap/if_wtap.c soc2013/def/crashdump-head/sys/dev/wtap/if_wtapvar.h soc2013/def/crashdump-head/sys/dev/wtap/wtap_hal/hal.c soc2013/def/crashdump-head/sys/dev/xen/balloon/balloon.c soc2013/def/crashdump-head/sys/dev/xen/blkback/blkback.c soc2013/def/crashdump-head/sys/dev/xen/blkfront/blkfront.c soc2013/def/crashdump-head/sys/dev/xen/blkfront/block.h soc2013/def/crashdump-head/sys/dev/xen/control/control.c soc2013/def/crashdump-head/sys/dev/xen/grant_table/grant_table.c soc2013/def/crashdump-head/sys/dev/xen/netback/netback.c soc2013/def/crashdump-head/sys/dev/xen/netfront/netfront.c soc2013/def/crashdump-head/sys/dev/xen/pcifront/pcifront.c soc2013/def/crashdump-head/sys/dev/xen/privcmd/privcmd.c soc2013/def/crashdump-head/sys/dev/xen/xenpci/xenpci.c soc2013/def/crashdump-head/sys/dev/xen/xenstore/xenstore.c soc2013/def/crashdump-head/sys/fs/devfs/devfs_vfsops.c soc2013/def/crashdump-head/sys/fs/devfs/devfs_vnops.c soc2013/def/crashdump-head/sys/fs/ext2fs/ext2_subr.c soc2013/def/crashdump-head/sys/fs/ext2fs/ext2_vnops.c soc2013/def/crashdump-head/sys/fs/fdescfs/fdesc_vfsops.c soc2013/def/crashdump-head/sys/fs/fdescfs/fdesc_vnops.c soc2013/def/crashdump-head/sys/fs/fifofs/fifo_vnops.c soc2013/def/crashdump-head/sys/fs/nfs/nfs.h soc2013/def/crashdump-head/sys/fs/nfs/nfs_commonacl.c soc2013/def/crashdump-head/sys/fs/nfs/nfs_commonport.c soc2013/def/crashdump-head/sys/fs/nfs/nfs_commonsubs.c soc2013/def/crashdump-head/sys/fs/nfs/nfs_var.h soc2013/def/crashdump-head/sys/fs/nfs/nfsdport.h soc2013/def/crashdump-head/sys/fs/nfs/nfsport.h soc2013/def/crashdump-head/sys/fs/nfs/nfsrvstate.h soc2013/def/crashdump-head/sys/fs/nfsclient/nfs_clbio.c soc2013/def/crashdump-head/sys/fs/nfsclient/nfs_clnode.c soc2013/def/crashdump-head/sys/fs/nfsclient/nfs_clport.c soc2013/def/crashdump-head/sys/fs/nfsclient/nfs_clrpcops.c soc2013/def/crashdump-head/sys/fs/nfsclient/nfs_clvfsops.c soc2013/def/crashdump-head/sys/fs/nfsclient/nfs_clvnops.c soc2013/def/crashdump-head/sys/fs/nfsserver/nfs_nfsdkrpc.c soc2013/def/crashdump-head/sys/fs/nfsserver/nfs_nfsdport.c soc2013/def/crashdump-head/sys/fs/nfsserver/nfs_nfsdserv.c soc2013/def/crashdump-head/sys/fs/nfsserver/nfs_nfsdsocket.c soc2013/def/crashdump-head/sys/fs/nfsserver/nfs_nfsdstate.c soc2013/def/crashdump-head/sys/fs/nfsserver/nfs_nfsdsubs.c soc2013/def/crashdump-head/sys/fs/nullfs/null_vfsops.c soc2013/def/crashdump-head/sys/fs/procfs/procfs_ctl.c soc2013/def/crashdump-head/sys/fs/procfs/procfs_dbregs.c soc2013/def/crashdump-head/sys/fs/procfs/procfs_fpregs.c soc2013/def/crashdump-head/sys/fs/procfs/procfs_ioctl.c soc2013/def/crashdump-head/sys/fs/procfs/procfs_map.c soc2013/def/crashdump-head/sys/fs/pseudofs/pseudofs.c soc2013/def/crashdump-head/sys/fs/tmpfs/tmpfs_subr.c soc2013/def/crashdump-head/sys/fs/tmpfs/tmpfs_vfsops.c soc2013/def/crashdump-head/sys/fs/unionfs/union_vfsops.c soc2013/def/crashdump-head/sys/gdb/gdb_cons.c soc2013/def/crashdump-head/sys/geom/eli/g_eli.c soc2013/def/crashdump-head/sys/geom/eli/g_eli.h soc2013/def/crashdump-head/sys/geom/eli/g_eli_ctl.c soc2013/def/crashdump-head/sys/geom/eli/g_eli_integrity.c soc2013/def/crashdump-head/sys/geom/eli/g_eli_privacy.c soc2013/def/crashdump-head/sys/geom/gate/g_gate.c soc2013/def/crashdump-head/sys/geom/geom_dev.c soc2013/def/crashdump-head/sys/geom/geom_flashmap.c soc2013/def/crashdump-head/sys/geom/geom_io.c soc2013/def/crashdump-head/sys/geom/journal/g_journal.c soc2013/def/crashdump-head/sys/geom/label/g_label.c soc2013/def/crashdump-head/sys/geom/label/g_label.h soc2013/def/crashdump-head/sys/geom/label/g_label_iso9660.c soc2013/def/crashdump-head/sys/geom/label/g_label_msdosfs.c soc2013/def/crashdump-head/sys/geom/mirror/g_mirror.c soc2013/def/crashdump-head/sys/geom/nop/g_nop.c soc2013/def/crashdump-head/sys/geom/nop/g_nop.h soc2013/def/crashdump-head/sys/geom/part/g_part.c soc2013/def/crashdump-head/sys/geom/part/g_part_gpt.c soc2013/def/crashdump-head/sys/geom/part/g_part_mbr.c soc2013/def/crashdump-head/sys/geom/raid/g_raid.c soc2013/def/crashdump-head/sys/geom/raid/md_intel.c soc2013/def/crashdump-head/sys/geom/raid/md_jmicron.c soc2013/def/crashdump-head/sys/geom/raid/md_nvidia.c soc2013/def/crashdump-head/sys/geom/raid/md_sii.c soc2013/def/crashdump-head/sys/geom/raid3/g_raid3.c soc2013/def/crashdump-head/sys/geom/sched/gs_rr.c soc2013/def/crashdump-head/sys/geom/uncompress/g_uncompress.c soc2013/def/crashdump-head/sys/geom/uzip/g_uzip.c soc2013/def/crashdump-head/sys/gnu/fs/reiserfs/reiserfs_vfsops.c soc2013/def/crashdump-head/sys/i386/acpica/acpi_machdep.c soc2013/def/crashdump-head/sys/i386/conf/DEFAULTS soc2013/def/crashdump-head/sys/i386/conf/GENERIC soc2013/def/crashdump-head/sys/i386/conf/NOTES soc2013/def/crashdump-head/sys/i386/conf/XBOX soc2013/def/crashdump-head/sys/i386/i386/apic_vector.s soc2013/def/crashdump-head/sys/i386/i386/db_disasm.c soc2013/def/crashdump-head/sys/i386/i386/db_trace.c soc2013/def/crashdump-head/sys/i386/i386/elf_machdep.c soc2013/def/crashdump-head/sys/i386/i386/exception.s soc2013/def/crashdump-head/sys/i386/i386/gdb_machdep.c soc2013/def/crashdump-head/sys/i386/i386/genassym.c soc2013/def/crashdump-head/sys/i386/i386/initcpu.c soc2013/def/crashdump-head/sys/i386/i386/locore.s soc2013/def/crashdump-head/sys/i386/i386/machdep.c soc2013/def/crashdump-head/sys/i386/i386/minidump_machdep.c soc2013/def/crashdump-head/sys/i386/i386/mp_machdep.c soc2013/def/crashdump-head/sys/i386/i386/mp_watchdog.c soc2013/def/crashdump-head/sys/i386/i386/pmap.c soc2013/def/crashdump-head/sys/i386/i386/ptrace_machdep.c soc2013/def/crashdump-head/sys/i386/i386/support.s soc2013/def/crashdump-head/sys/i386/i386/swtch.s soc2013/def/crashdump-head/sys/i386/i386/sys_machdep.c soc2013/def/crashdump-head/sys/i386/i386/trap.c soc2013/def/crashdump-head/sys/i386/i386/vm_machdep.c soc2013/def/crashdump-head/sys/i386/ibcs2/ibcs2_misc.c soc2013/def/crashdump-head/sys/i386/ibcs2/ibcs2_sysvec.c soc2013/def/crashdump-head/sys/i386/include/asmacros.h soc2013/def/crashdump-head/sys/i386/include/atomic.h soc2013/def/crashdump-head/sys/i386/include/cpufunc.h soc2013/def/crashdump-head/sys/i386/include/frame.h soc2013/def/crashdump-head/sys/i386/include/gdb_machdep.h soc2013/def/crashdump-head/sys/i386/include/in_cksum.h soc2013/def/crashdump-head/sys/i386/include/intr_machdep.h soc2013/def/crashdump-head/sys/i386/include/md_var.h soc2013/def/crashdump-head/sys/i386/include/npx.h soc2013/def/crashdump-head/sys/i386/include/param.h soc2013/def/crashdump-head/sys/i386/include/pcb.h soc2013/def/crashdump-head/sys/i386/include/pcpu.h soc2013/def/crashdump-head/sys/i386/include/pmap.h soc2013/def/crashdump-head/sys/i386/include/pmc_mdep.h soc2013/def/crashdump-head/sys/i386/include/segments.h soc2013/def/crashdump-head/sys/i386/include/smp.h soc2013/def/crashdump-head/sys/i386/include/stack.h soc2013/def/crashdump-head/sys/i386/include/vmparam.h soc2013/def/crashdump-head/sys/i386/include/xen/hypercall.h soc2013/def/crashdump-head/sys/i386/include/xen/xen-os.h soc2013/def/crashdump-head/sys/i386/isa/npx.c soc2013/def/crashdump-head/sys/i386/linux/imgact_linux.c soc2013/def/crashdump-head/sys/i386/linux/linux.h soc2013/def/crashdump-head/sys/i386/linux/linux_dummy.c soc2013/def/crashdump-head/sys/i386/linux/linux_genassym.c soc2013/def/crashdump-head/sys/i386/linux/linux_locore.s soc2013/def/crashdump-head/sys/i386/linux/linux_machdep.c soc2013/def/crashdump-head/sys/i386/linux/linux_proto.h soc2013/def/crashdump-head/sys/i386/linux/linux_ptrace.c soc2013/def/crashdump-head/sys/i386/linux/linux_syscall.h soc2013/def/crashdump-head/sys/i386/linux/linux_syscalls.c soc2013/def/crashdump-head/sys/i386/linux/linux_sysent.c soc2013/def/crashdump-head/sys/i386/linux/linux_systrace_args.c soc2013/def/crashdump-head/sys/i386/linux/linux_sysvec.c soc2013/def/crashdump-head/sys/i386/linux/syscalls.master soc2013/def/crashdump-head/sys/i386/pci/pci_cfgreg.c soc2013/def/crashdump-head/sys/i386/pci/pci_pir.c soc2013/def/crashdump-head/sys/kern/Make.tags.inc soc2013/def/crashdump-head/sys/kern/bus_if.m soc2013/def/crashdump-head/sys/kern/genassym.sh soc2013/def/crashdump-head/sys/kern/imgact_aout.c soc2013/def/crashdump-head/sys/kern/imgact_binmisc.c soc2013/def/crashdump-head/sys/kern/imgact_elf.c soc2013/def/crashdump-head/sys/kern/imgact_gzip.c soc2013/def/crashdump-head/sys/kern/init_main.c soc2013/def/crashdump-head/sys/kern/init_sysent.c soc2013/def/crashdump-head/sys/kern/kern_clocksource.c soc2013/def/crashdump-head/sys/kern/kern_cons.c soc2013/def/crashdump-head/sys/kern/kern_cpuset.c soc2013/def/crashdump-head/sys/kern/kern_descrip.c soc2013/def/crashdump-head/sys/kern/kern_dump.c soc2013/def/crashdump-head/sys/kern/kern_event.c soc2013/def/crashdump-head/sys/kern/kern_exec.c soc2013/def/crashdump-head/sys/kern/kern_exit.c soc2013/def/crashdump-head/sys/kern/kern_fork.c soc2013/def/crashdump-head/sys/kern/kern_hhook.c soc2013/def/crashdump-head/sys/kern/kern_intr.c soc2013/def/crashdump-head/sys/kern/kern_jail.c soc2013/def/crashdump-head/sys/kern/kern_kthread.c soc2013/def/crashdump-head/sys/kern/kern_ktr.c soc2013/def/crashdump-head/sys/kern/kern_linker.c soc2013/def/crashdump-head/sys/kern/kern_lock.c soc2013/def/crashdump-head/sys/kern/kern_lockstat.c soc2013/def/crashdump-head/sys/kern/kern_loginclass.c soc2013/def/crashdump-head/sys/kern/kern_malloc.c soc2013/def/crashdump-head/sys/kern/kern_mib.c soc2013/def/crashdump-head/sys/kern/kern_module.c soc2013/def/crashdump-head/sys/kern/kern_mutex.c soc2013/def/crashdump-head/sys/kern/kern_ntptime.c soc2013/def/crashdump-head/sys/kern/kern_physio.c soc2013/def/crashdump-head/sys/kern/kern_proc.c soc2013/def/crashdump-head/sys/kern/kern_procctl.c soc2013/def/crashdump-head/sys/kern/kern_prot.c soc2013/def/crashdump-head/sys/kern/kern_racct.c soc2013/def/crashdump-head/sys/kern/kern_rctl.c soc2013/def/crashdump-head/sys/kern/kern_resource.c soc2013/def/crashdump-head/sys/kern/kern_rmlock.c soc2013/def/crashdump-head/sys/kern/kern_rwlock.c soc2013/def/crashdump-head/sys/kern/kern_sharedpage.c soc2013/def/crashdump-head/sys/kern/kern_shutdown.c soc2013/def/crashdump-head/sys/kern/kern_sig.c soc2013/def/crashdump-head/sys/kern/kern_sx.c soc2013/def/crashdump-head/sys/kern/kern_synch.c soc2013/def/crashdump-head/sys/kern/kern_syscalls.c soc2013/def/crashdump-head/sys/kern/kern_sysctl.c soc2013/def/crashdump-head/sys/kern/kern_tc.c soc2013/def/crashdump-head/sys/kern/kern_thr.c soc2013/def/crashdump-head/sys/kern/kern_thread.c soc2013/def/crashdump-head/sys/kern/kern_timeout.c soc2013/def/crashdump-head/sys/kern/kern_umtx.c soc2013/def/crashdump-head/sys/kern/ksched.c soc2013/def/crashdump-head/sys/kern/link_elf.c soc2013/def/crashdump-head/sys/kern/link_elf_obj.c soc2013/def/crashdump-head/sys/kern/makesyscalls.sh soc2013/def/crashdump-head/sys/kern/p1003_1b.c soc2013/def/crashdump-head/sys/kern/sched_4bsd.c soc2013/def/crashdump-head/sys/kern/sched_ule.c soc2013/def/crashdump-head/sys/kern/stack_protector.c soc2013/def/crashdump-head/sys/kern/subr_acl_nfs4.c soc2013/def/crashdump-head/sys/kern/subr_bus.c soc2013/def/crashdump-head/sys/kern/subr_busdma_bufalloc.c soc2013/def/crashdump-head/sys/kern/subr_capability.c soc2013/def/crashdump-head/sys/kern/subr_firmware.c soc2013/def/crashdump-head/sys/kern/subr_module.c soc2013/def/crashdump-head/sys/kern/subr_param.c soc2013/def/crashdump-head/sys/kern/subr_prf.c soc2013/def/crashdump-head/sys/kern/subr_rman.c soc2013/def/crashdump-head/sys/kern/subr_sbuf.c soc2013/def/crashdump-head/sys/kern/subr_smp.c soc2013/def/crashdump-head/sys/kern/subr_stack.c soc2013/def/crashdump-head/sys/kern/subr_syscall.c soc2013/def/crashdump-head/sys/kern/subr_taskqueue.c soc2013/def/crashdump-head/sys/kern/subr_trap.c soc2013/def/crashdump-head/sys/kern/subr_turnstile.c soc2013/def/crashdump-head/sys/kern/subr_uio.c soc2013/def/crashdump-head/sys/kern/subr_vmem.c soc2013/def/crashdump-head/sys/kern/subr_witness.c soc2013/def/crashdump-head/sys/kern/sys_capability.c soc2013/def/crashdump-head/sys/kern/sys_generic.c soc2013/def/crashdump-head/sys/kern/sys_pipe.c soc2013/def/crashdump-head/sys/kern/sys_procdesc.c soc2013/def/crashdump-head/sys/kern/sys_process.c soc2013/def/crashdump-head/sys/kern/syscalls.c soc2013/def/crashdump-head/sys/kern/syscalls.master soc2013/def/crashdump-head/sys/kern/systrace_args.c soc2013/def/crashdump-head/sys/kern/sysv_msg.c soc2013/def/crashdump-head/sys/kern/sysv_sem.c soc2013/def/crashdump-head/sys/kern/sysv_shm.c soc2013/def/crashdump-head/sys/kern/tty_pts.c soc2013/def/crashdump-head/sys/kern/tty_tty.c soc2013/def/crashdump-head/sys/kern/uipc_debug.c soc2013/def/crashdump-head/sys/kern/uipc_domain.c soc2013/def/crashdump-head/sys/kern/uipc_mbuf.c soc2013/def/crashdump-head/sys/kern/uipc_mbuf2.c soc2013/def/crashdump-head/sys/kern/uipc_sem.c soc2013/def/crashdump-head/sys/kern/uipc_shm.c soc2013/def/crashdump-head/sys/kern/uipc_sockbuf.c soc2013/def/crashdump-head/sys/kern/uipc_socket.c soc2013/def/crashdump-head/sys/kern/uipc_syscalls.c soc2013/def/crashdump-head/sys/kern/uipc_usrreq.c soc2013/def/crashdump-head/sys/kern/vfs_acl.c soc2013/def/crashdump-head/sys/kern/vfs_aio.c soc2013/def/crashdump-head/sys/kern/vfs_bio.c soc2013/def/crashdump-head/sys/kern/vfs_cache.c soc2013/def/crashdump-head/sys/kern/vfs_cluster.c soc2013/def/crashdump-head/sys/kern/vfs_default.c soc2013/def/crashdump-head/sys/kern/vfs_extattr.c soc2013/def/crashdump-head/sys/kern/vfs_hash.c soc2013/def/crashdump-head/sys/kern/vfs_init.c soc2013/def/crashdump-head/sys/kern/vfs_lookup.c soc2013/def/crashdump-head/sys/kern/vfs_mount.c soc2013/def/crashdump-head/sys/kern/vfs_mountroot.c soc2013/def/crashdump-head/sys/kern/vfs_subr.c soc2013/def/crashdump-head/sys/kern/vfs_syscalls.c soc2013/def/crashdump-head/sys/kern/vfs_vnops.c soc2013/def/crashdump-head/sys/kern/vnode_if.src soc2013/def/crashdump-head/sys/libkern/arc4random.c soc2013/def/crashdump-head/sys/libkern/arm/aeabi_unwind.c soc2013/def/crashdump-head/sys/libkern/arm/divsi3.S soc2013/def/crashdump-head/sys/libkern/arm/ldivmod.S soc2013/def/crashdump-head/sys/libkern/arm/ldivmod_helper.c soc2013/def/crashdump-head/sys/libkern/arm/memcpy.S soc2013/def/crashdump-head/sys/libkern/arm/memset.S soc2013/def/crashdump-head/sys/libkern/ffs.c soc2013/def/crashdump-head/sys/libkern/ffsl.c soc2013/def/crashdump-head/sys/libkern/fls.c soc2013/def/crashdump-head/sys/libkern/flsl.c soc2013/def/crashdump-head/sys/libkern/flsll.c soc2013/def/crashdump-head/sys/libkern/random.c soc2013/def/crashdump-head/sys/mips/adm5120/admpci.c soc2013/def/crashdump-head/sys/mips/atheros/apb.c soc2013/def/crashdump-head/sys/mips/atheros/ar71xx_chip.c soc2013/def/crashdump-head/sys/mips/atheros/ar71xx_cpudef.h soc2013/def/crashdump-head/sys/mips/atheros/ar71xx_ehci.c soc2013/def/crashdump-head/sys/mips/atheros/ar71xx_gpio.c soc2013/def/crashdump-head/sys/mips/atheros/ar71xx_machdep.c soc2013/def/crashdump-head/sys/mips/atheros/ar71xx_ohci.c soc2013/def/crashdump-head/sys/mips/atheros/ar71xx_pci.c soc2013/def/crashdump-head/sys/mips/atheros/ar71xx_setup.c soc2013/def/crashdump-head/sys/mips/atheros/ar71xx_setup.h soc2013/def/crashdump-head/sys/mips/atheros/ar724x_chip.c soc2013/def/crashdump-head/sys/mips/atheros/ar724x_pci.c soc2013/def/crashdump-head/sys/mips/atheros/ar91xx_chip.c soc2013/def/crashdump-head/sys/mips/atheros/ar933x_chip.c soc2013/def/crashdump-head/sys/mips/atheros/ar934x_chip.c soc2013/def/crashdump-head/sys/mips/atheros/files.ar71xx soc2013/def/crashdump-head/sys/mips/atheros/if_arge.c soc2013/def/crashdump-head/sys/mips/atheros/if_argevar.h soc2013/def/crashdump-head/sys/mips/atheros/qca955x_chip.c soc2013/def/crashdump-head/sys/mips/atheros/qca955xreg.h soc2013/def/crashdump-head/sys/mips/beri/beri_machdep.c soc2013/def/crashdump-head/sys/mips/beri/beri_simplebus.c soc2013/def/crashdump-head/sys/mips/cavium/octe/ethernet.c soc2013/def/crashdump-head/sys/mips/cavium/octeon_rnd.c soc2013/def/crashdump-head/sys/mips/cavium/octopci.c soc2013/def/crashdump-head/sys/mips/conf/ALFA_HORNET_UB soc2013/def/crashdump-head/sys/mips/conf/AP121 soc2013/def/crashdump-head/sys/mips/conf/AP135 soc2013/def/crashdump-head/sys/mips/conf/AP135.hints soc2013/def/crashdump-head/sys/mips/conf/AP91 soc2013/def/crashdump-head/sys/mips/conf/AP93 soc2013/def/crashdump-head/sys/mips/conf/AP94 soc2013/def/crashdump-head/sys/mips/conf/AP96 soc2013/def/crashdump-head/sys/mips/conf/AR71XX_BASE soc2013/def/crashdump-head/sys/mips/conf/AR724X_BASE soc2013/def/crashdump-head/sys/mips/conf/AR91XX_BASE soc2013/def/crashdump-head/sys/mips/conf/AR933X_BASE soc2013/def/crashdump-head/sys/mips/conf/AR934X_BASE soc2013/def/crashdump-head/sys/mips/conf/BERI_DE4_MDROOT soc2013/def/crashdump-head/sys/mips/conf/BERI_DE4_SDROOT soc2013/def/crashdump-head/sys/mips/conf/BERI_SIM_MDROOT soc2013/def/crashdump-head/sys/mips/conf/BERI_SIM_SDROOT soc2013/def/crashdump-head/sys/mips/conf/CARAMBOLA2 soc2013/def/crashdump-head/sys/mips/conf/DB120 soc2013/def/crashdump-head/sys/mips/conf/DIR-655A1 soc2013/def/crashdump-head/sys/mips/conf/DIR-825B1 soc2013/def/crashdump-head/sys/mips/conf/DIR-825C1 soc2013/def/crashdump-head/sys/mips/conf/ENH200 soc2013/def/crashdump-head/sys/mips/conf/OCTEON1 soc2013/def/crashdump-head/sys/mips/conf/PB47 soc2013/def/crashdump-head/sys/mips/conf/PB92 soc2013/def/crashdump-head/sys/mips/conf/PICOSTATION_M2HP soc2013/def/crashdump-head/sys/mips/conf/QCA955X_BASE soc2013/def/crashdump-head/sys/mips/conf/QCA955X_BASE.hints soc2013/def/crashdump-head/sys/mips/conf/ROUTERSTATION soc2013/def/crashdump-head/sys/mips/conf/ROUTERSTATION_MFS soc2013/def/crashdump-head/sys/mips/conf/RSPRO soc2013/def/crashdump-head/sys/mips/conf/RSPRO_MFS soc2013/def/crashdump-head/sys/mips/conf/RT305X soc2013/def/crashdump-head/sys/mips/conf/TL-WDR4300 soc2013/def/crashdump-head/sys/mips/conf/TL-WR1043NDv2 soc2013/def/crashdump-head/sys/mips/conf/TP-MR3020 soc2013/def/crashdump-head/sys/mips/conf/TP-MR3020.hints soc2013/def/crashdump-head/sys/mips/conf/TP-WN1043ND soc2013/def/crashdump-head/sys/mips/conf/WZR-300HP soc2013/def/crashdump-head/sys/mips/conf/WZR-300HP.hints soc2013/def/crashdump-head/sys/mips/conf/WZR-HPAG300H soc2013/def/crashdump-head/sys/mips/conf/XLR soc2013/def/crashdump-head/sys/mips/conf/XLR64 soc2013/def/crashdump-head/sys/mips/conf/XLRN32 soc2013/def/crashdump-head/sys/mips/conf/std.SWARM soc2013/def/crashdump-head/sys/mips/idt/idtpci.c soc2013/def/crashdump-head/sys/mips/include/atomic.h soc2013/def/crashdump-head/sys/mips/include/cpuregs.h soc2013/def/crashdump-head/sys/mips/include/float.h soc2013/def/crashdump-head/sys/mips/include/in_cksum.h soc2013/def/crashdump-head/sys/mips/include/intr_machdep.h soc2013/def/crashdump-head/sys/mips/include/pcpu.h soc2013/def/crashdump-head/sys/mips/include/pmap.h soc2013/def/crashdump-head/sys/mips/include/vmparam.h soc2013/def/crashdump-head/sys/mips/malta/gt_pci.c soc2013/def/crashdump-head/sys/mips/malta/malta_machdep.c soc2013/def/crashdump-head/sys/mips/mips/busdma_machdep.c soc2013/def/crashdump-head/sys/mips/mips/db_disasm.c soc2013/def/crashdump-head/sys/mips/mips/elf_machdep.c soc2013/def/crashdump-head/sys/mips/mips/fp.S soc2013/def/crashdump-head/sys/mips/mips/freebsd32_machdep.c soc2013/def/crashdump-head/sys/mips/mips/pm_machdep.c soc2013/def/crashdump-head/sys/mips/mips/pmap.c soc2013/def/crashdump-head/sys/mips/mips/stack_machdep.c soc2013/def/crashdump-head/sys/mips/mips/trap.c soc2013/def/crashdump-head/sys/mips/mips/vm_machdep.c soc2013/def/crashdump-head/sys/mips/nlm/dev/net/xlpge.c soc2013/def/crashdump-head/sys/mips/nlm/xlp_pci.c soc2013/def/crashdump-head/sys/mips/rmi/dev/nlge/if_nlge.c soc2013/def/crashdump-head/sys/mips/rmi/files.xlr soc2013/def/crashdump-head/sys/mips/rmi/iodi.c soc2013/def/crashdump-head/sys/mips/rmi/xlr_i2c.c soc2013/def/crashdump-head/sys/mips/rmi/xlr_pci.c soc2013/def/crashdump-head/sys/modules/Makefile soc2013/def/crashdump-head/sys/modules/Makefile.inc soc2013/def/crashdump-head/sys/modules/aesni/Makefile soc2013/def/crashdump-head/sys/modules/agp/Makefile soc2013/def/crashdump-head/sys/modules/ath/Makefile soc2013/def/crashdump-head/sys/modules/crypto/Makefile soc2013/def/crashdump-head/sys/modules/cryptodev/Makefile soc2013/def/crashdump-head/sys/modules/ctl/Makefile soc2013/def/crashdump-head/sys/modules/cxgb/iw_cxgb/Makefile soc2013/def/crashdump-head/sys/modules/cxgbe/if_cxgbe/Makefile soc2013/def/crashdump-head/sys/modules/cxgbe/iw_cxgbe/Makefile soc2013/def/crashdump-head/sys/modules/cxgbe/t4_firmware/Makefile soc2013/def/crashdump-head/sys/modules/cxgbe/t5_firmware/Makefile soc2013/def/crashdump-head/sys/modules/drm2/Makefile soc2013/def/crashdump-head/sys/modules/drm2/radeonkmsfw/Makefile soc2013/def/crashdump-head/sys/modules/dtb/allwinner/Makefile soc2013/def/crashdump-head/sys/modules/dtb/imx6/Makefile soc2013/def/crashdump-head/sys/modules/dtrace/Makefile soc2013/def/crashdump-head/sys/modules/dtrace/Makefile.inc soc2013/def/crashdump-head/sys/modules/dtrace/dtraceall/dtraceall.c soc2013/def/crashdump-head/sys/modules/dtrace/systrace_linux32/Makefile soc2013/def/crashdump-head/sys/modules/em/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_part/geom_part_apm/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_part/geom_part_bsd/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_part/geom_part_bsd64/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_part/geom_part_ebr/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_part/geom_part_gpt/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_part/geom_part_ldm/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_part/geom_part_mbr/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_part/geom_part_pc98/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_part/geom_part_vtoc8/Makefile soc2013/def/crashdump-head/sys/modules/geom/geom_raid/Makefile soc2013/def/crashdump-head/sys/modules/gpio/gpiobus/Makefile soc2013/def/crashdump-head/sys/modules/hwpmc/Makefile soc2013/def/crashdump-head/sys/modules/hyperv/ (props changed) soc2013/def/crashdump-head/sys/modules/hyperv/netvsc/Makefile soc2013/def/crashdump-head/sys/modules/i2c/Makefile soc2013/def/crashdump-head/sys/modules/i2c/controllers/Makefile soc2013/def/crashdump-head/sys/modules/i2c/iicbb/Makefile soc2013/def/crashdump-head/sys/modules/ibcore/Makefile soc2013/def/crashdump-head/sys/modules/if_stf/Makefile soc2013/def/crashdump-head/sys/modules/ipoib/Makefile soc2013/def/crashdump-head/sys/modules/ispfw/Makefile soc2013/def/crashdump-head/sys/modules/ix/Makefile soc2013/def/crashdump-head/sys/modules/ixl/Makefile (contents, props changed) soc2013/def/crashdump-head/sys/modules/ixlv/Makefile soc2013/def/crashdump-head/sys/modules/ixv/Makefile soc2013/def/crashdump-head/sys/modules/kgssapi/Makefile soc2013/def/crashdump-head/sys/modules/kgssapi_krb5/Makefile soc2013/def/crashdump-head/sys/modules/ksyms/Makefile soc2013/def/crashdump-head/sys/modules/libiconv/Makefile soc2013/def/crashdump-head/sys/modules/linprocfs/Makefile soc2013/def/crashdump-head/sys/modules/linsysfs/Makefile soc2013/def/crashdump-head/sys/modules/linux/Makefile soc2013/def/crashdump-head/sys/modules/mlx4/Makefile soc2013/def/crashdump-head/sys/modules/mlx4ib/Makefile soc2013/def/crashdump-head/sys/modules/mlxen/Makefile soc2013/def/crashdump-head/sys/modules/mthca/Makefile soc2013/def/crashdump-head/sys/modules/mvs/Makefile soc2013/def/crashdump-head/sys/modules/nand/Makefile soc2013/def/crashdump-head/sys/modules/nandsim/Makefile soc2013/def/crashdump-head/sys/modules/proto/Makefile soc2013/def/crashdump-head/sys/modules/pseudofs/Makefile soc2013/def/crashdump-head/sys/modules/puc/Makefile soc2013/def/crashdump-head/sys/modules/qlxgbe/Makefile soc2013/def/crashdump-head/sys/modules/rdma/krping/Makefile soc2013/def/crashdump-head/sys/modules/scc/Makefile soc2013/def/crashdump-head/sys/modules/sfxge/Makefile (contents, props changed) soc2013/def/crashdump-head/sys/modules/uart/Makefile soc2013/def/crashdump-head/sys/modules/usb/Makefile soc2013/def/crashdump-head/sys/modules/usb/rsu/Makefile soc2013/def/crashdump-head/sys/modules/usb/template/Makefile soc2013/def/crashdump-head/sys/modules/usb/urtwn/Makefile soc2013/def/crashdump-head/sys/modules/usb/usb/Makefile soc2013/def/crashdump-head/sys/modules/virtio/balloon/Makefile soc2013/def/crashdump-head/sys/modules/virtio/block/Makefile soc2013/def/crashdump-head/sys/modules/virtio/console/Makefile soc2013/def/crashdump-head/sys/modules/virtio/network/Makefile soc2013/def/crashdump-head/sys/modules/virtio/pci/Makefile soc2013/def/crashdump-head/sys/modules/virtio/random/Makefile soc2013/def/crashdump-head/sys/modules/virtio/scsi/Makefile soc2013/def/crashdump-head/sys/modules/virtio/virtio/Makefile soc2013/def/crashdump-head/sys/modules/zfs/Makefile soc2013/def/crashdump-head/sys/net/altq/altq.h soc2013/def/crashdump-head/sys/net/altq/altq_cbq.c soc2013/def/crashdump-head/sys/net/altq/altq_cbq.h soc2013/def/crashdump-head/sys/net/altq/altq_classq.h soc2013/def/crashdump-head/sys/net/altq/altq_hfsc.c soc2013/def/crashdump-head/sys/net/altq/altq_hfsc.h soc2013/def/crashdump-head/sys/net/altq/altq_priq.c soc2013/def/crashdump-head/sys/net/altq/altq_priq.h soc2013/def/crashdump-head/sys/net/altq/altq_rmclass.c soc2013/def/crashdump-head/sys/net/altq/altq_rmclass.h soc2013/def/crashdump-head/sys/net/altq/altq_subr.c soc2013/def/crashdump-head/sys/net/altq/altq_var.h soc2013/def/crashdump-head/sys/net/bpf.c soc2013/def/crashdump-head/sys/net/bpf.h soc2013/def/crashdump-head/sys/net/bpf_buffer.c soc2013/def/crashdump-head/sys/net/flowtable.c soc2013/def/crashdump-head/sys/net/ieee8023ad_lacp.c soc2013/def/crashdump-head/sys/net/ieee8023ad_lacp.h soc2013/def/crashdump-head/sys/net/if.c soc2013/def/crashdump-head/sys/net/if_arcsubr.c soc2013/def/crashdump-head/sys/net/if_bridge.c soc2013/def/crashdump-head/sys/net/if_dl.h soc2013/def/crashdump-head/sys/net/if_enc.c soc2013/def/crashdump-head/sys/net/if_enc.h soc2013/def/crashdump-head/sys/net/if_epair.c soc2013/def/crashdump-head/sys/net/if_ethersubr.c soc2013/def/crashdump-head/sys/net/if_fddisubr.c soc2013/def/crashdump-head/sys/net/if_fwsubr.c soc2013/def/crashdump-head/sys/net/if_gif.c soc2013/def/crashdump-head/sys/net/if_gif.h soc2013/def/crashdump-head/sys/net/if_gre.c soc2013/def/crashdump-head/sys/net/if_iso88025subr.c soc2013/def/crashdump-head/sys/net/if_lagg.c soc2013/def/crashdump-head/sys/net/if_lagg.h soc2013/def/crashdump-head/sys/net/if_llatbl.c soc2013/def/crashdump-head/sys/net/if_llatbl.h soc2013/def/crashdump-head/sys/net/if_loop.c soc2013/def/crashdump-head/sys/net/if_me.c soc2013/def/crashdump-head/sys/net/if_spppsubr.c soc2013/def/crashdump-head/sys/net/if_stf.c soc2013/def/crashdump-head/sys/net/if_tap.c soc2013/def/crashdump-head/sys/net/if_tun.c soc2013/def/crashdump-head/sys/net/if_types.h soc2013/def/crashdump-head/sys/net/if_var.h soc2013/def/crashdump-head/sys/net/netisr.c soc2013/def/crashdump-head/sys/net/netmap.h soc2013/def/crashdump-head/sys/net/netmap_user.h soc2013/def/crashdump-head/sys/net/pfkeyv2.h soc2013/def/crashdump-head/sys/net/pfvar.h soc2013/def/crashdump-head/sys/net/radix.c soc2013/def/crashdump-head/sys/net/radix.h soc2013/def/crashdump-head/sys/net/route.c soc2013/def/crashdump-head/sys/net/route.h soc2013/def/crashdump-head/sys/net/rss_config.c soc2013/def/crashdump-head/sys/net/rss_config.h soc2013/def/crashdump-head/sys/net/sff8436.h soc2013/def/crashdump-head/sys/net/sff8472.h soc2013/def/crashdump-head/sys/net80211/_ieee80211.h soc2013/def/crashdump-head/sys/net80211/ieee80211.c soc2013/def/crashdump-head/sys/net80211/ieee80211.h soc2013/def/crashdump-head/sys/net80211/ieee80211_acl.c soc2013/def/crashdump-head/sys/net80211/ieee80211_adhoc.c soc2013/def/crashdump-head/sys/net80211/ieee80211_amrr.c soc2013/def/crashdump-head/sys/net80211/ieee80211_crypto.c soc2013/def/crashdump-head/sys/net80211/ieee80211_crypto.h soc2013/def/crashdump-head/sys/net80211/ieee80211_crypto_ccmp.c soc2013/def/crashdump-head/sys/net80211/ieee80211_crypto_none.c soc2013/def/crashdump-head/sys/net80211/ieee80211_crypto_tkip.c soc2013/def/crashdump-head/sys/net80211/ieee80211_crypto_wep.c soc2013/def/crashdump-head/sys/net80211/ieee80211_ddb.c soc2013/def/crashdump-head/sys/net80211/ieee80211_dfs.c soc2013/def/crashdump-head/sys/net80211/ieee80211_freebsd.c soc2013/def/crashdump-head/sys/net80211/ieee80211_freebsd.h soc2013/def/crashdump-head/sys/net80211/ieee80211_hostap.c soc2013/def/crashdump-head/sys/net80211/ieee80211_ht.c soc2013/def/crashdump-head/sys/net80211/ieee80211_ht.h soc2013/def/crashdump-head/sys/net80211/ieee80211_hwmp.c soc2013/def/crashdump-head/sys/net80211/ieee80211_input.c soc2013/def/crashdump-head/sys/net80211/ieee80211_input.h soc2013/def/crashdump-head/sys/net80211/ieee80211_ioctl.c soc2013/def/crashdump-head/sys/net80211/ieee80211_mesh.c soc2013/def/crashdump-head/sys/net80211/ieee80211_mesh.h soc2013/def/crashdump-head/sys/net80211/ieee80211_monitor.c soc2013/def/crashdump-head/sys/net80211/ieee80211_node.c soc2013/def/crashdump-head/sys/net80211/ieee80211_node.h soc2013/def/crashdump-head/sys/net80211/ieee80211_output.c soc2013/def/crashdump-head/sys/net80211/ieee80211_power.c soc2013/def/crashdump-head/sys/net80211/ieee80211_proto.c soc2013/def/crashdump-head/sys/net80211/ieee80211_proto.h soc2013/def/crashdump-head/sys/net80211/ieee80211_radiotap.c soc2013/def/crashdump-head/sys/net80211/ieee80211_ratectl_none.c soc2013/def/crashdump-head/sys/net80211/ieee80211_regdomain.c soc2013/def/crashdump-head/sys/net80211/ieee80211_rssadapt.c soc2013/def/crashdump-head/sys/net80211/ieee80211_scan.c soc2013/def/crashdump-head/sys/net80211/ieee80211_scan.h soc2013/def/crashdump-head/sys/net80211/ieee80211_scan_sta.c soc2013/def/crashdump-head/sys/net80211/ieee80211_scan_sw.c soc2013/def/crashdump-head/sys/net80211/ieee80211_scan_sw.h soc2013/def/crashdump-head/sys/net80211/ieee80211_sta.c soc2013/def/crashdump-head/sys/net80211/ieee80211_superg.c soc2013/def/crashdump-head/sys/net80211/ieee80211_tdma.c soc2013/def/crashdump-head/sys/net80211/ieee80211_tdma.h soc2013/def/crashdump-head/sys/net80211/ieee80211_var.h soc2013/def/crashdump-head/sys/net80211/ieee80211_wds.c soc2013/def/crashdump-head/sys/netgraph/bluetooth/hci/ng_hci_evnt.c soc2013/def/crashdump-head/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c soc2013/def/crashdump-head/sys/netgraph/bluetooth/hci/ng_hci_ulpi.h soc2013/def/crashdump-head/sys/netgraph/bluetooth/include/ng_btsocket.h soc2013/def/crashdump-head/sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h soc2013/def/crashdump-head/sys/netgraph/bluetooth/include/ng_hci.h soc2013/def/crashdump-head/sys/netgraph/bluetooth/include/ng_l2cap.h soc2013/def/crashdump-head/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c soc2013/def/crashdump-head/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c soc2013/def/crashdump-head/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.h soc2013/def/crashdump-head/sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c soc2013/def/crashdump-head/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c soc2013/def/crashdump-head/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c soc2013/def/crashdump-head/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.h soc2013/def/crashdump-head/sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h soc2013/def/crashdump-head/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c soc2013/def/crashdump-head/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c soc2013/def/crashdump-head/sys/netgraph/netflow/ng_netflow.c soc2013/def/crashdump-head/sys/netgraph/netgraph.h soc2013/def/crashdump-head/sys/netgraph/ng_eiface.c soc2013/def/crashdump-head/sys/netgraph/ng_ether.c soc2013/def/crashdump-head/sys/netgraph/ng_iface.c soc2013/def/crashdump-head/sys/netgraph/ng_pppoe.c soc2013/def/crashdump-head/sys/netgraph/ng_pppoe.h soc2013/def/crashdump-head/sys/netinet/if_ether.c soc2013/def/crashdump-head/sys/netinet/if_ether.h soc2013/def/crashdump-head/sys/netinet/igmp.c soc2013/def/crashdump-head/sys/netinet/in.c soc2013/def/crashdump-head/sys/netinet/in_gif.c soc2013/def/crashdump-head/sys/netinet/in_kdtrace.c soc2013/def/crashdump-head/sys/netinet/in_kdtrace.h soc2013/def/crashdump-head/sys/netinet/in_mcast.c soc2013/def/crashdump-head/sys/netinet/in_pcb.c soc2013/def/crashdump-head/sys/netinet/in_pcb.h soc2013/def/crashdump-head/sys/netinet/in_rmx.c soc2013/def/crashdump-head/sys/netinet/in_rss.c soc2013/def/crashdump-head/sys/netinet/in_rss.h soc2013/def/crashdump-head/sys/netinet/in_var.h soc2013/def/crashdump-head/sys/netinet/ip.h soc2013/def/crashdump-head/sys/netinet/ip_carp.c soc2013/def/crashdump-head/sys/netinet/ip_ecn.h soc2013/def/crashdump-head/sys/netinet/ip_encap.c soc2013/def/crashdump-head/sys/netinet/ip_fastfwd.c soc2013/def/crashdump-head/sys/netinet/ip_fw.h soc2013/def/crashdump-head/sys/netinet/ip_icmp.c soc2013/def/crashdump-head/sys/netinet/ip_input.c soc2013/def/crashdump-head/sys/netinet/ip_ipsec.c soc2013/def/crashdump-head/sys/netinet/ip_mroute.c soc2013/def/crashdump-head/sys/netinet/ip_output.c soc2013/def/crashdump-head/sys/netinet/ip_var.h soc2013/def/crashdump-head/sys/netinet/libalias/libalias.3 soc2013/def/crashdump-head/sys/netinet/raw_ip.c soc2013/def/crashdump-head/sys/netinet/sctp.h soc2013/def/crashdump-head/sys/netinet/sctp_asconf.c soc2013/def/crashdump-head/sys/netinet/sctp_auth.c soc2013/def/crashdump-head/sys/netinet/sctp_cc_functions.c soc2013/def/crashdump-head/sys/netinet/sctp_constants.h soc2013/def/crashdump-head/sys/netinet/sctp_header.h soc2013/def/crashdump-head/sys/netinet/sctp_indata.c soc2013/def/crashdump-head/sys/netinet/sctp_indata.h soc2013/def/crashdump-head/sys/netinet/sctp_input.c soc2013/def/crashdump-head/sys/netinet/sctp_input.h soc2013/def/crashdump-head/sys/netinet/sctp_os_bsd.h soc2013/def/crashdump-head/sys/netinet/sctp_output.c soc2013/def/crashdump-head/sys/netinet/sctp_output.h soc2013/def/crashdump-head/sys/netinet/sctp_pcb.c soc2013/def/crashdump-head/sys/netinet/sctp_pcb.h soc2013/def/crashdump-head/sys/netinet/sctp_structs.h soc2013/def/crashdump-head/sys/netinet/sctp_syscalls.c soc2013/def/crashdump-head/sys/netinet/sctp_sysctl.c soc2013/def/crashdump-head/sys/netinet/sctp_sysctl.h soc2013/def/crashdump-head/sys/netinet/sctp_timer.c soc2013/def/crashdump-head/sys/netinet/sctp_uio.h soc2013/def/crashdump-head/sys/netinet/sctp_usrreq.c soc2013/def/crashdump-head/sys/netinet/sctp_var.h soc2013/def/crashdump-head/sys/netinet/sctputil.c soc2013/def/crashdump-head/sys/netinet/sctputil.h soc2013/def/crashdump-head/sys/netinet/siftr.c soc2013/def/crashdump-head/sys/netinet/tcp.h soc2013/def/crashdump-head/sys/netinet/tcp_hostcache.c soc2013/def/crashdump-head/sys/netinet/tcp_input.c soc2013/def/crashdump-head/sys/netinet/tcp_lro.c soc2013/def/crashdump-head/sys/netinet/tcp_output.c soc2013/def/crashdump-head/sys/netinet/tcp_reass.c soc2013/def/crashdump-head/sys/netinet/tcp_sack.c soc2013/def/crashdump-head/sys/netinet/tcp_subr.c soc2013/def/crashdump-head/sys/netinet/tcp_syncache.c soc2013/def/crashdump-head/sys/netinet/tcp_syncache.h soc2013/def/crashdump-head/sys/netinet/tcp_timer.c soc2013/def/crashdump-head/sys/netinet/tcp_timer.h soc2013/def/crashdump-head/sys/netinet/tcp_timewait.c soc2013/def/crashdump-head/sys/netinet/tcp_usrreq.c soc2013/def/crashdump-head/sys/netinet/tcp_var.h soc2013/def/crashdump-head/sys/netinet/toecore.c soc2013/def/crashdump-head/sys/netinet/udp_usrreq.c soc2013/def/crashdump-head/sys/netinet/udp_var.h soc2013/def/crashdump-head/sys/netinet6/frag6.c soc2013/def/crashdump-head/sys/netinet6/icmp6.c soc2013/def/crashdump-head/sys/netinet6/in6.c soc2013/def/crashdump-head/sys/netinet6/in6.h soc2013/def/crashdump-head/sys/netinet6/in6_gif.c soc2013/def/crashdump-head/sys/netinet6/in6_ifattach.c soc2013/def/crashdump-head/sys/netinet6/in6_mcast.c soc2013/def/crashdump-head/sys/netinet6/in6_pcb.c soc2013/def/crashdump-head/sys/netinet6/in6_rmx.c soc2013/def/crashdump-head/sys/netinet6/in6_rss.c soc2013/def/crashdump-head/sys/netinet6/in6_rss.h soc2013/def/crashdump-head/sys/netinet6/in6_src.c soc2013/def/crashdump-head/sys/netinet6/in6_var.h soc2013/def/crashdump-head/sys/netinet6/ip6_forward.c soc2013/def/crashdump-head/sys/netinet6/ip6_input.c soc2013/def/crashdump-head/sys/netinet6/ip6_ipsec.c soc2013/def/crashdump-head/sys/netinet6/ip6_mroute.c soc2013/def/crashdump-head/sys/netinet6/ip6_output.c soc2013/def/crashdump-head/sys/netinet6/ip6_var.h soc2013/def/crashdump-head/sys/netinet6/mld6.c soc2013/def/crashdump-head/sys/netinet6/nd6.c soc2013/def/crashdump-head/sys/netinet6/nd6.h soc2013/def/crashdump-head/sys/netinet6/nd6_nbr.c soc2013/def/crashdump-head/sys/netinet6/nd6_rtr.c soc2013/def/crashdump-head/sys/netinet6/sctp6_usrreq.c soc2013/def/crashdump-head/sys/netinet6/udp6_usrreq.c soc2013/def/crashdump-head/sys/netipsec/esp.h soc2013/def/crashdump-head/sys/netipsec/ipsec.c soc2013/def/crashdump-head/sys/netipsec/ipsec.h soc2013/def/crashdump-head/sys/netipsec/ipsec_input.c soc2013/def/crashdump-head/sys/netipsec/ipsec_output.c soc2013/def/crashdump-head/sys/netipsec/key.c soc2013/def/crashdump-head/sys/netipsec/key.h soc2013/def/crashdump-head/sys/netipsec/key_debug.c soc2013/def/crashdump-head/sys/netipsec/keydb.h soc2013/def/crashdump-head/sys/netipsec/keysock.c soc2013/def/crashdump-head/sys/netipsec/xform.h soc2013/def/crashdump-head/sys/netipsec/xform_ah.c soc2013/def/crashdump-head/sys/netipsec/xform_esp.c soc2013/def/crashdump-head/sys/netipsec/xform_ipcomp.c soc2013/def/crashdump-head/sys/netpfil/ipfw/dn_heap.c soc2013/def/crashdump-head/sys/netpfil/ipfw/dn_sched.h soc2013/def/crashdump-head/sys/netpfil/ipfw/dn_sched_qfq.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_dn_io.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_dn_private.h soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_dummynet.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw2.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw_dynamic.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw_log.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw_nat.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw_pfil.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw_private.h soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw_sockopt.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw_table.c soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw_table.h soc2013/def/crashdump-head/sys/netpfil/ipfw/ip_fw_table_value.c soc2013/def/crashdump-head/sys/netpfil/ipfw/test/dn_test.h soc2013/def/crashdump-head/sys/netpfil/ipfw/test/main.c soc2013/def/crashdump-head/sys/netpfil/pf/if_pfsync.c soc2013/def/crashdump-head/sys/netpfil/pf/pf.c soc2013/def/crashdump-head/sys/netpfil/pf/pf_altq.h soc2013/def/crashdump-head/sys/netpfil/pf/pf_if.c soc2013/def/crashdump-head/sys/netpfil/pf/pf_ioctl.c soc2013/def/crashdump-head/sys/netpfil/pf/pf_mtag.h soc2013/def/crashdump-head/sys/netpfil/pf/pf_norm.c soc2013/def/crashdump-head/sys/netsmb/smb_conn.c soc2013/def/crashdump-head/sys/netsmb/smb_iod.c soc2013/def/crashdump-head/sys/nfs/nfs_diskless.c soc2013/def/crashdump-head/sys/nfs/nfssvc.h soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/core/addr.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/core/cma.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/core/device.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/core/fmr_pool.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/core/mad.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/core/umem.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/core/uverbs_cmd.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/core/uverbs_main.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/hw/mlx4/main.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/hw/mthca/mthca_main.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/hw/mthca/mthca_memfree.c soc2013/def/crashdump-head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c soc2013/def/crashdump-head/sys/ofed/drivers/net/mlx4/cmd.c soc2013/def/crashdump-head/sys/ofed/drivers/net/mlx4/en_main.c soc2013/def/crashdump-head/sys/ofed/drivers/net/mlx4/en_netdev.c soc2013/def/crashdump-head/sys/ofed/drivers/net/mlx4/en_tx.c soc2013/def/crashdump-head/sys/ofed/drivers/net/mlx4/main.c soc2013/def/crashdump-head/sys/ofed/drivers/net/mlx4/port.c soc2013/def/crashdump-head/sys/ofed/include/linux/mlx4/device.h soc2013/def/crashdump-head/sys/ofed/include/rdma/ib_pma.h soc2013/def/crashdump-head/sys/opencrypto/criov.c soc2013/def/crashdump-head/sys/opencrypto/crypto.c soc2013/def/crashdump-head/sys/opencrypto/cryptodeflate.c soc2013/def/crashdump-head/sys/opencrypto/cryptodev.c soc2013/def/crashdump-head/sys/opencrypto/cryptodev.h soc2013/def/crashdump-head/sys/opencrypto/cryptosoft.c soc2013/def/crashdump-head/sys/opencrypto/xform.c soc2013/def/crashdump-head/sys/pc98/conf/GENERIC soc2013/def/crashdump-head/sys/pc98/conf/NOTES soc2013/def/crashdump-head/sys/powerpc/aim/locore64.S soc2013/def/crashdump-head/sys/powerpc/aim/mmu_oea.c soc2013/def/crashdump-head/sys/powerpc/aim/mmu_oea64.c soc2013/def/crashdump-head/sys/powerpc/aim/moea64_native.c soc2013/def/crashdump-head/sys/powerpc/aim/slb.c soc2013/def/crashdump-head/sys/powerpc/aim/trap_subr64.S soc2013/def/crashdump-head/sys/powerpc/booke/locore.S soc2013/def/crashdump-head/sys/powerpc/booke/pmap.c soc2013/def/crashdump-head/sys/powerpc/booke/trap_subr.S soc2013/def/crashdump-head/sys/powerpc/conf/GENERIC soc2013/def/crashdump-head/sys/powerpc/conf/NOTES soc2013/def/crashdump-head/sys/powerpc/include/_types.h soc2013/def/crashdump-head/sys/powerpc/include/asm.h soc2013/def/crashdump-head/sys/powerpc/include/atomic.h soc2013/def/crashdump-head/sys/powerpc/include/cpu.h soc2013/def/crashdump-head/sys/powerpc/include/float.h soc2013/def/crashdump-head/sys/powerpc/include/in_cksum.h soc2013/def/crashdump-head/sys/powerpc/include/md_var.h soc2013/def/crashdump-head/sys/powerpc/include/param.h soc2013/def/crashdump-head/sys/powerpc/include/pcpu.h soc2013/def/crashdump-head/sys/powerpc/include/pmap.h soc2013/def/crashdump-head/sys/powerpc/include/profile.h soc2013/def/crashdump-head/sys/powerpc/include/pte.h soc2013/def/crashdump-head/sys/powerpc/include/spr.h soc2013/def/crashdump-head/sys/powerpc/include/tlb.h soc2013/def/crashdump-head/sys/powerpc/include/vmparam.h soc2013/def/crashdump-head/sys/powerpc/mambo/mambo_console.c soc2013/def/crashdump-head/sys/powerpc/mpc85xx/fsl_sdhc.c soc2013/def/crashdump-head/sys/powerpc/mpc85xx/i2c.c soc2013/def/crashdump-head/sys/powerpc/mpc85xx/mpc85xx.c soc2013/def/crashdump-head/sys/powerpc/mpc85xx/mpc85xx.h soc2013/def/crashdump-head/sys/powerpc/mpc85xx/pci_mpc85xx.c soc2013/def/crashdump-head/sys/powerpc/mpc85xx/platform_mpc85xx.c soc2013/def/crashdump-head/sys/powerpc/ofw/ofw_machdep.c soc2013/def/crashdump-head/sys/powerpc/ofw/ofw_pci.c soc2013/def/crashdump-head/sys/powerpc/ofw/ofw_pcibus.c soc2013/def/crashdump-head/sys/powerpc/ofw/openpic_ofw.c soc2013/def/crashdump-head/sys/powerpc/powermac/cpcht.c soc2013/def/crashdump-head/sys/powerpc/powermac/kiic.c soc2013/def/crashdump-head/sys/powerpc/powermac/macgpio.c soc2013/def/crashdump-head/sys/powerpc/powerpc/busdma_machdep.c soc2013/def/crashdump-head/sys/powerpc/powerpc/db_disasm.c soc2013/def/crashdump-head/sys/powerpc/powerpc/db_interface.c soc2013/def/crashdump-head/sys/powerpc/powerpc/elf32_machdep.c soc2013/def/crashdump-head/sys/powerpc/powerpc/elf64_machdep.c soc2013/def/crashdump-head/sys/powerpc/powerpc/exec_machdep.c soc2013/def/crashdump-head/sys/powerpc/powerpc/mmu_if.m soc2013/def/crashdump-head/sys/powerpc/powerpc/pmap_dispatch.c soc2013/def/crashdump-head/sys/powerpc/powerpc/sigcode64.S soc2013/def/crashdump-head/sys/powerpc/powerpc/stack_machdep.c soc2013/def/crashdump-head/sys/powerpc/powerpc/swtch32.S soc2013/def/crashdump-head/sys/powerpc/powerpc/swtch64.S soc2013/def/crashdump-head/sys/powerpc/powerpc/trap.c soc2013/def/crashdump-head/sys/powerpc/powerpc/vm_machdep.c soc2013/def/crashdump-head/sys/powerpc/pseries/mmu_phyp.c soc2013/def/crashdump-head/sys/powerpc/pseries/phyp_console.c soc2013/def/crashdump-head/sys/powerpc/pseries/phyp_llan.c soc2013/def/crashdump-head/sys/powerpc/pseries/phyp_vscsi.c soc2013/def/crashdump-head/sys/powerpc/pseries/platform_chrp.c soc2013/def/crashdump-head/sys/powerpc/pseries/plpar_iommu.c soc2013/def/crashdump-head/sys/powerpc/pseries/rtas_pci.c soc2013/def/crashdump-head/sys/powerpc/pseries/vdevice.c soc2013/def/crashdump-head/sys/rpc/rpc_generic.c soc2013/def/crashdump-head/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c soc2013/def/crashdump-head/sys/rpc/svc.c soc2013/def/crashdump-head/sys/rpc/svc_vc.c soc2013/def/crashdump-head/sys/security/audit/audit_arg.c soc2013/def/crashdump-head/sys/security/audit/audit_bsm_klib.c soc2013/def/crashdump-head/sys/sparc64/conf/GENERIC soc2013/def/crashdump-head/sys/sparc64/ebus/ebus.c soc2013/def/crashdump-head/sys/sparc64/include/atomic.h soc2013/def/crashdump-head/sys/sparc64/include/dump.h soc2013/def/crashdump-head/sys/sparc64/include/float.h soc2013/def/crashdump-head/sys/sparc64/include/in_cksum.h soc2013/def/crashdump-head/sys/sparc64/include/kerneldump.h soc2013/def/crashdump-head/sys/sparc64/include/md_var.h soc2013/def/crashdump-head/sys/sparc64/include/pcpu.h soc2013/def/crashdump-head/sys/sparc64/include/smp.h soc2013/def/crashdump-head/sys/sparc64/include/vmparam.h soc2013/def/crashdump-head/sys/sparc64/pci/fire.c soc2013/def/crashdump-head/sys/sparc64/pci/firereg.h soc2013/def/crashdump-head/sys/sparc64/pci/firevar.h soc2013/def/crashdump-head/sys/sparc64/pci/ofw_pci.h soc2013/def/crashdump-head/sys/sparc64/pci/psycho.c soc2013/def/crashdump-head/sys/sparc64/pci/psychoreg.h soc2013/def/crashdump-head/sys/sparc64/pci/psychovar.h soc2013/def/crashdump-head/sys/sparc64/pci/schizo.c soc2013/def/crashdump-head/sys/sparc64/pci/schizoreg.h soc2013/def/crashdump-head/sys/sparc64/pci/schizovar.h soc2013/def/crashdump-head/sys/sparc64/sparc64/bus_machdep.c soc2013/def/crashdump-head/sys/sparc64/sparc64/db_disasm.c soc2013/def/crashdump-head/sys/sparc64/sparc64/dump_machdep.c soc2013/def/crashdump-head/sys/sparc64/sparc64/elf_machdep.c soc2013/def/crashdump-head/sys/sparc64/sparc64/exception.S soc2013/def/crashdump-head/sys/sparc64/sparc64/machdep.c soc2013/def/crashdump-head/sys/sparc64/sparc64/mp_machdep.c soc2013/def/crashdump-head/sys/sparc64/sparc64/pmap.c soc2013/def/crashdump-head/sys/sparc64/sparc64/stack_machdep.c soc2013/def/crashdump-head/sys/sparc64/sparc64/support.S soc2013/def/crashdump-head/sys/sparc64/sparc64/tick.c soc2013/def/crashdump-head/sys/sparc64/sparc64/trap.c soc2013/def/crashdump-head/sys/sys/_bitset.h soc2013/def/crashdump-head/sys/sys/_stdint.h soc2013/def/crashdump-head/sys/sys/acl.h soc2013/def/crashdump-head/sys/sys/ata.h soc2013/def/crashdump-head/sys/sys/buf.h soc2013/def/crashdump-head/sys/sys/bus.h soc2013/def/crashdump-head/sys/sys/bus_dma.h soc2013/def/crashdump-head/sys/sys/callout.h soc2013/def/crashdump-head/sys/sys/capsicum.h soc2013/def/crashdump-head/sys/sys/cdefs.h soc2013/def/crashdump-head/sys/sys/conf.h soc2013/def/crashdump-head/sys/sys/cpuset.h soc2013/def/crashdump-head/sys/sys/diskmbr.h soc2013/def/crashdump-head/sys/sys/dnv.h soc2013/def/crashdump-head/sys/sys/domain.h soc2013/def/crashdump-head/sys/sys/elf_common.h soc2013/def/crashdump-head/sys/sys/event.h soc2013/def/crashdump-head/sys/sys/exec.h soc2013/def/crashdump-head/sys/sys/file.h soc2013/def/crashdump-head/sys/sys/filedesc.h soc2013/def/crashdump-head/sys/sys/hhook.h soc2013/def/crashdump-head/sys/sys/imgact.h soc2013/def/crashdump-head/sys/sys/imgact_elf.h soc2013/def/crashdump-head/sys/sys/jail.h soc2013/def/crashdump-head/sys/sys/kernel.h soc2013/def/crashdump-head/sys/sys/kthread.h soc2013/def/crashdump-head/sys/sys/ktr.h soc2013/def/crashdump-head/sys/sys/ktr_class.h soc2013/def/crashdump-head/sys/sys/libkern.h soc2013/def/crashdump-head/sys/sys/linker.h soc2013/def/crashdump-head/sys/sys/linker_set.h soc2013/def/crashdump-head/sys/sys/lockmgr.h soc2013/def/crashdump-head/sys/sys/lockstat.h soc2013/def/crashdump-head/sys/sys/loginclass.h soc2013/def/crashdump-head/sys/sys/malloc.h soc2013/def/crashdump-head/sys/sys/mbuf.h soc2013/def/crashdump-head/sys/sys/mman.h soc2013/def/crashdump-head/sys/sys/module.h soc2013/def/crashdump-head/sys/sys/mount.h soc2013/def/crashdump-head/sys/sys/mouse.h soc2013/def/crashdump-head/sys/sys/msg.h soc2013/def/crashdump-head/sys/sys/mutex.h soc2013/def/crashdump-head/sys/sys/nlist_aout.h soc2013/def/crashdump-head/sys/sys/nv.h soc2013/def/crashdump-head/sys/sys/param.h soc2013/def/crashdump-head/sys/sys/pcpu.h soc2013/def/crashdump-head/sys/sys/pmc.h soc2013/def/crashdump-head/sys/sys/posix4.h soc2013/def/crashdump-head/sys/sys/proc.h soc2013/def/crashdump-head/sys/sys/ptrace.h soc2013/def/crashdump-head/sys/sys/queue.h soc2013/def/crashdump-head/sys/sys/racct.h soc2013/def/crashdump-head/sys/sys/random.h soc2013/def/crashdump-head/sys/sys/reboot.h soc2013/def/crashdump-head/sys/sys/resourcevar.h soc2013/def/crashdump-head/sys/sys/rwlock.h soc2013/def/crashdump-head/sys/sys/sbuf.h soc2013/def/crashdump-head/sys/sys/sdt.h soc2013/def/crashdump-head/sys/sys/sem.h soc2013/def/crashdump-head/sys/sys/seq.h soc2013/def/crashdump-head/sys/sys/shm.h soc2013/def/crashdump-head/sys/sys/slicer.h soc2013/def/crashdump-head/sys/sys/socketvar.h soc2013/def/crashdump-head/sys/sys/sockio.h soc2013/def/crashdump-head/sys/sys/stack.h soc2013/def/crashdump-head/sys/sys/stdint.h soc2013/def/crashdump-head/sys/sys/sx.h soc2013/def/crashdump-head/sys/sys/syscall.h soc2013/def/crashdump-head/sys/sys/syscall.mk soc2013/def/crashdump-head/sys/sys/syscallsubr.h soc2013/def/crashdump-head/sys/sys/sysctl.h soc2013/def/crashdump-head/sys/sys/sysent.h soc2013/def/crashdump-head/sys/sys/sysproto.h soc2013/def/crashdump-head/sys/sys/systm.h soc2013/def/crashdump-head/sys/sys/timeet.h soc2013/def/crashdump-head/sys/sys/timepps.h soc2013/def/crashdump-head/sys/sys/timetc.h soc2013/def/crashdump-head/sys/sys/types.h soc2013/def/crashdump-head/sys/sys/ucred.h soc2013/def/crashdump-head/sys/sys/umtx.h soc2013/def/crashdump-head/sys/sys/unpcb.h soc2013/def/crashdump-head/sys/sys/user.h soc2013/def/crashdump-head/sys/sys/vdso.h soc2013/def/crashdump-head/sys/sys/vmmeter.h soc2013/def/crashdump-head/sys/sys/vnode.h soc2013/def/crashdump-head/sys/sys/wait.h soc2013/def/crashdump-head/sys/teken/demo/teken_demo.c soc2013/def/crashdump-head/sys/teken/teken.c soc2013/def/crashdump-head/sys/teken/teken_subr.h soc2013/def/crashdump-head/sys/tools/fw_stub.awk soc2013/def/crashdump-head/sys/tools/vnode_if.awk soc2013/def/crashdump-head/sys/ufs/ffs/ffs_alloc.c soc2013/def/crashdump-head/sys/ufs/ffs/ffs_balloc.c soc2013/def/crashdump-head/sys/ufs/ffs/ffs_inode.c soc2013/def/crashdump-head/sys/ufs/ffs/ffs_rawread.c soc2013/def/crashdump-head/sys/ufs/ffs/ffs_softdep.c soc2013/def/crashdump-head/sys/ufs/ffs/ffs_subr.c soc2013/def/crashdump-head/sys/ufs/ffs/ffs_suspend.c soc2013/def/crashdump-head/sys/ufs/ffs/ffs_vfsops.c soc2013/def/crashdump-head/sys/ufs/ffs/ffs_vnops.c soc2013/def/crashdump-head/sys/ufs/ufs/ufs_bmap.c soc2013/def/crashdump-head/sys/ufs/ufs/ufs_dirhash.c soc2013/def/crashdump-head/sys/vm/default_pager.c soc2013/def/crashdump-head/sys/vm/device_pager.c soc2013/def/crashdump-head/sys/vm/phys_pager.c soc2013/def/crashdump-head/sys/vm/pmap.h soc2013/def/crashdump-head/sys/vm/sg_pager.c soc2013/def/crashdump-head/sys/vm/swap_pager.c soc2013/def/crashdump-head/sys/vm/uma.h soc2013/def/crashdump-head/sys/vm/uma_core.c soc2013/def/crashdump-head/sys/vm/uma_dbg.c soc2013/def/crashdump-head/sys/vm/vm_extern.h soc2013/def/crashdump-head/sys/vm/vm_fault.c soc2013/def/crashdump-head/sys/vm/vm_glue.c soc2013/def/crashdump-head/sys/vm/vm_init.c soc2013/def/crashdump-head/sys/vm/vm_kern.c soc2013/def/crashdump-head/sys/vm/vm_map.c soc2013/def/crashdump-head/sys/vm/vm_map.h soc2013/def/crashdump-head/sys/vm/vm_meter.c soc2013/def/crashdump-head/sys/vm/vm_mmap.c soc2013/def/crashdump-head/sys/vm/vm_object.c soc2013/def/crashdump-head/sys/vm/vm_object.h soc2013/def/crashdump-head/sys/vm/vm_page.c soc2013/def/crashdump-head/sys/vm/vm_page.h soc2013/def/crashdump-head/sys/vm/vm_pageout.c soc2013/def/crashdump-head/sys/vm/vm_pageout.h soc2013/def/crashdump-head/sys/vm/vm_pager.c soc2013/def/crashdump-head/sys/vm/vm_pager.h soc2013/def/crashdump-head/sys/vm/vm_param.h soc2013/def/crashdump-head/sys/vm/vm_phys.c soc2013/def/crashdump-head/sys/vm/vm_phys.h soc2013/def/crashdump-head/sys/vm/vm_reserv.c soc2013/def/crashdump-head/sys/vm/vm_unix.c soc2013/def/crashdump-head/sys/vm/vnode_pager.c soc2013/def/crashdump-head/sys/x86/acpica/acpi_wakeup.c soc2013/def/crashdump-head/sys/x86/acpica/madt.c soc2013/def/crashdump-head/sys/x86/acpica/srat.c soc2013/def/crashdump-head/sys/x86/include/_types.h soc2013/def/crashdump-head/sys/x86/include/acpica_machdep.h soc2013/def/crashdump-head/sys/x86/include/apicvar.h soc2013/def/crashdump-head/sys/x86/include/bus.h soc2013/def/crashdump-head/sys/x86/include/float.h soc2013/def/crashdump-head/sys/x86/include/ofw_machdep.h soc2013/def/crashdump-head/sys/x86/include/ptrace.h soc2013/def/crashdump-head/sys/x86/include/segments.h soc2013/def/crashdump-head/sys/x86/include/specialreg.h soc2013/def/crashdump-head/sys/x86/iommu/busdma_dmar.c soc2013/def/crashdump-head/sys/x86/iommu/intel_ctx.c soc2013/def/crashdump-head/sys/x86/iommu/intel_dmar.h soc2013/def/crashdump-head/sys/x86/iommu/intel_drv.c soc2013/def/crashdump-head/sys/x86/iommu/intel_gas.c soc2013/def/crashdump-head/sys/x86/iommu/intel_idpgtbl.c soc2013/def/crashdump-head/sys/x86/iommu/intel_qi.c soc2013/def/crashdump-head/sys/x86/iommu/intel_utils.c soc2013/def/crashdump-head/sys/x86/isa/atrtc.c soc2013/def/crashdump-head/sys/x86/pci/pci_bus.c soc2013/def/crashdump-head/sys/x86/pci/qpi.c soc2013/def/crashdump-head/sys/x86/x86/busdma_bounce.c soc2013/def/crashdump-head/sys/x86/x86/cpu_machdep.c soc2013/def/crashdump-head/sys/x86/x86/fdt_machdep.c soc2013/def/crashdump-head/sys/x86/x86/identcpu.c soc2013/def/crashdump-head/sys/x86/x86/intr_machdep.c soc2013/def/crashdump-head/sys/x86/x86/local_apic.c soc2013/def/crashdump-head/sys/x86/x86/mca.c soc2013/def/crashdump-head/sys/x86/x86/mp_x86.c soc2013/def/crashdump-head/sys/x86/x86/mptable_pci.c soc2013/def/crashdump-head/sys/x86/x86/nexus.c soc2013/def/crashdump-head/sys/x86/xen/hvm.c soc2013/def/crashdump-head/sys/x86/xen/pv.c soc2013/def/crashdump-head/sys/x86/xen/xen_apic.c soc2013/def/crashdump-head/sys/x86/xen/xen_intr.c soc2013/def/crashdump-head/sys/x86/xen/xen_nexus.c soc2013/def/crashdump-head/sys/x86/xen/xenpv.c soc2013/def/crashdump-head/sys/xen/blkif.h soc2013/def/crashdump-head/sys/xen/gnttab.h soc2013/def/crashdump-head/sys/xen/hypervisor.h soc2013/def/crashdump-head/sys/xen/interface/arch-arm.h soc2013/def/crashdump-head/sys/xen/interface/arch-arm/hvm/save.h soc2013/def/crashdump-head/sys/xen/interface/arch-x86/cpuid.h soc2013/def/crashdump-head/sys/xen/interface/arch-x86/hvm/save.h soc2013/def/crashdump-head/sys/xen/interface/arch-x86/xen-mca.h soc2013/def/crashdump-head/sys/xen/interface/arch-x86/xen-x86_32.h soc2013/def/crashdump-head/sys/xen/interface/arch-x86/xen-x86_64.h soc2013/def/crashdump-head/sys/xen/interface/arch-x86/xen.h soc2013/def/crashdump-head/sys/xen/interface/callback.h soc2013/def/crashdump-head/sys/xen/interface/dom0_ops.h soc2013/def/crashdump-head/sys/xen/interface/domctl.h soc2013/def/crashdump-head/sys/xen/interface/elfnote.h soc2013/def/crashdump-head/sys/xen/interface/event_channel.h soc2013/def/crashdump-head/sys/xen/interface/features.h soc2013/def/crashdump-head/sys/xen/interface/grant_table.h soc2013/def/crashdump-head/sys/xen/interface/hvm/e820.h soc2013/def/crashdump-head/sys/xen/interface/hvm/hvm_info_table.h soc2013/def/crashdump-head/sys/xen/interface/hvm/hvm_op.h soc2013/def/crashdump-head/sys/xen/interface/hvm/ioreq.h soc2013/def/crashdump-head/sys/xen/interface/hvm/params.h soc2013/def/crashdump-head/sys/xen/interface/hvm/save.h soc2013/def/crashdump-head/sys/xen/interface/io/blkif.h soc2013/def/crashdump-head/sys/xen/interface/io/console.h soc2013/def/crashdump-head/sys/xen/interface/io/fbif.h soc2013/def/crashdump-head/sys/xen/interface/io/kbdif.h soc2013/def/crashdump-head/sys/xen/interface/io/libxenvchan.h soc2013/def/crashdump-head/sys/xen/interface/io/netif.h soc2013/def/crashdump-head/sys/xen/interface/io/pciif.h soc2013/def/crashdump-head/sys/xen/interface/io/protocols.h soc2013/def/crashdump-head/sys/xen/interface/io/ring.h soc2013/def/crashdump-head/sys/xen/interface/io/tpmif.h soc2013/def/crashdump-head/sys/xen/interface/io/usbif.h soc2013/def/crashdump-head/sys/xen/interface/io/vscsiif.h soc2013/def/crashdump-head/sys/xen/interface/io/xenbus.h soc2013/def/crashdump-head/sys/xen/interface/io/xs_wire.h soc2013/def/crashdump-head/sys/xen/interface/kexec.h soc2013/def/crashdump-head/sys/xen/interface/memory.h soc2013/def/crashdump-head/sys/xen/interface/nmi.h soc2013/def/crashdump-head/sys/xen/interface/physdev.h soc2013/def/crashdump-head/sys/xen/interface/platform.h soc2013/def/crashdump-head/sys/xen/interface/sched.h soc2013/def/crashdump-head/sys/xen/interface/sysctl.h soc2013/def/crashdump-head/sys/xen/interface/tmem.h soc2013/def/crashdump-head/sys/xen/interface/trace.h soc2013/def/crashdump-head/sys/xen/interface/vcpu.h soc2013/def/crashdump-head/sys/xen/interface/version.h soc2013/def/crashdump-head/sys/xen/interface/xen-compat.h soc2013/def/crashdump-head/sys/xen/interface/xen.h soc2013/def/crashdump-head/sys/xen/interface/xenoprof.h soc2013/def/crashdump-head/sys/xen/interface/xsm/flask_op.h soc2013/def/crashdump-head/sys/xen/xen-os.h soc2013/def/crashdump-head/sys/xen/xen_intr.h soc2013/def/crashdump-head/tools/bsdbox/Makefile.base soc2013/def/crashdump-head/tools/bsdbox/Makefile.net soc2013/def/crashdump-head/tools/build/Makefile soc2013/def/crashdump-head/tools/build/check-links.sh soc2013/def/crashdump-head/tools/build/mk/Makefile.boot soc2013/def/crashdump-head/tools/build/mk/OptionalObsoleteFiles.inc soc2013/def/crashdump-head/tools/build/options/WITHOUT_BINUTILS soc2013/def/crashdump-head/tools/build/options/makeman soc2013/def/crashdump-head/tools/bus_space/C/Makefile soc2013/def/crashdump-head/tools/bus_space/C/lang.c soc2013/def/crashdump-head/tools/bus_space/Makefile.inc soc2013/def/crashdump-head/tools/bus_space/Python/Makefile soc2013/def/crashdump-head/tools/bus_space/Python/lang.c soc2013/def/crashdump-head/tools/debugscripts/kld_deb.py soc2013/def/crashdump-head/tools/install.sh soc2013/def/crashdump-head/tools/regression/aio/aiop/Makefile soc2013/def/crashdump-head/tools/regression/aio/aiop/aiop.c soc2013/def/crashdump-head/tools/regression/capsicum/libcapsicum/sysctl.c soc2013/def/crashdump-head/tools/regression/gaithrstress/gaithrstress.c soc2013/def/crashdump-head/tools/regression/lib/libc/nss/mach soc2013/def/crashdump-head/tools/regression/lib/libc/nss/test-getaddr.c soc2013/def/crashdump-head/tools/regression/lib/libc/nss/test-getgr.c soc2013/def/crashdump-head/tools/regression/lib/libc/nss/test-gethostby.c soc2013/def/crashdump-head/tools/regression/lib/libc/nss/test-getproto.c soc2013/def/crashdump-head/tools/regression/lib/libc/nss/test-getpw.c soc2013/def/crashdump-head/tools/regression/lib/libc/nss/test-getrpc.c soc2013/def/crashdump-head/tools/regression/lib/libc/nss/test-getserv.c soc2013/def/crashdump-head/tools/regression/lib/libc/nss/test-getusershell.c soc2013/def/crashdump-head/tools/regression/lib/libc/nss/testutil.h soc2013/def/crashdump-head/tools/regression/lib/libc/resolv/mach soc2013/def/crashdump-head/tools/regression/lib/libc/resolv/resolv.c soc2013/def/crashdump-head/tools/regression/lib/msun/test-cexp.c soc2013/def/crashdump-head/tools/regression/lib/msun/test-csqrt.c soc2013/def/crashdump-head/tools/regression/lib/msun/test-fenv.c soc2013/def/crashdump-head/tools/regression/lib/msun/test-invtrig.c soc2013/def/crashdump-head/tools/regression/lib/msun/test-trig.c soc2013/def/crashdump-head/tools/regression/net80211/ccmp/test_ccmp.c soc2013/def/crashdump-head/tools/regression/net80211/tkip/test_tkip.c soc2013/def/crashdump-head/tools/regression/net80211/wep/test_wep.c soc2013/def/crashdump-head/tools/regression/netinet/ip_id_period/ip_id_period.py soc2013/def/crashdump-head/tools/regression/p1003_1b/Makefile soc2013/def/crashdump-head/tools/regression/p1003_1b/fifo.c soc2013/def/crashdump-head/tools/regression/p1003_1b/main.c soc2013/def/crashdump-head/tools/regression/p1003_1b/prutil.c soc2013/def/crashdump-head/tools/regression/p1003_1b/sched.c soc2013/def/crashdump-head/tools/regression/p1003_1b/yield.c soc2013/def/crashdump-head/tools/regression/security/open_to_operation/Makefile soc2013/def/crashdump-head/tools/regression/security/open_to_operation/open_to_operation.c soc2013/def/crashdump-head/tools/sched/schedgraph.py soc2013/def/crashdump-head/tools/test/README soc2013/def/crashdump-head/tools/tools/README soc2013/def/crashdump-head/tools/tools/ath/athaggrstats/Makefile soc2013/def/crashdump-head/tools/tools/ath/athaggrstats/athaggrstats.c soc2013/def/crashdump-head/tools/tools/ath/athaggrstats/main.c soc2013/def/crashdump-head/tools/tools/ath/athdebug/athdebug.c soc2013/def/crashdump-head/tools/tools/ath/athrd/athrd.c soc2013/def/crashdump-head/tools/tools/ath/athstats/Makefile soc2013/def/crashdump-head/tools/tools/ath/athstats/athstats.c soc2013/def/crashdump-head/tools/tools/ath/athstats/main.c soc2013/def/crashdump-head/tools/tools/ath/common/ah_osdep.h soc2013/def/crashdump-head/tools/tools/ath/common/dumpregs_5210.c soc2013/def/crashdump-head/tools/tools/ath/common/dumpregs_5211.c soc2013/def/crashdump-head/tools/tools/ath/common/dumpregs_5212.c soc2013/def/crashdump-head/tools/tools/ath/common/dumpregs_5416.c soc2013/def/crashdump-head/tools/tools/crypto/cryptostats.c soc2013/def/crashdump-head/tools/tools/crypto/cryptotest.c soc2013/def/crashdump-head/tools/tools/crypto/hifnstats.c soc2013/def/crashdump-head/tools/tools/crypto/ipsecstats.c soc2013/def/crashdump-head/tools/tools/crypto/safestats.c soc2013/def/crashdump-head/tools/tools/crypto/ubsecstats.c soc2013/def/crashdump-head/tools/tools/cxgbetool/cxgbetool.c soc2013/def/crashdump-head/tools/tools/iwn/iwnstats/iwn_ioctl.c soc2013/def/crashdump-head/tools/tools/iwn/iwnstats/iwn_ioctl.h soc2013/def/crashdump-head/tools/tools/iwn/iwnstats/iwnstats.h soc2013/def/crashdump-head/tools/tools/iwn/iwnstats/main.c soc2013/def/crashdump-head/tools/tools/mwl/mwldebug/mwldebug.c soc2013/def/crashdump-head/tools/tools/mwl/mwlstats/Makefile soc2013/def/crashdump-head/tools/tools/mwl/mwlstats/mwlstats.c soc2013/def/crashdump-head/tools/tools/nanobsd/defaults.sh soc2013/def/crashdump-head/tools/tools/nanobsd/gateworks/common soc2013/def/crashdump-head/tools/tools/nanobsd/pcengines/common.conf soc2013/def/crashdump-head/tools/tools/nanobsd/rescue/common soc2013/def/crashdump-head/tools/tools/net80211/wlanstats/Makefile soc2013/def/crashdump-head/tools/tools/net80211/wlanstats/main.c soc2013/def/crashdump-head/tools/tools/net80211/wlanstats/wlanstats.c soc2013/def/crashdump-head/tools/tools/net80211/wlantxtime/wlantxtime.c soc2013/def/crashdump-head/tools/tools/npe/npestats/Makefile soc2013/def/crashdump-head/tools/tools/npe/npestats/main.c soc2013/def/crashdump-head/tools/tools/npe/npestats/npestats.c soc2013/def/crashdump-head/tools/tools/shlib-compat/shlib-compat.py soc2013/def/crashdump-head/tools/tools/sysbuild/sysbuild.sh soc2013/def/crashdump-head/tools/tools/usbtest/Makefile soc2013/def/crashdump-head/tools/tools/zfsboottest/Makefile soc2013/def/crashdump-head/tools/tools/zfsboottest/zfsboottest.c soc2013/def/crashdump-head/usr.bin/Makefile soc2013/def/crashdump-head/usr.bin/alias/Makefile soc2013/def/crashdump-head/usr.bin/apply/tests/Makefile soc2013/def/crashdump-head/usr.bin/ar/ar.1 soc2013/def/crashdump-head/usr.bin/ar/ar.c soc2013/def/crashdump-head/usr.bin/ar/write.c soc2013/def/crashdump-head/usr.bin/at/Makefile.inc soc2013/def/crashdump-head/usr.bin/awk/Makefile soc2013/def/crashdump-head/usr.bin/basename/tests/Makefile soc2013/def/crashdump-head/usr.bin/bc/bc.1 soc2013/def/crashdump-head/usr.bin/bc/bc.y soc2013/def/crashdump-head/usr.bin/bc/extern.h soc2013/def/crashdump-head/usr.bin/bc/tty.c soc2013/def/crashdump-head/usr.bin/bluetooth/btsockstat/btsockstat.c soc2013/def/crashdump-head/usr.bin/bmake/Makefile soc2013/def/crashdump-head/usr.bin/bmake/Makefile.inc soc2013/def/crashdump-head/usr.bin/bmake/unit-tests/Makefile soc2013/def/crashdump-head/usr.bin/brandelf/brandelf.1 soc2013/def/crashdump-head/usr.bin/bsdiff/bsdiff/bsdiff.c soc2013/def/crashdump-head/usr.bin/c99/c99.1 soc2013/def/crashdump-head/usr.bin/calendar/ (props changed) soc2013/def/crashdump-head/usr.bin/calendar/calendars/calendar.christian soc2013/def/crashdump-head/usr.bin/calendar/calendars/calendar.computer soc2013/def/crashdump-head/usr.bin/calendar/calendars/calendar.freebsd soc2013/def/crashdump-head/usr.bin/calendar/calendars/calendar.holiday soc2013/def/crashdump-head/usr.bin/calendar/io.c soc2013/def/crashdump-head/usr.bin/calendar/parsedata.c soc2013/def/crashdump-head/usr.bin/calendar/tests/Makefile soc2013/def/crashdump-head/usr.bin/checknr/checknr.1 soc2013/def/crashdump-head/usr.bin/checknr/checknr.c soc2013/def/crashdump-head/usr.bin/clang/Makefile soc2013/def/crashdump-head/usr.bin/clang/bugpoint/Makefile soc2013/def/crashdump-head/usr.bin/clang/bugpoint/bugpoint.1 soc2013/def/crashdump-head/usr.bin/clang/clang.prog.mk soc2013/def/crashdump-head/usr.bin/clang/clang/Makefile soc2013/def/crashdump-head/usr.bin/clang/llc/Makefile soc2013/def/crashdump-head/usr.bin/clang/llc/llc.1 soc2013/def/crashdump-head/usr.bin/clang/lldb/Makefile soc2013/def/crashdump-head/usr.bin/clang/lli/Makefile soc2013/def/crashdump-head/usr.bin/clang/lli/lli.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-ar/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-ar/llvm-ar.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-as/llvm-as.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-cov/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-cov/llvm-cov.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-diff/llvm-diff.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-dis/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-dis/llvm-dis.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-extract/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-extract/llvm-extract.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-link/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-link/llvm-link.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-mc/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-nm/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-nm/llvm-nm.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-objdump/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-profdata/llvm-profdata.1 soc2013/def/crashdump-head/usr.bin/clang/llvm-rtdyld/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-symbolizer/Makefile soc2013/def/crashdump-head/usr.bin/clang/llvm-symbolizer/llvm-symbolizer.1 soc2013/def/crashdump-head/usr.bin/clang/opt/Makefile soc2013/def/crashdump-head/usr.bin/clang/opt/opt.1 soc2013/def/crashdump-head/usr.bin/clang/tblgen/tblgen.1 soc2013/def/crashdump-head/usr.bin/cmp/tests/Makefile soc2013/def/crashdump-head/usr.bin/col/Makefile soc2013/def/crashdump-head/usr.bin/col/col.1 soc2013/def/crashdump-head/usr.bin/col/col.c soc2013/def/crashdump-head/usr.bin/colcrt/colcrt.1 soc2013/def/crashdump-head/usr.bin/colldef/ (props changed) soc2013/def/crashdump-head/usr.bin/colldef/Makefile soc2013/def/crashdump-head/usr.bin/colldef/parse.y soc2013/def/crashdump-head/usr.bin/colrm/colrm.1 soc2013/def/crashdump-head/usr.bin/comm/tests/Makefile soc2013/def/crashdump-head/usr.bin/cpio/Makefile soc2013/def/crashdump-head/usr.bin/ctlstat/ctlstat.8 soc2013/def/crashdump-head/usr.bin/ctlstat/ctlstat.c soc2013/def/crashdump-head/usr.bin/cut/tests/Makefile soc2013/def/crashdump-head/usr.bin/dirname/tests/Makefile soc2013/def/crashdump-head/usr.bin/dpv/dpv.1 soc2013/def/crashdump-head/usr.bin/dtc/HACKING soc2013/def/crashdump-head/usr.bin/dtc/Makefile soc2013/def/crashdump-head/usr.bin/dtc/checking.cc soc2013/def/crashdump-head/usr.bin/dtc/checking.hh soc2013/def/crashdump-head/usr.bin/dtc/dtb.cc soc2013/def/crashdump-head/usr.bin/dtc/dtb.hh soc2013/def/crashdump-head/usr.bin/dtc/dtc.cc soc2013/def/crashdump-head/usr.bin/dtc/fdt.cc soc2013/def/crashdump-head/usr.bin/dtc/fdt.hh soc2013/def/crashdump-head/usr.bin/dtc/input_buffer.cc soc2013/def/crashdump-head/usr.bin/dtc/input_buffer.hh soc2013/def/crashdump-head/usr.bin/dtc/string.hh soc2013/def/crashdump-head/usr.bin/elfcopy/Makefile soc2013/def/crashdump-head/usr.bin/elfdump/elfdump.c soc2013/def/crashdump-head/usr.bin/expand/expand.1 soc2013/def/crashdump-head/usr.bin/file2c/tests/Makefile soc2013/def/crashdump-head/usr.bin/find/extern.h soc2013/def/crashdump-head/usr.bin/find/misc.c soc2013/def/crashdump-head/usr.bin/fold/fold.1 soc2013/def/crashdump-head/usr.bin/getconf/sysconf.gperf soc2013/def/crashdump-head/usr.bin/getopt/getopt.1 soc2013/def/crashdump-head/usr.bin/grep/Makefile soc2013/def/crashdump-head/usr.bin/grep/tests/Makefile soc2013/def/crashdump-head/usr.bin/gzip/gzip.1 soc2013/def/crashdump-head/usr.bin/gzip/gzip.c soc2013/def/crashdump-head/usr.bin/gzip/tests/Makefile soc2013/def/crashdump-head/usr.bin/hexdump/display.c soc2013/def/crashdump-head/usr.bin/iconv/iconv.c soc2013/def/crashdump-head/usr.bin/indent/indent.1 soc2013/def/crashdump-head/usr.bin/ipcrm/ipcrm.c soc2013/def/crashdump-head/usr.bin/iscsictl/iscsictl.8 soc2013/def/crashdump-head/usr.bin/iscsictl/iscsictl.c soc2013/def/crashdump-head/usr.bin/join/tests/Makefile soc2013/def/crashdump-head/usr.bin/jot/tests/Makefile soc2013/def/crashdump-head/usr.bin/kdump/Makefile soc2013/def/crashdump-head/usr.bin/kdump/kdump.c soc2013/def/crashdump-head/usr.bin/kdump/mkioctls soc2013/def/crashdump-head/usr.bin/keylogin/Makefile soc2013/def/crashdump-head/usr.bin/last/last.1 soc2013/def/crashdump-head/usr.bin/last/last.c soc2013/def/crashdump-head/usr.bin/lastcomm/tests/Makefile soc2013/def/crashdump-head/usr.bin/ldd/ldd.c soc2013/def/crashdump-head/usr.bin/limits/Makefile soc2013/def/crashdump-head/usr.bin/locale/locale.c soc2013/def/crashdump-head/usr.bin/locate/locate/locate.rc soc2013/def/crashdump-head/usr.bin/locate/locate/updatedb.sh soc2013/def/crashdump-head/usr.bin/login/login.c soc2013/def/crashdump-head/usr.bin/login/login_fbtab.c soc2013/def/crashdump-head/usr.bin/look/look.1 soc2013/def/crashdump-head/usr.bin/lorder/lorder.1 soc2013/def/crashdump-head/usr.bin/lorder/lorder.sh soc2013/def/crashdump-head/usr.bin/m4/Makefile soc2013/def/crashdump-head/usr.bin/m4/eval.c soc2013/def/crashdump-head/usr.bin/m4/extern.h soc2013/def/crashdump-head/usr.bin/m4/gnum4.c soc2013/def/crashdump-head/usr.bin/m4/look.c soc2013/def/crashdump-head/usr.bin/m4/m4.1 soc2013/def/crashdump-head/usr.bin/m4/main.c soc2013/def/crashdump-head/usr.bin/m4/mdef.h soc2013/def/crashdump-head/usr.bin/m4/misc.c soc2013/def/crashdump-head/usr.bin/m4/parser.y soc2013/def/crashdump-head/usr.bin/m4/pathnames.h soc2013/def/crashdump-head/usr.bin/m4/tests/Makefile soc2013/def/crashdump-head/usr.bin/mail/Makefile soc2013/def/crashdump-head/usr.bin/mail/main.c soc2013/def/crashdump-head/usr.bin/makewhatis/Makefile soc2013/def/crashdump-head/usr.bin/man/Makefile soc2013/def/crashdump-head/usr.bin/man/man.sh soc2013/def/crashdump-head/usr.bin/mandoc/Makefile soc2013/def/crashdump-head/usr.bin/ministat/ministat.c soc2013/def/crashdump-head/usr.bin/mkcsmapper_static/Makefile soc2013/def/crashdump-head/usr.bin/mkdep/mkdep.1 soc2013/def/crashdump-head/usr.bin/mkesdb/Makefile soc2013/def/crashdump-head/usr.bin/mkesdb_static/Makefile soc2013/def/crashdump-head/usr.bin/mkimg/ (props changed) soc2013/def/crashdump-head/usr.bin/mkimg/Makefile soc2013/def/crashdump-head/usr.bin/mkimg/ebr.c soc2013/def/crashdump-head/usr.bin/mkimg/format.c soc2013/def/crashdump-head/usr.bin/mkimg/gpt.c soc2013/def/crashdump-head/usr.bin/mkimg/image.c soc2013/def/crashdump-head/usr.bin/mkimg/image.h soc2013/def/crashdump-head/usr.bin/mkimg/mbr.c soc2013/def/crashdump-head/usr.bin/mkimg/mkimg.1 soc2013/def/crashdump-head/usr.bin/mkimg/scheme.c soc2013/def/crashdump-head/usr.bin/mkimg/scheme.h soc2013/def/crashdump-head/usr.bin/mkimg/tests/Makefile soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-apm.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-apm.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-bsd.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-bsd.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-ebr.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-ebr.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-gpt.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-gpt.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-mbr.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-mbr.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-pc98.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-pc98.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-vtoc8.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-4096-vtoc8.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-apm.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-apm.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-bsd.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-bsd.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-ebr.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-ebr.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-gpt.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-gpt.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-mbr.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-mbr.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-pc98.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-pc98.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-vtoc8.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-1x1-512-vtoc8.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-apm.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-apm.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-bsd.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-bsd.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-ebr.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-ebr.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-gpt.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-gpt.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-mbr.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-mbr.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-pc98.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-pc98.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-vtoc8.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-4096-vtoc8.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-apm.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-apm.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-bsd.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-bsd.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-ebr.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-ebr.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-gpt.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-gpt.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-mbr.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-mbr.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-pc98.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-pc98.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-vtoc8.vhd.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/tests/img-63x255-512-vtoc8.vhdf.gz.uu soc2013/def/crashdump-head/usr.bin/mkimg/vhd.c soc2013/def/crashdump-head/usr.bin/mklocale/ (props changed) soc2013/def/crashdump-head/usr.bin/mkstr/mkstr.1 soc2013/def/crashdump-head/usr.bin/mkstr/mkstr.c soc2013/def/crashdump-head/usr.bin/mt/mt.c soc2013/def/crashdump-head/usr.bin/ncal/tests/Makefile soc2013/def/crashdump-head/usr.bin/netstat/Makefile soc2013/def/crashdump-head/usr.bin/netstat/flowtable.c soc2013/def/crashdump-head/usr.bin/netstat/if.c soc2013/def/crashdump-head/usr.bin/netstat/inet.c soc2013/def/crashdump-head/usr.bin/netstat/inet6.c soc2013/def/crashdump-head/usr.bin/netstat/ipsec.c soc2013/def/crashdump-head/usr.bin/netstat/main.c soc2013/def/crashdump-head/usr.bin/netstat/mbuf.c soc2013/def/crashdump-head/usr.bin/netstat/mroute.c soc2013/def/crashdump-head/usr.bin/netstat/mroute6.c soc2013/def/crashdump-head/usr.bin/netstat/netgraph.c soc2013/def/crashdump-head/usr.bin/netstat/netisr.c soc2013/def/crashdump-head/usr.bin/netstat/netstat.1 soc2013/def/crashdump-head/usr.bin/netstat/netstat.h soc2013/def/crashdump-head/usr.bin/netstat/pfkey.c soc2013/def/crashdump-head/usr.bin/netstat/route.c soc2013/def/crashdump-head/usr.bin/netstat/sctp.c soc2013/def/crashdump-head/usr.bin/patch/backupfile.c soc2013/def/crashdump-head/usr.bin/patch/common.h soc2013/def/crashdump-head/usr.bin/patch/inp.c soc2013/def/crashdump-head/usr.bin/patch/patch.1 soc2013/def/crashdump-head/usr.bin/patch/patch.c soc2013/def/crashdump-head/usr.bin/patch/pathnames.h soc2013/def/crashdump-head/usr.bin/patch/pch.c soc2013/def/crashdump-head/usr.bin/patch/util.c soc2013/def/crashdump-head/usr.bin/patch/util.h soc2013/def/crashdump-head/usr.bin/pr/egetopt.c soc2013/def/crashdump-head/usr.bin/printf/tests/Makefile soc2013/def/crashdump-head/usr.bin/procstat/ (props changed) soc2013/def/crashdump-head/usr.bin/procstat/Makefile soc2013/def/crashdump-head/usr.bin/procstat/procstat.1 soc2013/def/crashdump-head/usr.bin/procstat/procstat.c soc2013/def/crashdump-head/usr.bin/procstat/procstat.h soc2013/def/crashdump-head/usr.bin/procstat/procstat_args.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_auxv.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_basic.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_bin.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_cred.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_cs.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_files.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_kstack.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_rlimit.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_rusage.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_sigs.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_threads.c soc2013/def/crashdump-head/usr.bin/procstat/procstat_vm.c soc2013/def/crashdump-head/usr.bin/quota/quota.c soc2013/def/crashdump-head/usr.bin/rctl/rctl.8 soc2013/def/crashdump-head/usr.bin/rctl/rctl.c soc2013/def/crashdump-head/usr.bin/readelf/Makefile soc2013/def/crashdump-head/usr.bin/rsh/Makefile soc2013/def/crashdump-head/usr.bin/rsh/rsh.c soc2013/def/crashdump-head/usr.bin/rup/Makefile soc2013/def/crashdump-head/usr.bin/script/script.1 soc2013/def/crashdump-head/usr.bin/sed/compile.c soc2013/def/crashdump-head/usr.bin/sed/tests/Makefile soc2013/def/crashdump-head/usr.bin/sockstat/sockstat.1 soc2013/def/crashdump-head/usr.bin/sockstat/sockstat.c soc2013/def/crashdump-head/usr.bin/sort/sort.1.in soc2013/def/crashdump-head/usr.bin/sort/sort.c soc2013/def/crashdump-head/usr.bin/ssh-copy-id/ssh-copy-id.sh soc2013/def/crashdump-head/usr.bin/svn/Makefile soc2013/def/crashdump-head/usr.bin/svn/Makefile.inc soc2013/def/crashdump-head/usr.bin/svn/lib/Makefile soc2013/def/crashdump-head/usr.bin/svn/lib/libapr/apr.h soc2013/def/crashdump-head/usr.bin/svn/lib/libapr/apr_private.h soc2013/def/crashdump-head/usr.bin/svn/lib/libapr_util/apu.h soc2013/def/crashdump-head/usr.bin/svn/lib/libapr_util/apu_config.h soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_client/Makefile soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_diff/Makefile soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_fs/Makefile soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_fs_fs/Makefile soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_ra_serf/Makefile soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_repos/Makefile soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_subr/Makefile soc2013/def/crashdump-head/usr.bin/svn/svn/Makefile soc2013/def/crashdump-head/usr.bin/svn/svn_private_config.h soc2013/def/crashdump-head/usr.bin/svn/svnadmin/Makefile soc2013/def/crashdump-head/usr.bin/svn/svndumpfilter/Makefile soc2013/def/crashdump-head/usr.bin/svn/svnlook/Makefile soc2013/def/crashdump-head/usr.bin/svn/svnmucc/Makefile soc2013/def/crashdump-head/usr.bin/svn/svnrdump/Makefile soc2013/def/crashdump-head/usr.bin/svn/svnserve/Makefile soc2013/def/crashdump-head/usr.bin/svn/svnsync/Makefile soc2013/def/crashdump-head/usr.bin/svn/svnversion/Makefile soc2013/def/crashdump-head/usr.bin/systat/Makefile soc2013/def/crashdump-head/usr.bin/systat/cmdtab.c soc2013/def/crashdump-head/usr.bin/systat/extern.h soc2013/def/crashdump-head/usr.bin/systat/iostat.c soc2013/def/crashdump-head/usr.bin/systat/main.c soc2013/def/crashdump-head/usr.bin/systat/netstat.c soc2013/def/crashdump-head/usr.bin/systat/pigs.c soc2013/def/crashdump-head/usr.bin/systat/systat.1 soc2013/def/crashdump-head/usr.bin/systat/systat.h soc2013/def/crashdump-head/usr.bin/systat/vmstat.c soc2013/def/crashdump-head/usr.bin/tar/Makefile soc2013/def/crashdump-head/usr.bin/tests/Makefile soc2013/def/crashdump-head/usr.bin/tftp/main.c soc2013/def/crashdump-head/usr.bin/time/time.c soc2013/def/crashdump-head/usr.bin/timeout/timeout.c soc2013/def/crashdump-head/usr.bin/tip/tip/Makefile soc2013/def/crashdump-head/usr.bin/top/Makefile soc2013/def/crashdump-head/usr.bin/truncate/tests/Makefile soc2013/def/crashdump-head/usr.bin/truss/Makefile soc2013/def/crashdump-head/usr.bin/truss/amd64-linux32.c soc2013/def/crashdump-head/usr.bin/truss/extern.h soc2013/def/crashdump-head/usr.bin/truss/i386-linux.c soc2013/def/crashdump-head/usr.bin/truss/main.c soc2013/def/crashdump-head/usr.bin/truss/setup.c soc2013/def/crashdump-head/usr.bin/truss/syscall.h soc2013/def/crashdump-head/usr.bin/truss/syscalls.c soc2013/def/crashdump-head/usr.bin/truss/truss.1 soc2013/def/crashdump-head/usr.bin/truss/truss.h soc2013/def/crashdump-head/usr.bin/tset/tset.1 soc2013/def/crashdump-head/usr.bin/units/tests/Makefile soc2013/def/crashdump-head/usr.bin/units/units.c soc2013/def/crashdump-head/usr.bin/usbhidaction/usbhidaction.c soc2013/def/crashdump-head/usr.bin/uudecode/tests/Makefile soc2013/def/crashdump-head/usr.bin/uuencode/tests/Makefile soc2013/def/crashdump-head/usr.bin/vacation/Makefile soc2013/def/crashdump-head/usr.bin/vgrind/Makefile soc2013/def/crashdump-head/usr.bin/vgrind/extern.h soc2013/def/crashdump-head/usr.bin/vgrind/regexp.c soc2013/def/crashdump-head/usr.bin/vgrind/vfontedpr.c soc2013/def/crashdump-head/usr.bin/vi/catalog/Makefile soc2013/def/crashdump-head/usr.bin/vmstat/Makefile soc2013/def/crashdump-head/usr.bin/vmstat/vmstat.8 soc2013/def/crashdump-head/usr.bin/vmstat/vmstat.c soc2013/def/crashdump-head/usr.bin/vtfontcvt/Makefile soc2013/def/crashdump-head/usr.bin/vtfontcvt/vtfontcvt.c soc2013/def/crashdump-head/usr.bin/w/Makefile soc2013/def/crashdump-head/usr.bin/w/w.1 soc2013/def/crashdump-head/usr.bin/w/w.c soc2013/def/crashdump-head/usr.bin/wall/ttymsg.c soc2013/def/crashdump-head/usr.bin/wc/wc.1 soc2013/def/crashdump-head/usr.bin/whois/whois.1 soc2013/def/crashdump-head/usr.bin/whois/whois.c soc2013/def/crashdump-head/usr.bin/xargs/tests/Makefile soc2013/def/crashdump-head/usr.bin/xargs/tests/regress.sh soc2013/def/crashdump-head/usr.bin/xargs/xargs.1 soc2013/def/crashdump-head/usr.bin/xargs/xargs.c soc2013/def/crashdump-head/usr.bin/xinstall/Makefile soc2013/def/crashdump-head/usr.bin/xinstall/install.1 soc2013/def/crashdump-head/usr.bin/xinstall/xinstall.c soc2013/def/crashdump-head/usr.bin/xlint/lint1/Makefile soc2013/def/crashdump-head/usr.bin/xlint/lint1/decl.c soc2013/def/crashdump-head/usr.bin/xlint/lint1/func.c soc2013/def/crashdump-head/usr.bin/xlint/lint1/init.c soc2013/def/crashdump-head/usr.bin/xlint/lint1/lint.h soc2013/def/crashdump-head/usr.bin/xlint/lint1/lint1.h soc2013/def/crashdump-head/usr.bin/xlint/lint1/scan.l soc2013/def/crashdump-head/usr.bin/xlint/lint1/tree.c soc2013/def/crashdump-head/usr.bin/xlint/lint2/Makefile soc2013/def/crashdump-head/usr.bin/xlint/lint2/read.c soc2013/def/crashdump-head/usr.bin/xlint/llib/Makefile soc2013/def/crashdump-head/usr.bin/xo/Makefile soc2013/def/crashdump-head/usr.bin/yacc/tests/Makefile soc2013/def/crashdump-head/usr.bin/ypcat/ypcat.1 soc2013/def/crashdump-head/usr.bin/ypcat/ypcat.c soc2013/def/crashdump-head/usr.bin/ypmatch/ypmatch.1 soc2013/def/crashdump-head/usr.bin/ypmatch/ypmatch.c soc2013/def/crashdump-head/usr.bin/ypwhich/Makefile soc2013/def/crashdump-head/usr.bin/ypwhich/ypwhich.1 soc2013/def/crashdump-head/usr.bin/ypwhich/ypwhich.c soc2013/def/crashdump-head/usr.sbin/Makefile soc2013/def/crashdump-head/usr.sbin/Makefile.mips soc2013/def/crashdump-head/usr.sbin/acpi/acpiconf/acpiconf.8 soc2013/def/crashdump-head/usr.sbin/acpi/acpidb/Makefile soc2013/def/crashdump-head/usr.sbin/acpi/acpidb/acpidb.c soc2013/def/crashdump-head/usr.sbin/acpi/iasl/Makefile soc2013/def/crashdump-head/usr.sbin/amd/Makefile soc2013/def/crashdump-head/usr.sbin/arp/arp.c soc2013/def/crashdump-head/usr.sbin/bhyve/ (props changed) soc2013/def/crashdump-head/usr.sbin/bhyve/Makefile soc2013/def/crashdump-head/usr.sbin/bhyve/acpi.c soc2013/def/crashdump-head/usr.sbin/bhyve/bhyve.8 soc2013/def/crashdump-head/usr.sbin/bhyve/bhyverun.c soc2013/def/crashdump-head/usr.sbin/bhyve/block_if.c soc2013/def/crashdump-head/usr.sbin/bhyve/dbgport.c soc2013/def/crashdump-head/usr.sbin/bhyve/inout.c soc2013/def/crashdump-head/usr.sbin/bhyve/pci_ahci.c soc2013/def/crashdump-head/usr.sbin/bhyve/pci_emul.c soc2013/def/crashdump-head/usr.sbin/bhyve/pci_hostbridge.c soc2013/def/crashdump-head/usr.sbin/bhyve/pci_lpc.c soc2013/def/crashdump-head/usr.sbin/bhyve/pci_lpc.h soc2013/def/crashdump-head/usr.sbin/bhyve/pci_passthru.c soc2013/def/crashdump-head/usr.sbin/bhyve/pci_virtio_block.c soc2013/def/crashdump-head/usr.sbin/bhyve/pci_virtio_net.c soc2013/def/crashdump-head/usr.sbin/bhyve/pci_virtio_rnd.c soc2013/def/crashdump-head/usr.sbin/bhyve/task_switch.c soc2013/def/crashdump-head/usr.sbin/bhyve/uart_emul.c soc2013/def/crashdump-head/usr.sbin/bhyve/virtio.c soc2013/def/crashdump-head/usr.sbin/bhyvectl/ (props changed) soc2013/def/crashdump-head/usr.sbin/bhyvectl/Makefile soc2013/def/crashdump-head/usr.sbin/bhyvectl/bhyvectl.c soc2013/def/crashdump-head/usr.sbin/bhyveload/ (props changed) soc2013/def/crashdump-head/usr.sbin/bhyveload/bhyveload.8 soc2013/def/crashdump-head/usr.sbin/bhyveload/bhyveload.c soc2013/def/crashdump-head/usr.sbin/bluetooth/Makefile soc2013/def/crashdump-head/usr.sbin/bluetooth/bthidd/Makefile soc2013/def/crashdump-head/usr.sbin/bluetooth/bthidd/kbd.c soc2013/def/crashdump-head/usr.sbin/bluetooth/hccontrol/le.c soc2013/def/crashdump-head/usr.sbin/bluetooth/sdpcontrol/search.c soc2013/def/crashdump-head/usr.sbin/boot0cfg/boot0cfg.8 soc2013/def/crashdump-head/usr.sbin/bootparamd/bootparamd/main.c soc2013/def/crashdump-head/usr.sbin/bsdconfig/bsdconfig soc2013/def/crashdump-head/usr.sbin/bsdconfig/console/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/console/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/diskmgmt/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/diskmgmt/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/docsinstall/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/docsinstall/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/dot/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/dot/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/examples/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/includes/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/includes/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/mouse/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/mouse/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/networking/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/networking/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/networking/share/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/packages/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/packages/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/password/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/password/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/password/share/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/security/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/security/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/share/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/share/common.subr soc2013/def/crashdump-head/usr.sbin/bsdconfig/share/media/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/share/packages/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/share/sysrc.subr soc2013/def/crashdump-head/usr.sbin/bsdconfig/startup/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/startup/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/startup/share/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/timezone/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/timezone/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/timezone/share/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/ttys/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/ttys/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/usermgmt/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/usermgmt/include/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/usermgmt/share/Makefile soc2013/def/crashdump-head/usr.sbin/bsdconfig/usermgmt/share/group.subr soc2013/def/crashdump-head/usr.sbin/bsdconfig/usermgmt/share/user.subr soc2013/def/crashdump-head/usr.sbin/bsdinstall/Makefile soc2013/def/crashdump-head/usr.sbin/bsdinstall/distextract/Makefile soc2013/def/crashdump-head/usr.sbin/bsdinstall/distfetch/Makefile soc2013/def/crashdump-head/usr.sbin/bsdinstall/distfetch/distfetch.c soc2013/def/crashdump-head/usr.sbin/bsdinstall/partedit/Makefile soc2013/def/crashdump-head/usr.sbin/bsdinstall/partedit/gpart_ops.c soc2013/def/crashdump-head/usr.sbin/bsdinstall/partedit/part_wizard.c soc2013/def/crashdump-head/usr.sbin/bsdinstall/partedit/partedit.c soc2013/def/crashdump-head/usr.sbin/bsdinstall/partedit/partedit.h soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/Makefile soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/auto soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/config soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/docsinstall soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/hostname soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/jail soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/keymap soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/netconfig_ipv6 soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/rootpass soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/script soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/wlanconfig soc2013/def/crashdump-head/usr.sbin/bsdinstall/scripts/zfsboot soc2013/def/crashdump-head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_printer_tbl.c soc2013/def/crashdump-head/usr.sbin/chkgrp/chkgrp.c soc2013/def/crashdump-head/usr.sbin/chown/chgrp.1 soc2013/def/crashdump-head/usr.sbin/chown/chown.8 soc2013/def/crashdump-head/usr.sbin/chown/chown.c soc2013/def/crashdump-head/usr.sbin/config/config.h soc2013/def/crashdump-head/usr.sbin/config/main.c soc2013/def/crashdump-head/usr.sbin/config/mkmakefile.c soc2013/def/crashdump-head/usr.sbin/crunch/crunchgen/crunchgen.c soc2013/def/crashdump-head/usr.sbin/crunch/crunchide/exec_elf32.c soc2013/def/crashdump-head/usr.sbin/ctladm/ctladm.8 soc2013/def/crashdump-head/usr.sbin/ctladm/ctladm.c soc2013/def/crashdump-head/usr.sbin/ctld/Makefile soc2013/def/crashdump-head/usr.sbin/ctld/chap.c soc2013/def/crashdump-head/usr.sbin/ctld/ctl.conf.5 soc2013/def/crashdump-head/usr.sbin/ctld/ctld.8 soc2013/def/crashdump-head/usr.sbin/ctld/ctld.c soc2013/def/crashdump-head/usr.sbin/ctld/ctld.h soc2013/def/crashdump-head/usr.sbin/ctld/kernel.c soc2013/def/crashdump-head/usr.sbin/ctld/keys.c soc2013/def/crashdump-head/usr.sbin/ctld/login.c soc2013/def/crashdump-head/usr.sbin/ctld/parse.y soc2013/def/crashdump-head/usr.sbin/ctld/token.l soc2013/def/crashdump-head/usr.sbin/dconschat/dconschat.c soc2013/def/crashdump-head/usr.sbin/devctl/devctl.8 soc2013/def/crashdump-head/usr.sbin/editmap/Makefile soc2013/def/crashdump-head/usr.sbin/etcupdate/etcupdate.8 soc2013/def/crashdump-head/usr.sbin/etcupdate/tests/Makefile soc2013/def/crashdump-head/usr.sbin/fifolog/Makefile soc2013/def/crashdump-head/usr.sbin/freebsd-update/freebsd-update.8 soc2013/def/crashdump-head/usr.sbin/freebsd-update/freebsd-update.sh soc2013/def/crashdump-head/usr.sbin/fstyp/Makefile soc2013/def/crashdump-head/usr.sbin/fstyp/cd9660.c soc2013/def/crashdump-head/usr.sbin/fstyp/fstyp.8 soc2013/def/crashdump-head/usr.sbin/fstyp/fstyp.c soc2013/def/crashdump-head/usr.sbin/fstyp/fstyp.h soc2013/def/crashdump-head/usr.sbin/fstyp/msdosfs.c soc2013/def/crashdump-head/usr.sbin/fwcontrol/fwmpegts.c soc2013/def/crashdump-head/usr.sbin/gssd/gssd.c soc2013/def/crashdump-head/usr.sbin/gstat/gstat.c soc2013/def/crashdump-head/usr.sbin/hyperv/Makefile.inc soc2013/def/crashdump-head/usr.sbin/i2c/i2c.c soc2013/def/crashdump-head/usr.sbin/inetd/inetd.c soc2013/def/crashdump-head/usr.sbin/iostat/iostat.8 soc2013/def/crashdump-head/usr.sbin/iovctl/iovctl.8 soc2013/def/crashdump-head/usr.sbin/iovctl/iovctl.c soc2013/def/crashdump-head/usr.sbin/iovctl/iovctl.conf.5 soc2013/def/crashdump-head/usr.sbin/iovctl/parse.c soc2013/def/crashdump-head/usr.sbin/iovctl/validate.c soc2013/def/crashdump-head/usr.sbin/iscsid/Makefile soc2013/def/crashdump-head/usr.sbin/iscsid/chap.c soc2013/def/crashdump-head/usr.sbin/iscsid/discovery.c soc2013/def/crashdump-head/usr.sbin/iscsid/iscsid.8 soc2013/def/crashdump-head/usr.sbin/iscsid/iscsid.h soc2013/def/crashdump-head/usr.sbin/iscsid/keys.c soc2013/def/crashdump-head/usr.sbin/iscsid/pdu.c soc2013/def/crashdump-head/usr.sbin/jail/ (props changed) soc2013/def/crashdump-head/usr.sbin/jail/command.c soc2013/def/crashdump-head/usr.sbin/jail/config.c soc2013/def/crashdump-head/usr.sbin/jail/jail.8 soc2013/def/crashdump-head/usr.sbin/jail/jailp.h soc2013/def/crashdump-head/usr.sbin/jail/jailparse.y soc2013/def/crashdump-head/usr.sbin/jexec/jexec.8 soc2013/def/crashdump-head/usr.sbin/jexec/jexec.c soc2013/def/crashdump-head/usr.sbin/jls/jls.c soc2013/def/crashdump-head/usr.sbin/kbdmap/kbdmap.c soc2013/def/crashdump-head/usr.sbin/kldxref/kldxref.c soc2013/def/crashdump-head/usr.sbin/lpr/Makefile soc2013/def/crashdump-head/usr.sbin/lpr/filters/Makefile soc2013/def/crashdump-head/usr.sbin/mailstats/Makefile soc2013/def/crashdump-head/usr.sbin/makefs/Makefile soc2013/def/crashdump-head/usr.sbin/makefs/cd9660.c soc2013/def/crashdump-head/usr.sbin/makefs/cd9660/cd9660_write.c soc2013/def/crashdump-head/usr.sbin/makefs/cd9660/iso9660_rrip.c soc2013/def/crashdump-head/usr.sbin/makefs/ffs.c soc2013/def/crashdump-head/usr.sbin/makefs/ffs/ffs_bswap.c soc2013/def/crashdump-head/usr.sbin/makefs/ffs/mkfs.c soc2013/def/crashdump-head/usr.sbin/makefs/ffs/newfs_extern.h soc2013/def/crashdump-head/usr.sbin/makefs/makefs.8 soc2013/def/crashdump-head/usr.sbin/makefs/makefs.c soc2013/def/crashdump-head/usr.sbin/makefs/makefs.h soc2013/def/crashdump-head/usr.sbin/makefs/mtree.c soc2013/def/crashdump-head/usr.sbin/makemap/Makefile soc2013/def/crashdump-head/usr.sbin/mergemaster/mergemaster.8 soc2013/def/crashdump-head/usr.sbin/mfiutil/mfi_foreign.c soc2013/def/crashdump-head/usr.sbin/mfiutil/mfiutil.8 soc2013/def/crashdump-head/usr.sbin/mountd/mountd.8 soc2013/def/crashdump-head/usr.sbin/mountd/mountd.c soc2013/def/crashdump-head/usr.sbin/mptable/mptable.c soc2013/def/crashdump-head/usr.sbin/nandsim/nandsim.8 soc2013/def/crashdump-head/usr.sbin/nandsim/nandsim.c soc2013/def/crashdump-head/usr.sbin/nandsim/nandsim_cfgparse.c soc2013/def/crashdump-head/usr.sbin/ndiscvt/ (props changed) soc2013/def/crashdump-head/usr.sbin/ndiscvt/Makefile soc2013/def/crashdump-head/usr.sbin/ndiscvt/inf.c soc2013/def/crashdump-head/usr.sbin/ndiscvt/inf.h soc2013/def/crashdump-head/usr.sbin/ndp/ndp.c soc2013/def/crashdump-head/usr.sbin/newsyslog/newsyslog.c soc2013/def/crashdump-head/usr.sbin/newsyslog/newsyslog.conf.5 soc2013/def/crashdump-head/usr.sbin/newsyslog/tests/Makefile soc2013/def/crashdump-head/usr.sbin/nfsd/nfsd.8 soc2013/def/crashdump-head/usr.sbin/nfsd/nfsd.c soc2013/def/crashdump-head/usr.sbin/nfsuserd/nfsuserd.8 soc2013/def/crashdump-head/usr.sbin/nfsuserd/nfsuserd.c soc2013/def/crashdump-head/usr.sbin/ngctl/dot.c soc2013/def/crashdump-head/usr.sbin/nmtree/tests/Makefile soc2013/def/crashdump-head/usr.sbin/ntp/Makefile soc2013/def/crashdump-head/usr.sbin/ntp/Makefile.inc soc2013/def/crashdump-head/usr.sbin/ntp/config.h soc2013/def/crashdump-head/usr.sbin/ntp/doc/ntp-keygen.8 soc2013/def/crashdump-head/usr.sbin/ntp/doc/ntp.conf.5 soc2013/def/crashdump-head/usr.sbin/ntp/doc/ntp.keys.5 soc2013/def/crashdump-head/usr.sbin/ntp/doc/ntpd.8 soc2013/def/crashdump-head/usr.sbin/ntp/doc/ntpdc.8 soc2013/def/crashdump-head/usr.sbin/ntp/doc/ntpq.8 soc2013/def/crashdump-head/usr.sbin/ntp/doc/ntptime.8 soc2013/def/crashdump-head/usr.sbin/ntp/doc/sntp.8 soc2013/def/crashdump-head/usr.sbin/ntp/libntp/Makefile soc2013/def/crashdump-head/usr.sbin/ntp/ntp-keygen/Makefile soc2013/def/crashdump-head/usr.sbin/ntp/ntpd/Makefile soc2013/def/crashdump-head/usr.sbin/ntp/ntpdate/Makefile soc2013/def/crashdump-head/usr.sbin/ntp/ntpdc/Makefile soc2013/def/crashdump-head/usr.sbin/ntp/ntpq/Makefile soc2013/def/crashdump-head/usr.sbin/ntp/scripts/mkver soc2013/def/crashdump-head/usr.sbin/ntp/sntp/Makefile soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/Makefile soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/backend-partmanager/Makefile soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/backend-query/Makefile soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/backend/Makefile soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/conf/Makefile soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/doc/Makefile soc2013/def/crashdump-head/usr.sbin/pc-sysinstall/examples/Makefile soc2013/def/crashdump-head/usr.sbin/pciconf/cap.c soc2013/def/crashdump-head/usr.sbin/pciconf/pathnames.h soc2013/def/crashdump-head/usr.sbin/pciconf/pciconf.8 soc2013/def/crashdump-head/usr.sbin/pciconf/pciconf.c soc2013/def/crashdump-head/usr.sbin/pkg/Makefile soc2013/def/crashdump-head/usr.sbin/pkg/config.c soc2013/def/crashdump-head/usr.sbin/pkg/config.h soc2013/def/crashdump-head/usr.sbin/pkg/dns_utils.c soc2013/def/crashdump-head/usr.sbin/pkg/pkg.c soc2013/def/crashdump-head/usr.sbin/pmcstat/pmcpl_gprof.c soc2013/def/crashdump-head/usr.sbin/pmcstat/pmcstat.8 soc2013/def/crashdump-head/usr.sbin/pmcstat/pmcstat.c soc2013/def/crashdump-head/usr.sbin/pmcstat/pmcstat.h soc2013/def/crashdump-head/usr.sbin/pmcstat/pmcstat_log.c soc2013/def/crashdump-head/usr.sbin/pmcstudy/eval_expr.c soc2013/def/crashdump-head/usr.sbin/ppp/Makefile soc2013/def/crashdump-head/usr.sbin/ppp/ip.c soc2013/def/crashdump-head/usr.sbin/ppp/ppp.8 soc2013/def/crashdump-head/usr.sbin/praliases/Makefile soc2013/def/crashdump-head/usr.sbin/pw/Makefile soc2013/def/crashdump-head/usr.sbin/pw/cpdir.c soc2013/def/crashdump-head/usr.sbin/pw/grupd.c soc2013/def/crashdump-head/usr.sbin/pw/psdate.c soc2013/def/crashdump-head/usr.sbin/pw/pw.8 soc2013/def/crashdump-head/usr.sbin/pw/pw.c soc2013/def/crashdump-head/usr.sbin/pw/pw.h soc2013/def/crashdump-head/usr.sbin/pw/pw_conf.c soc2013/def/crashdump-head/usr.sbin/pw/pw_group.c soc2013/def/crashdump-head/usr.sbin/pw/pw_log.c soc2013/def/crashdump-head/usr.sbin/pw/pw_nis.c soc2013/def/crashdump-head/usr.sbin/pw/pw_user.c soc2013/def/crashdump-head/usr.sbin/pw/pw_vpw.c soc2013/def/crashdump-head/usr.sbin/pw/pwupd.c soc2013/def/crashdump-head/usr.sbin/pw/pwupd.h soc2013/def/crashdump-head/usr.sbin/pw/rm_r.c soc2013/def/crashdump-head/usr.sbin/pw/tests/Makefile soc2013/def/crashdump-head/usr.sbin/pw/tests/helper_functions.shin soc2013/def/crashdump-head/usr.sbin/pw/tests/pw_groupdel.sh soc2013/def/crashdump-head/usr.sbin/pw/tests/pw_groupmod.sh soc2013/def/crashdump-head/usr.sbin/pw/tests/pw_useradd.sh soc2013/def/crashdump-head/usr.sbin/pw/tests/pw_userdel.sh soc2013/def/crashdump-head/usr.sbin/pw/tests/pw_usermod.sh soc2013/def/crashdump-head/usr.sbin/pwd_mkdb/pwd_mkdb.8 soc2013/def/crashdump-head/usr.sbin/pwd_mkdb/pwd_mkdb.c soc2013/def/crashdump-head/usr.sbin/rpc.yppasswdd/Makefile soc2013/def/crashdump-head/usr.sbin/rpc.yppasswdd/yppasswdd_server.c soc2013/def/crashdump-head/usr.sbin/rpcbind/rpcb_svc_com.c soc2013/def/crashdump-head/usr.sbin/rtadvctl/ (props changed) soc2013/def/crashdump-head/usr.sbin/rtadvd/ (props changed) soc2013/def/crashdump-head/usr.sbin/rtadvd/Makefile soc2013/def/crashdump-head/usr.sbin/rtadvd/config.c soc2013/def/crashdump-head/usr.sbin/rtadvd/if.c soc2013/def/crashdump-head/usr.sbin/rtadvd/rtadvd.c soc2013/def/crashdump-head/usr.sbin/rtsold/ (props changed) soc2013/def/crashdump-head/usr.sbin/rtsold/Makefile soc2013/def/crashdump-head/usr.sbin/rtsold/if.c soc2013/def/crashdump-head/usr.sbin/rtsold/probe.c soc2013/def/crashdump-head/usr.sbin/rtsold/rtsold.c soc2013/def/crashdump-head/usr.sbin/rtsold/rtsold.h soc2013/def/crashdump-head/usr.sbin/sa/tests/Makefile soc2013/def/crashdump-head/usr.sbin/sendmail/Makefile soc2013/def/crashdump-head/usr.sbin/service/service.sh soc2013/def/crashdump-head/usr.sbin/smbmsg/smbmsg.c soc2013/def/crashdump-head/usr.sbin/syslogd/pathnames.h soc2013/def/crashdump-head/usr.sbin/syslogd/syslogd.8 soc2013/def/crashdump-head/usr.sbin/syslogd/syslogd.c soc2013/def/crashdump-head/usr.sbin/sysrc/Makefile soc2013/def/crashdump-head/usr.sbin/sysrc/sysrc soc2013/def/crashdump-head/usr.sbin/sysrc/sysrc.8 soc2013/def/crashdump-head/usr.sbin/tcpdchk/Makefile soc2013/def/crashdump-head/usr.sbin/tcpdmatch/Makefile soc2013/def/crashdump-head/usr.sbin/tcpdump/tcpdump/Makefile soc2013/def/crashdump-head/usr.sbin/tcpdump/tcpdump/config.h soc2013/def/crashdump-head/usr.sbin/tcpdump/tcpdump/tcpdump.1 soc2013/def/crashdump-head/usr.sbin/tests/Makefile soc2013/def/crashdump-head/usr.sbin/trpt/trpt.c soc2013/def/crashdump-head/usr.sbin/uathload/Makefile soc2013/def/crashdump-head/usr.sbin/uefisign/magic.h soc2013/def/crashdump-head/usr.sbin/uefisign/pe.c soc2013/def/crashdump-head/usr.sbin/uefisign/uefisign.8 soc2013/def/crashdump-head/usr.sbin/unbound/Makefile soc2013/def/crashdump-head/usr.sbin/unbound/local-setup/local-unbound-setup.sh soc2013/def/crashdump-head/usr.sbin/vigr/Makefile soc2013/def/crashdump-head/usr.sbin/wake/wake.8 soc2013/def/crashdump-head/usr.sbin/watch/watch.c soc2013/def/crashdump-head/usr.sbin/watchdogd/watchdogd.8 soc2013/def/crashdump-head/usr.sbin/watchdogd/watchdogd.c soc2013/def/crashdump-head/usr.sbin/wlandebug/wlandebug.8 soc2013/def/crashdump-head/usr.sbin/wpa/Makefile soc2013/def/crashdump-head/usr.sbin/wpa/Makefile.crypto soc2013/def/crashdump-head/usr.sbin/wpa/hostapd/Makefile soc2013/def/crashdump-head/usr.sbin/wpa/wpa_supplicant/Makefile soc2013/def/crashdump-head/usr.sbin/yp_mkdb/yp_mkdb.c soc2013/def/crashdump-head/usr.sbin/ypbind/ypbind.c soc2013/def/crashdump-head/usr.sbin/yppoll/yppoll.8 soc2013/def/crashdump-head/usr.sbin/yppoll/yppoll.c soc2013/def/crashdump-head/usr.sbin/yppush/yppush_main.c soc2013/def/crashdump-head/usr.sbin/ypserv/Makefile soc2013/def/crashdump-head/usr.sbin/ypserv/Makefile.yp soc2013/def/crashdump-head/usr.sbin/ypserv/yp_access.c soc2013/def/crashdump-head/usr.sbin/ypserv/yp_dblookup.c soc2013/def/crashdump-head/usr.sbin/ypserv/yp_dnslookup.c soc2013/def/crashdump-head/usr.sbin/ypserv/yp_error.c soc2013/def/crashdump-head/usr.sbin/ypserv/yp_main.c soc2013/def/crashdump-head/usr.sbin/ypserv/ypinit.8 soc2013/def/crashdump-head/usr.sbin/ypserv/ypinit.sh soc2013/def/crashdump-head/usr.sbin/ypset/ypset.8 soc2013/def/crashdump-head/usr.sbin/ypset/ypset.c soc2013/def/crashdump-head/usr.sbin/zic/ (props changed) soc2013/def/crashdump-head/usr.sbin/zic/zdump/Makefile soc2013/def/crashdump-head/usr.sbin/zic/zic/Makefile Modified: soc2013/def/crashdump-head/Makefile.inc1 ============================================================================== --- soc2013/def/crashdump-head/Makefile.inc1 Wed Dec 2 08:17:31 2015 (r294754) +++ soc2013/def/crashdump-head/Makefile.inc1 Wed Dec 2 10:31:52 2015 (r294755) @@ -27,9 +27,11 @@ # when NO_ROOT is set. (default: ${DESTDIR}/METALOG) # 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) +# BUILDENV_SHELL= shell to launch for the buildenv target (def:${SHELL}) # WORLD_FLAGS= additional flags to pass to make(1) during buildworld # KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel +# SUBDIR_OVERRIDE="list of dirs" to build rather than everything. +# All libraries and includes, and some build tools will still build. # # The intended user-driven targets are: @@ -46,24 +48,34 @@ .error "Both TARGET and TARGET_ARCH must be defined." .endif -.include "share/mk/src.opts.mk" -.include -.include - -# We must do lib/ and libexec/ before bin/, because if installworld -# installs a new /bin/sh, the 'make' command will *immediately* -# use that new version. And the new (dynamically-linked) /bin/sh -# will expect to find appropriate libraries in /lib and /libexec. -# +# Cross toolchain changes must be in effect before bsd.compiler.mk +# so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes. +.if defined(CROSS_TOOLCHAIN) +LOCALBASE?= /usr/local +.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" +CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}" +.endif +.include # don't depend on src.opts.mk doing it +.include "share/mk/src.opts.mk" + +# We must do lib/ and libexec/ before bin/ in case of a mid-install error to +# keep the users system reasonably usable. For static->dynamic root upgrades, +# we don't want to install a dynamic binary without rtld and the needed +# libraries. More commonly, for dynamic root, we don't want to install a +# binary that requires a newer library version that hasn't been installed yet. +# This ordering is not a guarantee though. The only guarantee of a working +# system here would require fine-grained ordering of all components based +# on their dependencies. SRCDIR?= ${.CURDIR} -.if defined(SUBDIR_OVERRIDE) +.if !empty(SUBDIR_OVERRIDE) SUBDIR= ${SUBDIR_OVERRIDE} .else SUBDIR= lib libexec -SUBDIR+=bin -.if ${MK_GAMES} != "no" -SUBDIR+=games +.if make(install*) +# Ensure libraries are installed before progressing. +SUBDIR+=.WAIT .endif +SUBDIR+=bin .if ${MK_CDDL} != "no" SUBDIR+=cddl .endif @@ -88,10 +100,6 @@ .if ${MK_OFED} != "no" SUBDIR+=contrib/ofed .endif -# -# We must do etc/ last for install/distribute to work. -# -SUBDIR+=etc # Local directories are last, since it is nice to at least get the base # system rebuilt before you do them. @@ -113,9 +121,20 @@ .warning ${_DIR} not added to SUBDIR list. See UPDATING 20141121. .endif .endfor + +# We must do etc/ last as it hooks into building the man whatis file +# by calling 'makedb' in share/man. This is only relevant for +# install/distribute so they build the whatis file after every manpage is +# installed. +.if make(install*) +SUBDIR+=.WAIT .endif +SUBDIR+=etc + +.endif # !empty(SUBDIR_OVERRIDE) .if defined(NOCLEAN) +.warning NOCLEAN option is deprecated. Use NO_CLEAN instead. NO_CLEAN= ${NOCLEAN} .endif .if defined(NO_CLEANDIR) @@ -125,8 +144,9 @@ .endif LOCAL_TOOL_DIRS?= +PACKAGEDIR?= ${DESTDIR}/${DISTDIR} -BUILDENV_SHELL?=/bin/sh +BUILDENV_SHELL?=${SHELL} SVN?= /usr/local/bin/svn SVNFLAGS?= -r HEAD @@ -139,14 +159,17 @@ .else OSRELDATE= 0 .endif +.export OSRELDATE .endif +# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION. .if !defined(VERSION) REVISION!= ${MAKE} -C ${SRCDIR}/release -V REVISION BRANCH!= ${MAKE} -C ${SRCDIR}/release -V BRANCH SRCRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ ${SRCDIR}/sys/sys/param.h VERSION= FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE} +.export VERSION .endif KNOWN_ARCHES?= aarch64/arm64 amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 @@ -219,11 +242,16 @@ # 2. build-tools stage [TMAKE] # This stage is responsible for creating the object # tree and building any tools that are needed during -# the build process. +# the build process. Some programs are listed during +# this phase because they build binaries to generate +# files needed to build these programs. This stage also +# builds the 'build-tools' target rather than 'all'. # 3. cross-tools stage [XMAKE] # This stage is responsible for creating any tools that # are needed for building the system. A cross-compiler is one -# of them. +# of them. This differs from build tools in two ways: +# 1. the 'all' target is built rather than 'build-tools' +# 2. these tools are installed into TMPPATH for stage 4. # 4. world stage [WMAKE] # This stage actually builds the world. # 5. install stage (optional) [IMAKE] @@ -233,7 +261,7 @@ BOOTSTRAPPING?= 0 # Common environment for world related stages -CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \ +CROSSENV+= MAKEOBJDIRPREFIX=${OBJTREE} \ MACHINE_ARCH=${TARGET_ARCH} \ MACHINE=${TARGET} \ CPUTYPE=${TARGET_CPUTYPE} @@ -250,11 +278,9 @@ BMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${BPATH}:${PATH} \ WORLDTMP=${WORLDTMP} \ - VERSION="${VERSION}" \ MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" -BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ - ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ - DESTDIR= \ +# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile +BSARGS= DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ SSP_CFLAGS= \ MK_HTML=no NO_LINT=yes MK_MAN=no \ @@ -262,7 +288,11 @@ -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \ MK_LLDB=no MK_TESTS=no \ - MK_INCLUDES=yes + MK_INCLUDES=yes + +BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ + ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ + ${BSARGS} # build-tools stage TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ @@ -284,8 +314,7 @@ # kernel-tools stage KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${BPATH}:${PATH} \ - WORLDTMP=${WORLDTMP} \ - VERSION="${VERSION}" + WORLDTMP=${WORLDTMP} KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \ ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ DESTDIR= \ @@ -297,9 +326,7 @@ # world stage WMAKEENV= ${CROSSENV} \ - _SHLIBDIRPREFIX=${WORLDTMP} \ _LDSCRIPTROOT= \ - VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} @@ -309,14 +336,6 @@ HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT .endif -.if ${MK_CDDL} == "no" -WMAKEENV+= MK_CTF=no -.endif - -.if defined(CROSS_TOOLCHAIN) -LOCALBASE?= /usr/local -.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" -.endif .if defined(CROSS_TOOLCHAIN_PREFIX) CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} @@ -326,6 +345,7 @@ # support the target architecture), provide a default cross-binutils prefix. # This allows aarch64 builds, for example, to automatically use the # aarch64-binutils port or package. +.if !make(showconfig) .if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \ !defined(CROSS_BINUTILS_PREFIX) CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/ @@ -333,6 +353,7 @@ .error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX. .endif .endif +.endif XCOMPILERS= CC CXX CPP .for COMPILER in ${XCOMPILERS} @@ -351,7 +372,7 @@ X${BINUTIL}?= ${${BINUTIL}} .endif .endfor -WMAKEENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \ +CROSSENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \ DEPFLAGS="${DEPFLAGS}" \ CPP="${XCPP} ${XCFLAGS}" \ AS="${XAS}" AR="${XAR}" LD="${XLD}" NM=${XNM} \ @@ -359,7 +380,7 @@ RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \ SIZE="${XSIZE}" -.if ${XCC:M/*} +.if ${XCC:N${CCACHE_BIN}:M/*} .if defined(CROSS_BINUTILS_PREFIX) # In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a # directory, but the compiler will look in the right place for it's @@ -380,6 +401,9 @@ .if defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc XCFLAGS+= -isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib XCXXFLAGS+= -I${WORLDTMP}/usr/include/c++/v1 -std=gnu++11 -L${WORLDTMP}/../lib/libc++ +# XXX: DEPFLAGS is a workaround for not properly passing CXXFLAGS to sub-makes +# due to CXX="${XCXX} ${XCXXFLAGS}". bsd.dep.mk does use CXXFLAGS when +# building C++ files so this can come out if passing CXXFLAGS down is fixed. DEPFLAGS+= -I${WORLDTMP}/usr/include/c++/v1 .else TARGET_ABI?= unknown @@ -433,20 +457,17 @@ -isystem ${LIB32TMP}/usr/include/ \ -L${LIB32TMP}/usr/lib32 \ -B${LIB32TMP}/usr/lib32 -.if ${XCC:M/*} +.if ${XCC:N${CCACHE_BIN}:M/*} LIB32FLAGS+= --sysroot=${WORLDTMP} .endif # Yes, the flags are redundant. LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${LIB32_OBJTREE} \ - _SHLIBDIRPREFIX=${LIB32TMP} \ _LDSCRIPTROOT=${LIB32TMP} \ - VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} \ LIBDIR=/usr/lib32 \ SHLIBDIR=/usr/lib32 \ - LIBPRIVATEDIR=/usr/lib32/private \ DTRACE="${DTRACE} -32" LIB32WMAKEFLAGS+= CC="${XCC} ${LIB32FLAGS}" \ CXX="${XCXX} ${LIB32FLAGS}" \ @@ -502,7 +523,7 @@ # Attempt to rebuild the entire system, with reasonable chance of # success, regardless of how old your existing system is. # -_worldtmp: +_worldtmp: .PHONY .if ${.CURDIR:C/[^,]//g} != "" # The m4 build of sendmail files doesn't like it if ',' is used # anywhere in the path of it's files. @@ -549,10 +570,25 @@ mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${WORLDTMP}/usr/lib >/dev/null .endif +.if ${MK_LIB32} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${WORLDTMP}/usr >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${WORLDTMP}/legacy/usr/lib/debug/usr >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${WORLDTMP}/usr/lib/debug/usr >/dev/null +.endif +.endif .if ${MK_TESTS} != "no" mkdir -p ${WORLDTMP}${TESTSBASE} mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ -p ${WORLDTMP}${TESTSBASE} >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mkdir -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} >/dev/null +.endif .endif .for _mtree in ${LOCAL_MTREE} mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null @@ -575,9 +611,9 @@ @echo "--------------------------------------------------------------" @echo ">>> stage 2.1: cleaning up the object tree" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/} + ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR} .if defined(LIB32TMP) - ${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/} + ${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR} .endif .endif _obj: @@ -585,7 +621,7 @@ @echo "--------------------------------------------------------------" @echo ">>> stage 2.2: rebuilding the object tree" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} par-obj + ${_+_}cd ${.CURDIR}; ${WMAKE} obj _build-tools: @echo @echo "--------------------------------------------------------------" @@ -604,7 +640,13 @@ @echo "--------------------------------------------------------------" @echo ">>> stage 4.1: building includes" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes +# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need +# headers from default SUBDIR. Do SUBDIR_OVERRIDE includes last. + ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ + includes +.if !empty(SUBDIR_OVERRIDE) && make(buildworld) + ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks includes +.endif _libraries: @echo @echo "--------------------------------------------------------------" @@ -618,15 +660,15 @@ @echo "--------------------------------------------------------------" @echo ">>> stage 4.3: make dependencies" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} par-depend + ${_+_}cd ${.CURDIR}; ${WMAKE} depend everything: @echo @echo "--------------------------------------------------------------" @echo ">>> stage 4.4: building everything" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} par-all + ${_+_}cd ${.CURDIR}; _PARALLEL_SUBUDIR_OK=1 ${WMAKE} all .if defined(LIB32TMP) -build32: +build32: .PHONY @echo @echo "--------------------------------------------------------------" @echo ">>> stage 5.1: building 32 bit shim libraries" @@ -636,73 +678,76 @@ -p ${LIB32TMP}/usr >/dev/null mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${LIB32TMP}/usr/include >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${LIB32TMP}/usr >/dev/null .if ${MK_DEBUG_FILES} != "no" mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${LIB32TMP}/usr/lib >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${LIB32TMP}/usr/lib/debug/usr >/dev/null .endif mkdir -p ${WORLDTMP} ln -sf ${.CURDIR}/sys ${WORLDTMP} .for _t in obj includes - cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t} - cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t} + ${_+_}cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t} + ${_+_}cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t} .if ${MK_CDDL} != "no" - cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t} + ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t} .endif - cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t} + ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t} .if ${MK_CRYPT} != "no" - cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t} + ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t} .endif .if ${MK_KERBEROS} != "no" - cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t} + ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t} .endif .endfor .for _dir in usr.bin/lex/lib - cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj + ${_+_}cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj .endfor .for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic - cd ${.CURDIR}/${_dir}; \ + ${_+_}cd ${.CURDIR}/${_dir}; \ WORLDTMP=${WORLDTMP} \ MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \ MAKEOBJDIRPREFIX=${LIB32_OBJTREE} ${MAKE} SSP_CFLAGS= DESTDIR= \ DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ build-tools .endfor - cd ${.CURDIR}; \ - ${LIB32WMAKE} -f Makefile.inc1 libraries + ${_+_}cd ${.CURDIR}; \ + ${LIB32WMAKE} -f Makefile.inc1 -DNO_FSCHG libraries .for _t in obj depend all - cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \ - DIRPRFX=libexec/rtld-elf/ ${_t} - cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \ + ${_+_}cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \ + -DNO_FSCHG DIRPRFX=libexec/rtld-elf/ ${_t} + ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \ DIRPRFX=usr.bin/ldd ${_t} .endfor -distribute32 install32: - cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} +distribute32 install32: .MAKE .PHONY + ${_+_}cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .if ${MK_CDDL} != "no" - cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif - cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .if ${MK_CRYPT} != "no" - cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif .if ${MK_KERBEROS} != "no" - cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif - cd ${.CURDIR}/libexec/rtld-elf; \ + ${_+_}cd ${.CURDIR}/libexec/rtld-elf; \ PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//} - cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} \ + ${.TARGET:S/32$//} .endif WMAKE_TGTS= -.if !defined(SUBDIR_OVERRIDE) -WMAKE_TGTS+= _worldtmp _legacy _bootstrap-tools -.endif -WMAKE_TGTS+= _cleanobj _obj _build-tools -.if !defined(SUBDIR_OVERRIDE) -WMAKE_TGTS+= _cross-tools +WMAKE_TGTS+= _worldtmp _legacy +.if empty(SUBDIR_OVERRIDE) +WMAKE_TGTS+= _bootstrap-tools .endif +WMAKE_TGTS+= _cleanobj _obj _build-tools _cross-tools WMAKE_TGTS+= _includes _libraries _depend everything -.if defined(LIB32TMP) && ${MK_LIB32} != "no" +.if defined(LIB32TMP) && ${MK_LIB32} != "no" && empty(SUBDIR_OVERRIDE) WMAKE_TGTS+= build32 .endif @@ -726,17 +771,22 @@ # modification of the current environment's PATH. In addition, we need # to quote multiword values. # -buildenvvars: - @echo ${WMAKEENV:Q} +buildenvvars: .PHONY + @echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@} .if ${.TARGETS:Mbuildenv} .if ${.MAKEFLAGS:M-j} .error The buildenv target is incompatible with -j .endif .endif -buildenv: +BUILDENV_DIR?= ${.CURDIR} +buildenv: .PHONY @echo Entering world for ${TARGET_ARCH}:${TARGET} - @cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true +.if ${BUILDENV_SHELL:M*zsh*} + @echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE} +.endif + @cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL} \ + || true TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32} toolchain: ${TOOLCHAIN_TGTS} @@ -809,9 +859,9 @@ _zoneinfo= zic tzsetup .endif -ITOOLS= [ awk cap_mkdb cat chflags chmod chown \ +ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ date echo egrep find grep id install ${_install-info} \ - ln lockf make mkdir mtree mv pwd_mkdb \ + ln make mkdir mtree mv pwd_mkdb \ rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \ ${LOCAL_ITOOLS} @@ -884,10 +934,22 @@ mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null .endif +.if ${MK_LIB32} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null +.endif +.endif .if ${MK_TESTS} != "no" && ${dist} == "tests" -mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null +.endif .endif .if defined(NO_ROOT) ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ @@ -896,10 +958,14 @@ sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \ sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG} +.if ${MK_LIB32} != "no" + ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.lib32.dist | \ + sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} +.endif .endif .endfor -mkdir ${DESTDIR}/${DISTDIR}/base - cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ + ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \ DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \ LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs @@ -940,11 +1006,11 @@ ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ tar cvf - --exclude usr/lib/debug \ @${DESTDIR}/${DISTDIR}/${dist}.meta | \ - ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}.txz + ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz .else ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ tar cvf - --exclude usr/lib/debug . | \ - ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}.txz + ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz .endif .endfor @@ -952,11 +1018,11 @@ . if defined(NO_ROOT) ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \ - ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz + ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz . else ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ tar cvLf - usr/lib/debug | \ - ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz + ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz . endif .endfor @@ -967,7 +1033,7 @@ # and do a 'make reinstall' on the *client* to install new binaries from the # most recent server build. # -reinstall: .MAKE +reinstall: .MAKE .PHONY @echo "--------------------------------------------------------------" @echo ">>> Making hierarchy" @echo "--------------------------------------------------------------" @@ -982,7 +1048,7 @@ ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32 .endif -redistribute: .MAKE +redistribute: .MAKE .PHONY @echo "--------------------------------------------------------------" @echo ">>> Distributing everything" @echo "--------------------------------------------------------------" @@ -992,9 +1058,16 @@ DISTRIBUTION=lib32 .endif -distrib-dirs distribution: .MAKE - cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ +distrib-dirs: .MAKE .PHONY + ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ + ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} + +distribution: .MAKE .PHONY + ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} + ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \ + ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \ + METALOG=${METALOG} installconfig # # buildkernel and installkernel @@ -1034,29 +1107,33 @@ BUILDKERNELS= INSTALLKERNEL= +.if defined(NO_INSTALLKERNEL) +# All of the BUILDKERNELS loops start at index 1. +BUILDKERNELS+= dummy +.endif .for _kernel in ${KERNCONF} .if exists(${KERNCONFDIR}/${_kernel}) BUILDKERNELS+= ${_kernel} -.if empty(INSTALLKERNEL) +.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL) INSTALLKERNEL= ${_kernel} .endif .endif .endfor -buildkernel ${WMAKE_TGTS} ${.ALLTARGETS:M_*}: .MAKE +${WMAKE_TGTS:N_worldtmp:Nbuild32} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY # # buildkernel # # Builds all kernels defined by BUILDKERNELS. # -buildkernel: -.if empty(BUILDKERNELS) +buildkernel: .MAKE .PHONY +.if empty(BUILDKERNELS:Ndummy) @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ false .endif @echo -.for _kernel in ${BUILDKERNELS} +.for _kernel in ${BUILDKERNELS:Ndummy} @echo "--------------------------------------------------------------" @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" @echo "--------------------------------------------------------------" @@ -1077,14 +1154,14 @@ @echo "--------------------------------------------------------------" @echo ">>> stage 2.1: cleaning up the object tree" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} .endif .if !defined(NO_KERNELOBJ) @echo @echo "--------------------------------------------------------------" @echo ">>> stage 2.2: rebuilding the object tree" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj .endif @echo @echo "--------------------------------------------------------------" @@ -1096,13 +1173,13 @@ @echo "--------------------------------------------------------------" @echo ">>> stage 3.1: making dependencies" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ .endif @echo @echo "--------------------------------------------------------------" @echo ">>> stage 3.2: building everything" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ @echo "--------------------------------------------------------------" @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" @echo "--------------------------------------------------------------" @@ -1115,6 +1192,7 @@ # installkernel installkernel.debug \ reinstallkernel reinstallkernel.debug: _installcheck_kernel +.if !defined(NO_INSTALLKERNEL) .if empty(INSTALLKERNEL) @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ false @@ -1125,8 +1203,20 @@ cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ ${CROSSENV} PATH=${TMPPATH} \ ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//} +.endif +.if ${BUILDKERNELS:[#]} > 1 +.for _kernel in ${BUILDKERNELS:[2..-1]} + @echo "--------------------------------------------------------------" + @echo ">>> Installing kernel ${_kernel}" + @echo "--------------------------------------------------------------" + cd ${KRNLOBJDIR}/${_kernel}; \ + ${CROSSENV} PATH=${TMPPATH} \ + ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//} +.endfor +.endif distributekernel distributekernel.debug: +.if !defined(NO_INSTALLKERNEL) .if empty(INSTALLKERNEL) @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ false @@ -1144,7 +1234,9 @@ sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \ ${DESTDIR}/${DISTDIR}/kernel.meta .endif -.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//} +.endif +.if ${BUILDKERNELS:[#]} > 1 +.for _kernel in ${BUILDKERNELS:[2..-1]} .if defined(NO_ROOT) echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta .endif @@ -1160,39 +1252,48 @@ ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta .endif .endfor +.endif packagekernel: .if defined(NO_ROOT) +.if !defined(NO_INSTALLKERNEL) cd ${DESTDIR}/${DISTDIR}/kernel; \ tar cvf - @${DESTDIR}/${DISTDIR}/kernel.meta | \ - ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.txz -.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//} + ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz +.endif +.if ${BUILDKERNELS:[#]} > 1 +.for _kernel in ${BUILDKERNELS:[2..-1]} cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ tar cvf - @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ - ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz + ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz .endfor +.endif .else +.if !defined(NO_INSTALLKERNEL) cd ${DESTDIR}/${DISTDIR}/kernel; \ tar cvf - . | \ - ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.txz -.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//} + ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz +.endif +.if ${BUILDKERNELS:[#]} > 1 +.for _kernel in ${BUILDKERNELS:[2..-1]} cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ tar cvf - . | \ - ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz + ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz .endfor .endif +.endif # # doxygen # # Build the API documentation with doxygen # -doxygen: +doxygen: .PHONY @if [ ! -x `/usr/bin/which doxygen` ]; then \ echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \ exit 1; \ fi - cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all + ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all # # update @@ -1212,7 +1313,7 @@ @echo "--------------------------------------------------------------" @echo ">>> Updating ${.CURDIR} using Subversion" @echo "--------------------------------------------------------------" - @(cd ${.CURDIR} && ${SVN} update ${SVNFLAGS}) + @(cd ${.CURDIR}; ${SVN} update ${SVNFLAGS}) .endif # @@ -1227,22 +1328,29 @@ # # -# legacy: Build compatibility shims for the next three targets. This is a minimal -# set of tools and shims necessary to compensate for older systems which don't have -# the APIs that the targets built in bootstrap-tools, build-tools or cross-tools. +# legacy: Build compatibility shims for the next three targets. This is a +# minimal set of tools and shims necessary to compensate for older systems +# which don't have the APIs required by the targets built in bootstrap-tools, +# build-tools or cross-tools. # + +# ELF Tool Chain libraries are needed for ELF tools and dtrace tools. +.if ${BOOTSTRAPPING} < 1100006 +_elftoolchain_libs= lib/libelf lib/libdwarf +.endif + legacy: .if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0 - @echo "ERROR: Source upgrades from versions prior to 8.0 not supported."; \ + @echo "ERROR: Source upgrades from versions prior to 8.0 are not supported."; \ false .endif -.for _tool in tools/build +.for _tool in tools/build ${_elftoolchain_libs} ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \ - cd ${.CURDIR}/${_tool} && \ - ${MAKE} DIRPRFX=${_tool}/ obj && \ - ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes && \ - ${MAKE} DIRPRFX=${_tool}/ depend && \ - ${MAKE} DIRPRFX=${_tool}/ all && \ + cd ${.CURDIR}/${_tool}; \ + ${MAKE} DIRPRFX=${_tool}/ obj; \ + ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \ + ${MAKE} DIRPRFX=${_tool}/ depend; \ + ${MAKE} DIRPRFX=${_tool}/ all; \ ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install .endfor @@ -1252,18 +1360,19 @@ # binaries is usually quite narrow. Bootstrap tools use the host's compiler and # libraries, augmented by -legacy. # -_bt= _bootstrap-tools +_bt= _bootstrap-tools .if ${MK_GAMES} != "no" -_strfile= games/fortune/strfile +_strfile= usr.bin/fortune/strfile .endif -.if ${MK_CXX} != "no" +.if ${MK_GCC} != "no" && ${MK_CXX} != "no" _gperf= gnu/usr.bin/gperf .endif .if ${MK_GROFF} != "no" -_groff= gnu/usr.bin/groff +_groff= gnu/usr.bin/groff \ + usr.bin/soelim .endif .if ${MK_VT} != "no" @@ -1275,10 +1384,10 @@ .endif .if ${BOOTSTRAPPING} < 1000002 -_m4= lib/libohash \ - usr.bin/m4 +_libopenbsd= lib/libopenbsd +_m4= usr.bin/m4 -${_bt}-usr.bin/m4: ${_bt}-lib/libohash +${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd .endif .if ${BOOTSTRAPPING} < 1000026 @@ -1294,9 +1403,14 @@ .if ${BOOTSTRAPPING} < 1000033 _lex= usr.bin/lex + +${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4 .endif -.if ${BOOTSTRAPPING} < 1001507 +# r277259 crunchide: Correct 64-bit section header offset +# r281674 crunchide: always include both 32- and 64-bit ELF support +# r285986 crunchen: use STRIPBIN rather than STRIP +.if ${BOOTSTRAPPING} < 1100078 _crunch= usr.sbin/crunch .endif @@ -1326,21 +1440,6 @@ ${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport .endif -# ELF Tool Chain libraries are needed for ELF tools and dtrace tools. -# dtrace tools are required for older bootstrap env and cross-build -# pre libdwarf -.if ${BOOTSTRAPPING} < 1100006 || (${MACHINE} != ${TARGET} || \ - ${MACHINE_ARCH} != ${TARGET_ARCH}) -_elftoolchain_libs= lib/libelf lib/libdwarf -.if ${MK_CDDL} != "no" -_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf cddl/usr.bin/ctfconvert \ - cddl/usr.bin/ctfmerge - -${_bt}-cddl/usr.bin/ctfconvert: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf -${_bt}-cddl/usr.bin/ctfmerge: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf -.endif -.endif - # Default to building the GPL DTC, but build the BSDL one if users explicitly # request it. _dtc= usr.bin/dtc @@ -1360,6 +1459,15 @@ .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} .endif +.if ${MK_MANDOCDB} != "no" +_libopenbsd?= lib/libopenbsd +_makewhatis= lib/libsqlite3 \ + usr.bin/mandoc +${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd ${_bt}-lib/libsqlite3 +.else +_makewhatis=usr.bin/makewhatis +.endif + bootstrap-tools: .PHONY # Please document (add comment) why something is in 'bootstrap-tools'. @@ -1368,8 +1476,6 @@ .for _tool in \ ${_clang_tblgen} \ ${_kerberos5_bootstrap_tools} \ - ${_elftoolchain_libs} \ - ${_dtrace_tools} \ ${_strfile} \ ${_gperf} \ ${_groff} \ @@ -1377,25 +1483,26 @@ ${_awk} \ ${_cat} \ usr.bin/lorder \ - usr.bin/makewhatis \ + ${_libopenbsd} \ + ${_makewhatis} \ usr.bin/rpcgen \ ${_sed} \ ${_yacc} \ ${_m4} \ ${_lex} \ - lib/libmd \ usr.bin/xinstall \ ${_gensnmptree} \ usr.sbin/config \ ${_crunch} \ ${_nmtree} \ - ${_vtfontcvt} + ${_vtfontcvt} \ + usr.bin/localedef ${_bt}-${_tool}: .PHONY .MAKE ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ - cd ${.CURDIR}/${_tool} && \ - ${MAKE} DIRPRFX=${_tool}/ obj && \ - ${MAKE} DIRPRFX=${_tool}/ depend && \ - ${MAKE} DIRPRFX=${_tool}/ all && \ + cd ${.CURDIR}/${_tool}; \ + ${MAKE} DIRPRFX=${_tool}/ obj; \ + ${MAKE} DIRPRFX=${_tool}/ depend; \ + ${MAKE} DIRPRFX=${_tool}/ all; \ ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install bootstrap-tools: ${_bt}-${_tool} @@ -1413,41 +1520,45 @@ .endif .if ${MK_RESCUE} != "no" -_rescue= rescue/rescue +# rescue includes programs that have build-tools targets +_rescue=rescue/rescue .endif -build-tools: .MAKE .for _tool in \ bin/csh \ bin/sh \ - ${_rescue} \ ${LOCAL_TOOL_DIRS} \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ + ${_rescue} \ ${_share} \ usr.bin/awk \ lib/libmagic \ usr.bin/mkesdb_static \ usr.bin/mkcsmapper_static \ usr.bin/vi/catalog +build-tools_${_tool}: .PHONY ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \ - cd ${.CURDIR}/${_tool} && \ - ${MAKE} DIRPRFX=${_tool}/ obj && \ + cd ${.CURDIR}/${_tool}; \ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-soc-all@freebsd.org Wed Dec 2 12:51:41 2015 Return-Path: Delivered-To: svn-soc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A1DC9A3FE80 for ; Wed, 2 Dec 2015 12:51:41 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 88C5F124B for ; Wed, 2 Dec 2015 12:51:41 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id tB2CpfUC042787 for ; Wed, 2 Dec 2015 12:51:41 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id tB2CpdUg042230 for svn-soc-all@FreeBSD.org; Wed, 2 Dec 2015 12:51:39 GMT (envelope-from def@FreeBSD.org) Date: Wed, 2 Dec 2015 12:51:39 GMT Message-Id: <201512021251.tB2CpdUg042230@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r294759 - in soc2013/def/crashdump-head: . bin bin/cat bin/cat/tests bin/chflags bin/chio bin/chmod bin/cp bin/csh bin/date bin/date/tests bin/dd bin/dd/tests bin/df bin/domainname b... MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 12:51:41 -0000 Author: def Date: Wed Dec 2 12:51:27 2015 New Revision: 294759 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=294759 Log: IFC@294754. Added: soc2013/def/crashdump-head/bin/cat/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/cat/Makefile.depend soc2013/def/crashdump-head/bin/chflags/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/chflags/Makefile.depend soc2013/def/crashdump-head/bin/chio/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/chio/Makefile.depend soc2013/def/crashdump-head/bin/chmod/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/chmod/Makefile.depend soc2013/def/crashdump-head/bin/cp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/cp/Makefile.depend soc2013/def/crashdump-head/bin/csh/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/csh/Makefile.depend soc2013/def/crashdump-head/bin/date/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/date/Makefile.depend soc2013/def/crashdump-head/bin/dd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/dd/Makefile.depend soc2013/def/crashdump-head/bin/dd/tests/ - copied from r294754, mirror/FreeBSD/head/bin/dd/tests/ soc2013/def/crashdump-head/bin/df/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/df/Makefile.depend soc2013/def/crashdump-head/bin/domainname/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/domainname/Makefile.depend soc2013/def/crashdump-head/bin/echo/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/echo/Makefile.depend soc2013/def/crashdump-head/bin/ed/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/ed/Makefile.depend soc2013/def/crashdump-head/bin/expr/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/expr/Makefile.depend soc2013/def/crashdump-head/bin/freebsd-version/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/freebsd-version/Makefile.depend soc2013/def/crashdump-head/bin/getfacl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/getfacl/Makefile.depend soc2013/def/crashdump-head/bin/hostname/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/hostname/Makefile.depend soc2013/def/crashdump-head/bin/kenv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/kenv/Makefile.depend soc2013/def/crashdump-head/bin/kill/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/kill/Makefile.depend soc2013/def/crashdump-head/bin/ln/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/ln/Makefile.depend soc2013/def/crashdump-head/bin/ls/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/ls/Makefile.depend soc2013/def/crashdump-head/bin/ls/tests/ - copied from r294754, mirror/FreeBSD/head/bin/ls/tests/ soc2013/def/crashdump-head/bin/mkdir/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/mkdir/Makefile.depend soc2013/def/crashdump-head/bin/mv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/mv/Makefile.depend soc2013/def/crashdump-head/bin/pax/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/pax/Makefile.depend soc2013/def/crashdump-head/bin/pkill/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/pkill/Makefile.depend soc2013/def/crashdump-head/bin/ps/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/ps/Makefile.depend soc2013/def/crashdump-head/bin/pwait/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/pwait/Makefile.depend soc2013/def/crashdump-head/bin/pwd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/pwd/Makefile.depend soc2013/def/crashdump-head/bin/rcp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/rcp/Makefile.depend soc2013/def/crashdump-head/bin/realpath/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/realpath/Makefile.depend soc2013/def/crashdump-head/bin/rm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/rm/Makefile.depend soc2013/def/crashdump-head/bin/rmail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/rmail/Makefile.depend soc2013/def/crashdump-head/bin/rmdir/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/rmdir/Makefile.depend soc2013/def/crashdump-head/bin/setfacl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/setfacl/Makefile.depend soc2013/def/crashdump-head/bin/sh/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/Makefile.depend soc2013/def/crashdump-head/bin/sh/tests/builtins/case20.0 - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/tests/builtins/case20.0 soc2013/def/crashdump-head/bin/sh/tests/builtins/read8.0 - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/tests/builtins/read8.0 soc2013/def/crashdump-head/bin/sh/tests/builtins/read9.0 - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/tests/builtins/read9.0 soc2013/def/crashdump-head/bin/sh/tests/errors/bad-parm-exp7.0 - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/tests/errors/bad-parm-exp7.0 soc2013/def/crashdump-head/bin/sh/tests/errors/bad-parm-exp8.0 - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/tests/errors/bad-parm-exp8.0 soc2013/def/crashdump-head/bin/sh/tests/parameters/positional8.0 - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/tests/parameters/positional8.0 soc2013/def/crashdump-head/bin/sh/tests/parser/dollar-quote12.0 - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/tests/parser/dollar-quote12.0 soc2013/def/crashdump-head/bin/sh/tests/parser/dollar-quote13.0 - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/tests/parser/dollar-quote13.0 soc2013/def/crashdump-head/bin/sh/tests/parser/heredoc13.0 - copied unchanged from r294754, mirror/FreeBSD/head/bin/sh/tests/parser/heredoc13.0 soc2013/def/crashdump-head/bin/sleep/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/sleep/Makefile.depend soc2013/def/crashdump-head/bin/stty/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/stty/Makefile.depend soc2013/def/crashdump-head/bin/sync/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/sync/Makefile.depend soc2013/def/crashdump-head/bin/test/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/test/Makefile.depend soc2013/def/crashdump-head/bin/uuidgen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/bin/uuidgen/Makefile.depend soc2013/def/crashdump-head/contrib/gcclibs/libgomp/ChangeLog.gcc44 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/gcclibs/libgomp/ChangeLog.gcc44 soc2013/def/crashdump-head/contrib/gcclibs/libgomp/config/bsd/ - copied from r294754, mirror/FreeBSD/head/contrib/gcclibs/libgomp/config/bsd/ soc2013/def/crashdump-head/contrib/gcclibs/libgomp/config/linux/affinity.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/gcclibs/libgomp/config/linux/affinity.c soc2013/def/crashdump-head/contrib/gcclibs/libgomp/config/linux/proc.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/gcclibs/libgomp/config/linux/proc.c soc2013/def/crashdump-head/contrib/gcclibs/libgomp/config/mingw32/proc.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/gcclibs/libgomp/config/mingw32/proc.c soc2013/def/crashdump-head/contrib/gcclibs/libgomp/config/posix/affinity.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/gcclibs/libgomp/config/posix/affinity.c soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal_decls.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal_decls.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/pages.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/jemalloc/include/jemalloc/internal/pages.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/valgrind.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/jemalloc/include/jemalloc/internal/valgrind.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/jemalloc_typedefs.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/jemalloc/include/jemalloc/jemalloc_typedefs.h soc2013/def/crashdump-head/contrib/jemalloc/src/pages.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/jemalloc/src/pages.c soc2013/def/crashdump-head/contrib/ldns/freebsd-configure.sh - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ldns/freebsd-configure.sh soc2013/def/crashdump-head/contrib/ldns/packaging/ - copied from r294754, mirror/FreeBSD/head/contrib/ldns/packaging/ soc2013/def/crashdump-head/contrib/libucl/CMakeLists.txt - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/CMakeLists.txt soc2013/def/crashdump-head/contrib/libucl/tests/basic/15.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/15.inc soc2013/def/crashdump-head/contrib/libucl/tests/basic/16.res - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/16.res soc2013/def/crashdump-head/contrib/libucl/tests/basic/18.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/18.in soc2013/def/crashdump-head/contrib/libucl/tests/basic/18.res - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/18.res soc2013/def/crashdump-head/contrib/libucl/tests/basic/19-rewrite.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/19-rewrite.inc soc2013/def/crashdump-head/contrib/libucl/tests/basic/19.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/19.in soc2013/def/crashdump-head/contrib/libucl/tests/basic/20.res - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/20.res soc2013/def/crashdump-head/contrib/libucl/tests/basic/21.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/21.in soc2013/def/crashdump-head/contrib/libucl/tests/basic/22.res - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/basic/22.res soc2013/def/crashdump-head/contrib/libucl/tests/msgpack.test - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/tests/msgpack.test soc2013/def/crashdump-head/contrib/libucl/utils/ucl-tool.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libucl/utils/ucl-tool.c soc2013/def/crashdump-head/contrib/libxo/INSTALL.md - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/INSTALL.md soc2013/def/crashdump-head/contrib/libxo/encoder/ - copied from r294754, mirror/FreeBSD/head/contrib/libxo/encoder/ soc2013/def/crashdump-head/contrib/libxo/libxo/add.man - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/add.man soc2013/def/crashdump-head/contrib/libxo/libxo/add.man.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/add.man.in soc2013/def/crashdump-head/contrib/libxo/libxo/xo_buf.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_buf.h soc2013/def/crashdump-head/contrib/libxo/libxo/xo_config.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_config.h soc2013/def/crashdump-head/contrib/libxo/libxo/xo_emit_err.3 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_emit_err.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_encoder.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_encoder.c soc2013/def/crashdump-head/contrib/libxo/libxo/xo_encoder.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_encoder.h soc2013/def/crashdump-head/contrib/libxo/libxo/xo_humanize.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_humanize.h soc2013/def/crashdump-head/contrib/libxo/libxo/xo_message.3 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_message.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_open_marker.3 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_open_marker.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_set_syslog_enterprise_id.3 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_set_syslog_enterprise_id.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_set_version.3 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_set_version.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_syslog.3 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_syslog.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_syslog.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_syslog.c soc2013/def/crashdump-head/contrib/libxo/libxo/xo_wcwidth.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/libxo/xo_wcwidth.h soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_01.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_01.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_02.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_02.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_03.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_03.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_03.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_03.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_04.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_04.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_04.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_04.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_05.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_05.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_06.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_06.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_06.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_06.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_07.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_07.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_07.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_07.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_08.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_08.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_09.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_09.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_09.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_09.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.H.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.H.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.H.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.H.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.HIPx.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.HIPx.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.HIPx.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.HIPx.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.HP.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.HP.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.HP.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.HP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.J.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.J.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.J.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.J.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.JP.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.JP.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.JP.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.JP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.T.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.T.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.T.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.T.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.X.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.X.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.X.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.X.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.XP.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.XP.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.XP.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.XP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_10.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_10.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.E.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.E.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.E.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.E.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.H.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.H.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.H.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.H.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.HIPx.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.HIPx.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.HIPx.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.HIPx.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.HP.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.HP.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.HP.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.HP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.J.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.J.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.J.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.J.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.JP.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.JP.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.JP.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.JP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.T.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.T.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.T.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.T.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.X.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.X.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.X.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.X.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.XP.err - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.XP.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_11.XP.out - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/saved/test_11.XP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/test_10.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/test_10.c soc2013/def/crashdump-head/contrib/libxo/tests/core/test_11.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/tests/core/test_11.c soc2013/def/crashdump-head/contrib/libxo/tests/gettext/ - copied from r294754, mirror/FreeBSD/head/contrib/libxo/tests/gettext/ soc2013/def/crashdump-head/contrib/libxo/xohtml/Makefile.am - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/xohtml/Makefile.am soc2013/def/crashdump-head/contrib/libxo/xohtml/xohtml.1 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/libxo/xohtml/xohtml.1 soc2013/def/crashdump-head/contrib/libxo/xopo/ - copied from r294754, mirror/FreeBSD/head/contrib/libxo/xopo/ soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/EpochTracker.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/ADT/EpochTracker.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/MemoryLocation.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Analysis/MemoryLocation.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/VectorUtils.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Analysis/VectorUtils.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/AsmParser/SlotMapping.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/AsmParser/SlotMapping.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/DIEValue.def - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/CodeGen/DIEValue.def soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/FaultMaps.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/CodeGen/FaultMaps.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MIRParser/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/CodeGen/MIRParser/ soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineFunctionInitializer.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/CodeGen/MachineFunctionInitializer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARF/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/DebugInfo/DWARF/ soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/PDB/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/DebugInfo/PDB/ soc2013/def/crashdump-head/contrib/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ExecutionEngine/Orc/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/ExecutionEngine/Orc/ soc2013/def/crashdump-head/contrib/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/DebugInfoFlags.def - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/IR/DebugInfoFlags.def soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicsBPF.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/IR/IntrinsicsBPF.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Value.def - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/IR/Value.def soc2013/def/crashdump-head/contrib/llvm/include/llvm/LibDriver/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/LibDriver/ soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSymbolELF.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/MC/MCSymbolELF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSymbolMachO.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/MC/MCSymbolMachO.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/ArchiveWriter.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Object/ArchiveWriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/StackMapParser.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Object/StackMapParser.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/SymbolSize.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Object/SymbolSize.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Passes/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Passes/ soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/COM.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Support/COM.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Dwarf.def - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Support/Dwarf.def soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/MipsABIFlags.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Support/MipsABIFlags.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/StringSaver.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Support/StringSaver.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/TargetParser.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Support/TargetParser.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetRecip.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Target/TargetRecip.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/IPO/LowerBitSets.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Transforms/IPO/LowerBitSets.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/InstCombine/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Transforms/InstCombine/ soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Scalar/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Transforms/Scalar/ soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/MemDerefPrinter.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Analysis/MemDerefPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/MemoryLocation.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Analysis/MemoryLocation.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/VectorUtils.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Analysis/VectorUtils.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/CoreCLRGC.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/CoreCLRGC.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/FaultMaps.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/FaultMaps.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/GCRootLowering.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/GCRootLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MIRParser/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/MIRParser/ soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MIRPrinter.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/MIRPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MIRPrinter.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/MIRPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MIRPrintingPass.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/MIRPrintingPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ShrinkWrap.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/ShrinkWrap.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARF/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/lib/DebugInfo/DWARF/ soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/PDB/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/lib/DebugInfo/PDB/ soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/Orc/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/lib/ExecutionEngine/Orc/ soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/DebugInfoMetadata.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/IR/DebugInfoMetadata.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/MetadataImpl.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/IR/MetadataImpl.h soc2013/def/crashdump-head/contrib/llvm/lib/IR/Operator.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/IR/Operator.cpp soc2013/def/crashdump-head/contrib/llvm/lib/LibDriver/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/lib/LibDriver/ soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCInstrDesc.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/MC/MCInstrDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCSchedule.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/MC/MCSchedule.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCSymbolELF.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/MC/MCSymbolELF.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/ArchiveWriter.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Object/ArchiveWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/SymbolSize.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Object/SymbolSize.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Passes/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Passes/ soc2013/def/crashdump-head/contrib/llvm/lib/Support/COM.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Support/COM.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/StringSaver.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Support/StringSaver.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/TargetParser.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Support/TargetParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Unix/COM.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Support/Unix/COM.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/COM.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Support/Windows/COM.inc soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AMDGPU/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/AMDGPU/ soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/BPF/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/BPF/ soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/BitTracker.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/BitTracker.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonIsetDx.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonIsetDx.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCInstrHTM.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCInstrHTM.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCInstrQPX.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCInstrQPX.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCLoopDataPrefetch.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCLoopDataPrefetch.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZInstrVector.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/SystemZ/SystemZInstrVector.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/TargetRecip.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/TargetRecip.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/WebAssembly/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/WebAssembly/ soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrMPX.td - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/X86/X86InstrMPX.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86WinEHState.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/X86/X86WinEHState.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/LowerBitSets.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/IPO/LowerBitSets.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/SafeStack.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Instrumentation/SafeStack.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ARCInstKind.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/ObjCARC/ARCInstKind.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ARCInstKind.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/ObjCARC/ARCInstKind.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/PtrState.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/ObjCARC/PtrState.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/PtrState.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/ObjCARC/PtrState.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/Float2Int.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/Float2Int.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/LoopVersioning.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/lib/Transforms/Utils/LoopVersioning.cpp soc2013/def/crashdump-head/contrib/llvm/patches/patch-01-clang-vendor-suffix.diff - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/patches/patch-01-clang-vendor-suffix.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-02-add-CC-aliases.diff - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/patches/patch-02-add-CC-aliases.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-03-enable-armv6-clrex.diff - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/patches/patch-03-enable-armv6-clrex.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-04-clang-add-mips-triples.diff - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/patches/patch-04-clang-add-mips-triples.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-05-clang-r244063-missing-atomic-libcall.diff - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/patches/patch-05-clang-r244063-missing-atomic-libcall.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-06-llvm-r248439-fdiv-hoisting.diff - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/patches/patch-06-llvm-r248439-fdiv-hoisting.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-07-undo-llvm-r240144-iostream-sigbus.diff - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/patches/patch-07-undo-llvm-r240144-iostream-sigbus.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-08-llvm-r250085-fix-avx-crash.diff - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/patches/patch-08-llvm-r250085-fix-avx-crash.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-09-clang-r250657-openmp.diff - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/patches/patch-09-clang-r250657-openmp.diff soc2013/def/crashdump-head/contrib/llvm/projects/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/projects/ soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avx512cdintrin.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/avx512cdintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avx512vldqintrin.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/avx512vldqintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/cuda/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/cuda/ soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/fxsrintrin.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/fxsrintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/htmintrin.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/htmintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/inttypes.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/inttypes.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/s390intrin.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/s390intrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/vecintrin.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/vecintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/xtestintrin.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/clang/lib/Headers/xtestintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/CxaDemangle.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Core/CxaDemangle.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/FastDemangle.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Core/FastDemangle.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Logging.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Core/Logging.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/Time.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/Time.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/XML.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/XML.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/common/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/common/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/posix/MainLoopPosix.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Host/posix/MainLoopPosix.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Initialization/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Initialization/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Utility/ConvertEnum.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Utility/ConvertEnum.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Utility/NameMatches.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Utility/NameMatches.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/CxaDemangle.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Core/CxaDemangle.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Logging.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Core/Logging.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/CoreMedia.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/DataFormatters/CoreMedia.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContextRegisterInfo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContextRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/XML.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Host/common/XML.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/posix/MainLoopPosix.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Host/posix/MainLoopPosix.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Initialization/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Initialization/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXThread.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXThread.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXThread.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXThread.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessPOSIX.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessPOSIX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessPOSIX.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessPOSIX.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/JSON.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Utility/JSON.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/ModuleCache.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Utility/ModuleCache.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/ModuleCache.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Utility/ModuleCache.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/NameMatches.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/source/Utility/NameMatches.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/argdumper/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/tools/argdumper/ soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIExtensions.txt - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/tools/lldb-mi/MIExtensions.txt soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-server/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lldb/tools/lldb-server/ soc2013/def/crashdump-head/contrib/llvm/tools/lli/OrcLazyJIT.cpp - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lli/OrcLazyJIT.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lli/OrcLazyJIT.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/lli/OrcLazyJIT.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cxxdump/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/llvm-cxxdump/ soc2013/def/crashdump-head/contrib/llvm/tools/llvm-dwarfdump/ (props changed) - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/llvm-dwarfdump/ soc2013/def/crashdump-head/contrib/llvm/tools/llvm-lto/ (props changed) - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/llvm-lto/ soc2013/def/crashdump-head/contrib/llvm/tools/llvm-pdbdump/ - copied from r294754, mirror/FreeBSD/head/contrib/llvm/tools/llvm-pdbdump/ soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/StackMapPrinter.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/llvm/tools/llvm-readobj/StackMapPrinter.h soc2013/def/crashdump-head/contrib/ntp/README.leapsmear - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/README.leapsmear soc2013/def/crashdump-head/contrib/ntp/html/drivers/driver40-ja.html - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/html/drivers/driver40-ja.html soc2013/def/crashdump-head/contrib/ntp/include/rc_cmdlength.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/include/rc_cmdlength.h soc2013/def/crashdump-head/contrib/ntp/include/refidsmear.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/include/refidsmear.h soc2013/def/crashdump-head/contrib/ntp/libjsmn/example/ - copied from r294754, mirror/FreeBSD/head/contrib/ntp/libjsmn/example/ soc2013/def/crashdump-head/contrib/ntp/libntp/refidsmear.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/libntp/refidsmear.c soc2013/def/crashdump-head/contrib/ntp/ntpd/rc_cmdlength.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/ntpd/rc_cmdlength.c soc2013/def/crashdump-head/contrib/ntp/scripts/update-leap/ - copied from r294754, mirror/FreeBSD/head/contrib/ntp/scripts/update-leap/ soc2013/def/crashdump-head/contrib/ntp/sntp/ag-tpl/Mdoc.pm - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/ag-tpl/Mdoc.pm soc2013/def/crashdump-head/contrib/ntp/sntp/ag-tpl/mdoc2man - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/ag-tpl/mdoc2man soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/build-aux/ar-lib - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/libevent/build-aux/ar-lib soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/build-aux/test-driver - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/libevent/build-aux/test-driver soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/m4/acx_pthread.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/libevent/m4/acx_pthread.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/libpkgver/ - copied from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/libpkgver/ soc2013/def/crashdump-head/contrib/ntp/sntp/m4/ax_c99_struct_init.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/m4/ax_c99_struct_init.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/ntp_problemtests.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/m4/ntp_problemtests.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/ntp_unitytest.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/m4/ntp_unitytest.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/openldap-thread-check.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/m4/openldap-thread-check.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/openldap.m4 - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/m4/openldap.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/tests/crypto.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/crypto.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/fileHandlingTest.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/fileHandlingTest.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/fileHandlingTest.h.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/fileHandlingTest.h.in soc2013/def/crashdump-head/contrib/ntp/sntp/tests/keyFile.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/keyFile.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/kodDatabase.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/kodDatabase.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/kodFile.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/kodFile.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/networking.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/networking.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/packetHandling.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/packetHandling.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/packetProcessing.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/packetProcessing.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/run-crypto.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/run-crypto.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/run-keyFile.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/run-keyFile.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/run-kodDatabase.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/run-kodDatabase.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/run-kodFile.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/run-kodFile.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/run-networking.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/run-networking.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/run-packetHandling.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/run-packetHandling.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/run-packetProcessing.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/run-packetProcessing.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/run-t-log.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/run-t-log.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/run-utilities.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/run-utilities.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/sntptest.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/sntptest.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/t-log.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/t-log.c soc2013/def/crashdump-head/contrib/ntp/sntp/tests/utilities.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/tests/utilities.c soc2013/def/crashdump-head/contrib/ntp/sntp/unity/ - copied from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/unity/ soc2013/def/crashdump-head/contrib/ntp/sntp/version.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/sntp/version.c soc2013/def/crashdump-head/contrib/ntp/tests/bug-2803/ - copied from r294754, mirror/FreeBSD/head/contrib/ntp/tests/bug-2803/ soc2013/def/crashdump-head/contrib/ntp/tests/libntp/a_md5encrypt.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/a_md5encrypt.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/atoint.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/atoint.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/atouint.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/atouint.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/authkeys.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/authkeys.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/buftvtots.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/buftvtots.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/calendar.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/calendar.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/caljulian.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/caljulian.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/caltontp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/caltontp.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/calyearstart.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/calyearstart.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/clocktime.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/clocktime.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/decodenetnum.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/decodenetnum.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/hextoint.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/hextoint.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/hextolfp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/hextolfp.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/humandate.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/humandate.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/lfpfunc.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/lfpfunc.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/lfptest.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/lfptest.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/lfptostr.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/lfptostr.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/modetoa.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/modetoa.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/msyslog.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/msyslog.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/netof.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/netof.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/numtoa.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/numtoa.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/numtohost.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/numtohost.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/octtoint.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/octtoint.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/prettydate.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/prettydate.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/recvbuff.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/recvbuff.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/refidsmear.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/refidsmear.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/refnumtoa.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/refnumtoa.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-a_md5encrypt.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-a_md5encrypt.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-atoint.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-atoint.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-atouint.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-atouint.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-authkeys.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-authkeys.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-buftvtots.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-buftvtots.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-calendar.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-calendar.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-caljulian.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-caljulian.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-caltontp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-caltontp.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-calyearstart.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-calyearstart.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-clocktime.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-clocktime.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-decodenetnum.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-decodenetnum.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-hextoint.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-hextoint.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-hextolfp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-hextolfp.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-humandate.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-humandate.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-lfpfunc.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-lfpfunc.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-lfptostr.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-lfptostr.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-modetoa.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-modetoa.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-msyslog.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-msyslog.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-netof.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-netof.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-numtoa.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-numtoa.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-numtohost.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-numtohost.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-octtoint.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-octtoint.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-prettydate.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-prettydate.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-recvbuff.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-recvbuff.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-refidsmear.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-refidsmear.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-refnumtoa.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-refnumtoa.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-sfptostr.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-sfptostr.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-socktoa.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-socktoa.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-ssl_init.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-ssl_init.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-statestr.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-statestr.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-strtolfp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-strtolfp.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-timespecops.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-timespecops.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-timevalops.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-timevalops.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-tstotv.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-tstotv.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-tvtots.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-tvtots.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-uglydate.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-uglydate.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-vi64ops.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-vi64ops.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/run-ymd2yd.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/run-ymd2yd.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/sfptostr.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/sfptostr.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/sockaddrtest.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/sockaddrtest.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/socktoa.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/socktoa.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/ssl_init.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/ssl_init.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/statestr.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/statestr.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/strtolfp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/strtolfp.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/test-libntp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/test-libntp.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/test-libntp.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/test-libntp.h soc2013/def/crashdump-head/contrib/ntp/tests/libntp/timespecops.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/timespecops.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/timevalops.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/timevalops.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/tstotv.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/tstotv.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/tvtots.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/tvtots.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/uglydate.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/uglydate.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/vi64ops.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/vi64ops.c soc2013/def/crashdump-head/contrib/ntp/tests/libntp/ymd2yd.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/libntp/ymd2yd.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/leapsec.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/leapsec.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/ntp_prio_q.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/ntp_prio_q.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/ntp_restrict.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/ntp_restrict.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/rc_cmdlength.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/rc_cmdlength.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/run-leapsec.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/run-leapsec.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/run-ntp_prio_q.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/run-ntp_prio_q.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/run-ntp_restrict.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/run-ntp_restrict.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/run-rc_cmdlength.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/run-rc_cmdlength.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/run-t-ntp_scanner.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/run-t-ntp_scanner.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/run-t-ntp_signd.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/run-t-ntp_signd.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/t-ntp_scanner.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/t-ntp_scanner.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/t-ntp_signd.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpd/t-ntp_signd.c soc2013/def/crashdump-head/contrib/ntp/tests/ntpq/ - copied from r294754, mirror/FreeBSD/head/contrib/ntp/tests/ntpq/ soc2013/def/crashdump-head/contrib/ntp/tests/sandbox/ - copied from r294754, mirror/FreeBSD/head/contrib/ntp/tests/sandbox/ soc2013/def/crashdump-head/contrib/ntp/tests/sec-2853/ - copied from r294754, mirror/FreeBSD/head/contrib/ntp/tests/sec-2853/ soc2013/def/crashdump-head/contrib/openresolv/GNUmakefile - copied unchanged from r294754, mirror/FreeBSD/head/contrib/openresolv/GNUmakefile soc2013/def/crashdump-head/contrib/openresolv/config-null.mk - copied unchanged from r294754, mirror/FreeBSD/head/contrib/openresolv/config-null.mk soc2013/def/crashdump-head/contrib/openresolv/pdns_recursor.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/openresolv/pdns_recursor.in soc2013/def/crashdump-head/contrib/subversion/.ycm_extra_conf.py - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/.ycm_extra_conf.py soc2013/def/crashdump-head/contrib/subversion/doc/programmer/gtest-guide.txt - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/doc/programmer/gtest-guide.txt soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_client_mtcc.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/include/private/svn_client_mtcc.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_fs_fs_private.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/include/private/svn_fs_fs_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_object_pool.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/include/private/svn_object_pool.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_packed_data.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/include/private/svn_packed_data.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_sorts_private.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/include/private/svn_sorts_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_x509.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/include/svn_x509.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_auth_gnome_keyring/libsvn_auth_gnome_keyring.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_auth_gnome_keyring/libsvn_auth_gnome_keyring.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_auth_kwallet/libsvn_auth_kwallet.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_auth_kwallet/libsvn_auth_kwallet.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/libsvn_client.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_client/libsvn_client.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/mtcc.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_client/mtcc.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/libsvn_delta.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_delta/libsvn_delta.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_diff/binary_diff.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_diff/binary_diff.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_diff/libsvn_diff.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_diff/libsvn_diff.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs/deprecated.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs/deprecated.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs/libsvn_fs.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs/libsvn_fs.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/libsvn_fs_base.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_base/libsvn_fs_base.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/cached_data.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/cached_data.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/cached_data.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/cached_data.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/dump-index.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/dump-index.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/hotcopy.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/hotcopy.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/hotcopy.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/hotcopy.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/index.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/index.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/index.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/index.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/libsvn_fs_fs.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/libsvn_fs_fs.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/load-index.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/load-index.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/low_level.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/low_level.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/low_level.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/low_level.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/pack.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/pack.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/pack.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/pack.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/recovery.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/recovery.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/recovery.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/recovery.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/rev_file.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/rev_file.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/rev_file.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/rev_file.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/revprops.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/revprops.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/revprops.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/revprops.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/stats.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/stats.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/structure-indexes - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/structure-indexes soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/transaction.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/transaction.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/transaction.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/transaction.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/util.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/util.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/util.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/util.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/verify.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/verify.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/verify.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_fs/verify.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_util/libsvn_fs_util.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_util/libsvn_fs_util.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_x/ - copied from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_fs_x/ soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra/libsvn_ra.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra/libsvn_ra.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_local/libsvn_ra_local.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra_local/libsvn_ra_local.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/eagain_bucket.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra_serf/eagain_bucket.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/get_file.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra_serf/get_file.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/get_lock.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra_serf/get_lock.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/libsvn_ra_serf.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra_serf/libsvn_ra_serf.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/lock.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra_serf/lock.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/multistatus.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra_serf/multistatus.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/stat.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra_serf/stat.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/libsvn_ra_svn.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_ra_svn/libsvn_ra_svn.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/authz_pool.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_repos/authz_pool.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/config_pool.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_repos/config_pool.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/libsvn_repos.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_repos/libsvn_repos.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/bit_array.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/bit_array.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/checksum.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/checksum.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/compress.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/compress.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/config_keys.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/config_keys.inc soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/errorcode.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/errorcode.inc soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/fnv1a.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/fnv1a.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/fnv1a.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/fnv1a.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/libsvn_subr.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/libsvn_subr.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/object_pool.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/object_pool.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/packed_data.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/packed_data.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/prefix_string.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/prefix_string.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/root_pools.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/root_pools.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/utf8proc/ - copied from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/utf8proc/ soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/utf8proc.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/utf8proc.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/x509.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/x509.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/x509info.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/x509info.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/x509parse.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_subr/x509parse.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/libsvn_wc.pc.in - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/libsvn_wc/libsvn_wc.pc.in soc2013/def/crashdump-head/contrib/subversion/subversion/svn/auth-cmd.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/svn/auth-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/cl-log.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/svn/cl-log.h soc2013/def/crashdump-head/contrib/subversion/subversion/svn/similarity.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/svn/similarity.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnbench/ - copied from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/svnbench/ soc2013/def/crashdump-head/contrib/subversion/subversion/svnfsfs/ - copied from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/svnfsfs/ soc2013/def/crashdump-head/contrib/subversion/subversion/svnserve/logger.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/svnserve/logger.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnserve/logger.h - copied unchanged from r294754, mirror/FreeBSD/head/contrib/subversion/subversion/svnserve/logger.h soc2013/def/crashdump-head/contrib/tcpdump/print-ftp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/tcpdump/print-ftp.c soc2013/def/crashdump-head/contrib/tcpdump/print-geneve.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/tcpdump/print-geneve.c soc2013/def/crashdump-head/contrib/tcpdump/print-http.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/tcpdump/print-http.c soc2013/def/crashdump-head/contrib/tcpdump/print-rtsp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/tcpdump/print-rtsp.c soc2013/def/crashdump-head/contrib/tcpdump/print-smtp.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/tcpdump/print-smtp.c soc2013/def/crashdump-head/contrib/top/top.local.hs - copied unchanged from r294754, mirror/FreeBSD/head/contrib/top/top.local.hs soc2013/def/crashdump-head/contrib/top/top.xs - copied unchanged from r294754, mirror/FreeBSD/head/contrib/top/top.xs soc2013/def/crashdump-head/contrib/unbound/compat/reallocarray.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/unbound/compat/reallocarray.c soc2013/def/crashdump-head/contrib/unbound/libunbound/python/file_py3.i - copied unchanged from r294754, mirror/FreeBSD/head/contrib/unbound/libunbound/python/file_py3.i soc2013/def/crashdump-head/contrib/unbound/sldns/ - copied from r294754, mirror/FreeBSD/head/contrib/unbound/sldns/ soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aesni-mb-x86_64.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/aes/asm/aesni-mb-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aesni-sha256-x86_64.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/aes/asm/aesni-sha256-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aesp8-ppc.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/aes/asm/aesp8-ppc.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aest4-sparcv9.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/aes/asm/aest4-sparcv9.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aesv8-armx.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/aes/asm/aesv8-armx.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/bsaes-armv7.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/aes/asm/bsaes-armv7.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/vpaes-ppc.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/aes/asm/vpaes-ppc.pl soc2013/def/crashdump-head/crypto/openssl/crypto/arm64cpuid.S - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/arm64cpuid.S soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/mips3.s - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/bn/asm/mips3.s soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/rsaz-avx2.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/bn/asm/rsaz-avx2.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/rsaz-x86_64.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/bn/asm/rsaz-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/sparct4-mont.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/bn/asm/sparct4-mont.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/sparcv9-gf2m.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/bn/asm/sparcv9-gf2m.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/vis3-mont.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/bn/asm/vis3-mont.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/rsaz_exp.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/bn/rsaz_exp.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/rsaz_exp.h - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/bn/rsaz_exp.h soc2013/def/crashdump-head/crypto/openssl/crypto/camellia/asm/cmllt4-sparcv9.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/camellia/asm/cmllt4-sparcv9.pl soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms_kari.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/cms/cms_kari.c soc2013/def/crashdump-head/crypto/openssl/crypto/des/asm/dest4-sparcv9.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/des/asm/dest4-sparcv9.pl soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dh_kdf.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/dh/dh_kdf.c soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dh_rfc5114.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/dh/dh_rfc5114.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/asm/ - copied from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/ec/asm/ soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ecp_nistz256.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/ec/ecp_nistz256.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ecp_nistz256_table.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/ec/ecp_nistz256_table.c soc2013/def/crashdump-head/crypto/openssl/crypto/ecdh/ech_kdf.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/ecdh/ech_kdf.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c soc2013/def/crashdump-head/crypto/openssl/crypto/md5/asm/md5-sparcv9.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/md5/asm/md5-sparcv9.pl soc2013/def/crashdump-head/crypto/openssl/crypto/modes/asm/aesni-gcm-x86_64.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/modes/asm/aesni-gcm-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/modes/asm/ghashp8-ppc.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/modes/asm/ghashp8-ppc.pl soc2013/def/crashdump-head/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl soc2013/def/crashdump-head/crypto/openssl/crypto/modes/wrap128.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/modes/wrap128.c soc2013/def/crashdump-head/crypto/openssl/crypto/perlasm/sparcv9_modes.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/perlasm/sparcv9_modes.pl soc2013/def/crashdump-head/crypto/openssl/crypto/ppc_arch.h - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/ppc_arch.h soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha1-armv8.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/sha/asm/sha1-armv8.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha1-mb-x86_64.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/sha/asm/sha1-mb-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha256-mb-x86_64.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/sha/asm/sha256-mb-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha512-armv8.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/sha/asm/sha512-armv8.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha512p8-ppc.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/sha/asm/sha512p8-ppc.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sparc_arch.h - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/sparc_arch.h soc2013/def/crashdump-head/crypto/openssl/crypto/x509/verify_extra_test.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/x509/verify_extra_test.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/vpm_int.h - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/x509/vpm_int.h soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/v3_scts.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/x509v3/v3_scts.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/v3nametest.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/crypto/x509v3/v3nametest.c soc2013/def/crashdump-head/crypto/openssl/doc/crypto/ASN1_TIME_set.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/ASN1_TIME_set.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EC_GFp_simple_method.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/EC_GFp_simple_method.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EC_GROUP_copy.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/EC_GROUP_copy.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EC_GROUP_new.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/EC_GROUP_new.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EC_KEY_new.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/EC_KEY_new.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EC_POINT_add.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/EC_POINT_add.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EC_POINT_new.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/EC_POINT_new.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/OPENSSL_instrument_bus.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/OPENSSL_instrument_bus.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/SSLeay_version.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/SSLeay_version.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/X509_check_host.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/X509_check_host.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/d2i_ECPKParameters.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/d2i_ECPKParameters.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/ec.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/crypto/ec.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CONF_CTX_new.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CONF_CTX_new.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set1_prefix.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set1_prefix.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_flags.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_flags.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_ssl_ctx.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_ssl_ctx.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CONF_cmd.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CONF_cmd.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CONF_cmd_argv.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CONF_cmd_argv.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_add1_chain_cert.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CTX_add1_chain_cert.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_get0_param.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CTX_get0_param.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_set1_curves.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CTX_set1_curves.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_set1_verify_cert_store.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CTX_set1_verify_cert_store.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_set_cert_cb.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CTX_set_cert_cb.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_set_custom_cli_ext.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CTX_set_custom_cli_ext.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_use_serverinfo.pod - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/doc/ssl/SSL_CTX_use_serverinfo.pod soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_conf.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/ssl/ssl_conf.c soc2013/def/crashdump-head/crypto/openssl/ssl/t1_ext.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/ssl/t1_ext.c soc2013/def/crashdump-head/crypto/openssl/ssl/t1_trce.c - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/ssl/t1_trce.c soc2013/def/crashdump-head/crypto/openssl/util/copy-if-different.pl - copied unchanged from r294754, mirror/FreeBSD/head/crypto/openssl/util/copy-if-different.pl soc2013/def/crashdump-head/etc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/etc/Makefile.depend soc2013/def/crashdump-head/etc/mtree/BSD.lib32.dist - copied unchanged from r294754, mirror/FreeBSD/head/etc/mtree/BSD.lib32.dist soc2013/def/crashdump-head/etc/newsyslog.conf.d/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/etc/newsyslog.conf.d/Makefile.depend soc2013/def/crashdump-head/etc/ntp/ - copied from r294754, mirror/FreeBSD/head/etc/ntp/ soc2013/def/crashdump-head/etc/periodic/daily/430.status-uptime - copied unchanged from r294754, mirror/FreeBSD/head/etc/periodic/daily/430.status-uptime soc2013/def/crashdump-head/etc/sendmail/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/etc/sendmail/Makefile.depend soc2013/def/crashdump-head/include/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/include/Makefile.depend soc2013/def/crashdump-head/include/arpa/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/include/arpa/Makefile.depend soc2013/def/crashdump-head/include/gssapi/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/include/gssapi/Makefile.depend soc2013/def/crashdump-head/include/protocols/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/include/protocols/Makefile.depend soc2013/def/crashdump-head/include/rpc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/include/rpc/Makefile.depend soc2013/def/crashdump-head/include/rpcsvc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/include/rpcsvc/Makefile.depend soc2013/def/crashdump-head/include/xlocale/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/include/xlocale/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libasn1/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libasn1/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libgssapi_krb5/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libgssapi_krb5/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libgssapi_ntlm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libgssapi_ntlm/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libgssapi_spnego/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libgssapi_spnego/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libhdb/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libhdb/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libheimbase/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libheimbase/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libheimipcc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libheimipcc/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libheimipcs/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libheimipcs/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libheimntlm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libheimntlm/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libhx509/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libhx509/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libkadm5clnt/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libkadm5clnt/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libkadm5srv/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libkadm5srv/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libkafs5/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libkafs5/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libkdc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libkdc/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libkrb5/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libkrb5/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libroken/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libroken/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libsl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libsl/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libvers/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libvers/Makefile.depend soc2013/def/crashdump-head/kerberos5/lib/libwind/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/lib/libwind/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/digest-service/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/digest-service/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/hprop/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/hprop/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/hpropd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/hpropd/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/ipropd-master/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/ipropd-master/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/ipropd-slave/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/ipropd-slave/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/kadmind/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/kadmind/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/kcm/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/kcm/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/kdc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/kdc/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/kdigest/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/kdigest/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/kfd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/kfd/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/kimpersonate/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/kimpersonate/Makefile.depend soc2013/def/crashdump-head/kerberos5/libexec/kpasswdd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/libexec/kpasswdd/Makefile.depend soc2013/def/crashdump-head/kerberos5/tools/asn1_compile/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/tools/asn1_compile/Makefile.depend soc2013/def/crashdump-head/kerberos5/tools/make-roken/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/tools/make-roken/Makefile.depend soc2013/def/crashdump-head/kerberos5/tools/slc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/tools/slc/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/hxtool/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/hxtool/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/kadmin/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/kadmin/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/kcc/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/kcc/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/kdestroy/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/kdestroy/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/kf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/kf/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/kgetcred/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/kgetcred/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/kinit/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/kinit/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/kpasswd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/kpasswd/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/krb5-config/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/krb5-config/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/ksu/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/ksu/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/string2key/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/string2key/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.bin/verify_krb5_conf/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.sbin/iprop-log/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.sbin/iprop-log/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.sbin/kstash/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.sbin/kstash/Makefile.depend soc2013/def/crashdump-head/kerberos5/usr.sbin/ktutil/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/kerberos5/usr.sbin/ktutil/Makefile.depend soc2013/def/crashdump-head/release/Makefile.azure - copied unchanged from r294754, mirror/FreeBSD/head/release/Makefile.azure soc2013/def/crashdump-head/release/Makefile.gce - copied unchanged from r294754, mirror/FreeBSD/head/release/Makefile.gce soc2013/def/crashdump-head/release/Makefile.mirrors - copied unchanged from r294754, mirror/FreeBSD/head/release/Makefile.mirrors soc2013/def/crashdump-head/release/Makefile.vagrant - copied unchanged from r294754, mirror/FreeBSD/head/release/Makefile.vagrant soc2013/def/crashdump-head/release/arm/BANANAPI.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/arm/BANANAPI.conf soc2013/def/crashdump-head/release/arm/CUBIEBOARD.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/arm/CUBIEBOARD.conf soc2013/def/crashdump-head/release/arm/CUBIEBOARD2.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/arm/CUBIEBOARD2.conf soc2013/def/crashdump-head/release/arm/CUBOX-HUMMINGBOARD.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/arm/CUBOX-HUMMINGBOARD.conf soc2013/def/crashdump-head/release/arm/GUMSTIX.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/arm/GUMSTIX.conf soc2013/def/crashdump-head/release/arm/RPI2.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/arm/RPI2.conf soc2013/def/crashdump-head/release/arm/WANDBOARD.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/arm/WANDBOARD.conf soc2013/def/crashdump-head/release/scripts/atlas-upload.sh - copied unchanged from r294754, mirror/FreeBSD/head/release/scripts/atlas-upload.sh soc2013/def/crashdump-head/release/scripts/box.ovf - copied unchanged from r294754, mirror/FreeBSD/head/release/scripts/box.ovf soc2013/def/crashdump-head/release/tools/arm.subr - copied unchanged from r294754, mirror/FreeBSD/head/release/tools/arm.subr soc2013/def/crashdump-head/release/tools/vagrant-virtualbox.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/tools/vagrant-virtualbox.conf soc2013/def/crashdump-head/release/tools/vagrant-vmware.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/tools/vagrant-vmware.conf soc2013/def/crashdump-head/release/tools/vagrant.conf - copied unchanged from r294754, mirror/FreeBSD/head/release/tools/vagrant.conf soc2013/def/crashdump-head/rescue/librescue/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/rescue/librescue/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/rsaz-avx2.S - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/amd64/rsaz-avx2.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/rsaz-x86_64.S - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/amd64/rsaz-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/lib4758cca/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libaep/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/libaep/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libatalla/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/libatalla/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libcapi/ - copied from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/libcapi/ soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libchil/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/libchil/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libcswift/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/libcswift/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libgost/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/libgost/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libnuron/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/libnuron/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libsureware/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/libsureware/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libubsec/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/engines/libubsec/Makefile.depend soc2013/def/crashdump-head/secure/lib/libcrypto/man/ASN1_TIME_set.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/ASN1_TIME_set.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EC_GFp_simple_method.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/EC_GFp_simple_method.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EC_GROUP_copy.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/EC_GROUP_copy.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EC_GROUP_new.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/EC_GROUP_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EC_KEY_new.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/EC_KEY_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EC_POINT_add.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/EC_POINT_add.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EC_POINT_new.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/EC_POINT_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/OPENSSL_instrument_bus.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/OPENSSL_instrument_bus.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_check_host.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/X509_check_host.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_ECPKParameters.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/d2i_ECPKParameters.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ec.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libcrypto/man/ec.3 soc2013/def/crashdump-head/secure/lib/libssh/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssh/Makefile.depend soc2013/def/crashdump-head/secure/lib/libssl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/Makefile.depend soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CONF_CTX_new.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CONF_CTX_new.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CONF_CTX_set1_prefix.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CONF_CTX_set1_prefix.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CONF_CTX_set_flags.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CONF_CTX_set_flags.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CONF_CTX_set_ssl_ctx.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CONF_CTX_set_ssl_ctx.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CONF_cmd.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CONF_cmd.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CONF_cmd_argv.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CONF_cmd_argv.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_add1_chain_cert.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CTX_add1_chain_cert.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_get0_param.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CTX_get0_param.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set1_curves.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CTX_set1_curves.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set1_verify_cert_store.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CTX_set1_verify_cert_store.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_cert_cb.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CTX_set_cert_cb.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_custom_cli_ext.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CTX_set_custom_cli_ext.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_use_serverinfo.3 - copied unchanged from r294754, mirror/FreeBSD/head/secure/lib/libssl/man/SSL_CTX_use_serverinfo.3 soc2013/def/crashdump-head/secure/libexec/sftp-server/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/libexec/sftp-server/Makefile.depend soc2013/def/crashdump-head/secure/libexec/ssh-keysign/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/libexec/ssh-keysign/Makefile.depend soc2013/def/crashdump-head/secure/libexec/ssh-pkcs11-helper/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/libexec/ssh-pkcs11-helper/Makefile.depend soc2013/def/crashdump-head/secure/usr.bin/bdes/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.bin/bdes/Makefile.depend soc2013/def/crashdump-head/secure/usr.bin/openssl/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.bin/openssl/Makefile.depend soc2013/def/crashdump-head/secure/usr.bin/scp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.bin/scp/Makefile.depend soc2013/def/crashdump-head/secure/usr.bin/sftp/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.bin/sftp/Makefile.depend soc2013/def/crashdump-head/secure/usr.bin/ssh-add/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.bin/ssh-add/Makefile.depend soc2013/def/crashdump-head/secure/usr.bin/ssh-agent/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.bin/ssh-agent/Makefile.depend soc2013/def/crashdump-head/secure/usr.bin/ssh-keygen/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.bin/ssh-keygen/Makefile.depend soc2013/def/crashdump-head/secure/usr.bin/ssh-keyscan/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.bin/ssh-keyscan/Makefile.depend soc2013/def/crashdump-head/secure/usr.bin/ssh/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.bin/ssh/Makefile.depend soc2013/def/crashdump-head/secure/usr.sbin/sshd/Makefile.depend - copied unchanged from r294754, mirror/FreeBSD/head/secure/usr.sbin/sshd/Makefile.depend soc2013/def/crashdump-head/tests/etc/ - copied from r294754, mirror/FreeBSD/head/tests/etc/ soc2013/def/crashdump-head/tests/freebsd_test_suite/ - copied from r294754, mirror/FreeBSD/head/tests/freebsd_test_suite/ soc2013/def/crashdump-head/tests/sys/acl/ - copied from r294754, mirror/FreeBSD/head/tests/sys/acl/ soc2013/def/crashdump-head/tests/sys/aio/ - copied from r294754, mirror/FreeBSD/head/tests/sys/aio/ soc2013/def/crashdump-head/tests/sys/fifo/ - copied from r294754, mirror/FreeBSD/head/tests/sys/fifo/ soc2013/def/crashdump-head/tests/sys/file/ - copied from r294754, mirror/FreeBSD/head/tests/sys/file/ soc2013/def/crashdump-head/tests/sys/kern/acct/ - copied from r294754, mirror/FreeBSD/head/tests/sys/kern/acct/ soc2013/def/crashdump-head/tests/sys/kern/execve/ - copied from r294754, mirror/FreeBSD/head/tests/sys/kern/execve/ soc2013/def/crashdump-head/tests/sys/kern/kern_copyin.c - copied unchanged from r294754, mirror/FreeBSD/head/tests/sys/kern/kern_copyin.c soc2013/def/crashdump-head/tests/sys/kern/pipe/ - copied from r294754, mirror/FreeBSD/head/tests/sys/kern/pipe/ soc2013/def/crashdump-head/tests/sys/kern/ptrace_test.c - copied unchanged from r294754, mirror/FreeBSD/head/tests/sys/kern/ptrace_test.c soc2013/def/crashdump-head/tests/sys/kqueue/ - copied from r294754, mirror/FreeBSD/head/tests/sys/kqueue/ soc2013/def/crashdump-head/tests/sys/mqueue/ - copied from r294754, mirror/FreeBSD/head/tests/sys/mqueue/ soc2013/def/crashdump-head/tests/sys/posixshm/ - copied from r294754, mirror/FreeBSD/head/tests/sys/posixshm/ soc2013/def/crashdump-head/tests/sys/vfs/ - copied from r294754, mirror/FreeBSD/head/tests/sys/vfs/ soc2013/def/crashdump-head/tests/sys/vm/ - copied from r294754, mirror/FreeBSD/head/tests/sys/vm/ Replaced: soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixtfdi.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixtfdi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixtfsi.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixtfsi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixtfti.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixtfti.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixunstfdi.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixunstfdi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixunstfsi.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixunstfsi.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fixunstfti.c - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fixunstfti.c soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc soc2013/def/crashdump-head/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc - copied unchanged from r294754, mirror/FreeBSD/head/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc Deleted: soc2013/def/crashdump-head/contrib/libxo/libxo/xoconfig.h soc2013/def/crashdump-head/contrib/libxo/libxo/xoconfig.h.in soc2013/def/crashdump-head/contrib/libxo/libxo/xoversion.h soc2013/def/crashdump-head/contrib/libxo/libxo/xoversion.h.in soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/ConstantsScanner.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/FunctionTargetTransformInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/JumpInstrTableInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/ForwardControlFlowIntegrity.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/JumpInstrTables.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/StackMapLivenessAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFAcceleratorTable.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFCompileUnit.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFContext.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugAbbrev.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugArangeSet.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugAranges.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugFrame.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugInfoEntry.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugLine.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugLoc.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugRangeList.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFRelocMap.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFSection.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFTypeUnit.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DWARFUnit.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicsR600.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCELF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCELFSymbolFlags.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCMachOSymbolFlags.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/PassManager.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/VectorUtils.h soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/FunctionTargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/JumpInstrTableInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocList.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ForwardControlFlowIntegrity.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/JumpInstrTables.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/PrologEpilogInserter.h soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DIContext.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFAcceleratorTable.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFContext.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFDebugFrame.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFDebugLoc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFTypeUnit.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/DWARFUnit.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/SyntaxHighlighting.cpp soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/SyntaxHighlighting.h soc2013/def/crashdump-head/contrib/llvm/lib/DebugInfo/module.modulemap soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/AsmWriter.h soc2013/def/crashdump-head/contrib/llvm/lib/IR/LeaksContext.h soc2013/def/crashdump-head/contrib/llvm/lib/IR/UseListOrder.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCELF.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/IsInf.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/IsNAN.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMFPUName.def soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMFPUName.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMArchName.def soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMArchName.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonSplitTFRCondSets.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonVarargsCallingConvention.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430SelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430SelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16HardFloat.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsOs16.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerStructArgs.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXutil.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXutil.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCUtil.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp soc2013/def/crashdump-head/contrib/llvm/patches/patch-01-freebsd-kprintf.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-02-clang-vendor-suffix.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-03-add-CC-aliases.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-04-add-llvm-gvn-option.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-05-enable-armv6-clrex.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-06-clang-add-mips-triples.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-07-llvm-r227752-boot2-shrink.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-08-llvm-r227089-fix-mips-i128.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-09-llvm-r230058-indirectbrs-assert.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-10-llvm-r230348-arm-fix-bad-ha.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-11-llvm-r231227-aarch64-tls-relocs.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-12-clang-r227115-constantarraytype.diff soc2013/def/crashdump-head/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsR600.def soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/NativeRegisterContext.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/NativeRegisterContextRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/lldb-private-log.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/POSIXStopInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/POSIXStopInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/POSIXThread.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_arm64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_arm64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_mips64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_mips64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_powerpc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_powerpc.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_x86.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_x86.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/NativeRegisterContext.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/NativeRegisterContextRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/StringExtractor.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/lldb-log.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/Driver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/Driver.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinLinux.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinLinux.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinWindows.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinWindows.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilTermios.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilTermios.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-platform/ soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/CoverageSummary.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/CoverageSummary.h soc2013/def/crashdump-head/contrib/llvm/tools/opt/PassRegistry.def soc2013/def/crashdump-head/contrib/llvm/tools/opt/Passes.cpp soc2013/def/crashdump-head/contrib/llvm/tools/opt/Passes.h soc2013/def/crashdump-head/contrib/ntp/FREEBSD-Xlist soc2013/def/crashdump-head/contrib/ntp/FREEBSD-upgrade soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/README soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/m4/openldap-thread-check.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/m4/openldap.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/sample/ soc2013/def/crashdump-head/contrib/ntp/sntp/tests/crypto.cpp soc2013/def/crashdump-head/contrib/ntp/sntp/tests/fileHandlingTest.h soc2013/def/crashdump-head/contrib/ntp/sntp/tests/keyFile.cpp soc2013/def/crashdump-head/contrib/ntp/sntp/tests/kodDatabase.cpp soc2013/def/crashdump-head/contrib/ntp/sntp/tests/kodFile.cpp soc2013/def/crashdump-head/contrib/ntp/sntp/tests/networking.cpp soc2013/def/crashdump-head/contrib/ntp/sntp/tests/packetHandling.cpp soc2013/def/crashdump-head/contrib/ntp/sntp/tests/packetProcessing.cpp soc2013/def/crashdump-head/contrib/ntp/sntp/tests/utilities.cpp soc2013/def/crashdump-head/contrib/ntp/sntp/tests_main.cpp soc2013/def/crashdump-head/contrib/ntp/sntp/tests_main.h soc2013/def/crashdump-head/contrib/ntp/tests/libntp/a_md5encrypt.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/atoint.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/atouint.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/authkeys.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/buftvtots.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/calendar.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/caljulian.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/caltontp.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/calyearstart.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/clocktime.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/decodenetnum.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/hextoint.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/hextolfp.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/humandate.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/lfpfunc.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/lfptostr.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/libntptest.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/libntptest.h soc2013/def/crashdump-head/contrib/ntp/tests/libntp/modetoa.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/msyslog.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/netof.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/numtoa.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/numtohost.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/octtoint.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/prettydate.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/recvbuff.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/refnumtoa.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/sfptostr.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/socktoa.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/ssl_init.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/statestr.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/strtolfp.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/timespecops.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/timestructs.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/timestructs.h soc2013/def/crashdump-head/contrib/ntp/tests/libntp/timevalops.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/tstotv.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/tvtots.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/uglydate.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/vi64ops.cpp soc2013/def/crashdump-head/contrib/ntp/tests/libntp/ymd2yd.cpp soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/leapsec.cpp soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/ntpdtest.cpp soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/ntpdtest.h soc2013/def/crashdump-head/contrib/ntp/util/ansi2knr.1 soc2013/def/crashdump-head/contrib/ntp/util/ansi2knr.c soc2013/def/crashdump-head/contrib/ntp/util/jitter.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_named_atomic.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_pseudo_md5.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/key-gen.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/key-gen.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/locks.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/md5.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/named_atomic.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/pseudo_md5.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/sha1.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/sha1.h soc2013/def/crashdump-head/contrib/subversion/subversion/svn/client_errors.h soc2013/def/crashdump-head/contrib/tcpdump/bootp.h soc2013/def/crashdump-head/contrib/top/top.X soc2013/def/crashdump-head/contrib/top/top.local.H soc2013/def/crashdump-head/contrib/unbound/ldns/ soc2013/def/crashdump-head/crypto/openssh/schnorr.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/modexp512-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/engine/eng_rsax.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/evp_fips.c soc2013/def/crashdump-head/crypto/openssl/ssl/d1_enc.c soc2013/def/crashdump-head/etc/dma/ soc2013/def/crashdump-head/etc/libmap32.conf soc2013/def/crashdump-head/etc/periodic/daily/430.status-rwho soc2013/def/crashdump-head/etc/ppp/ soc2013/def/crashdump-head/etc/tests/ soc2013/def/crashdump-head/kerberos5/lib/libheimsqlite/ soc2013/def/crashdump-head/release/arm/WANDBOARD-QUAD.conf soc2013/def/crashdump-head/release/arm/ZEDBOARD.conf soc2013/def/crashdump-head/release/arm/release.sh soc2013/def/crashdump-head/release/tools/arm/ soc2013/def/crashdump-head/release/tools/gce-package.sh soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/modexp512-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/i386/cast-586.s Modified: soc2013/def/crashdump-head/ (props changed) soc2013/def/crashdump-head/.arcconfig soc2013/def/crashdump-head/MAINTAINERS (contents, props changed) soc2013/def/crashdump-head/Makefile soc2013/def/crashdump-head/ObsoleteFiles.inc soc2013/def/crashdump-head/UPDATING soc2013/def/crashdump-head/bin/Makefile soc2013/def/crashdump-head/bin/cat/cat.c soc2013/def/crashdump-head/bin/cat/tests/Makefile soc2013/def/crashdump-head/bin/chflags/chflags.1 soc2013/def/crashdump-head/bin/chflags/chflags.c soc2013/def/crashdump-head/bin/chmod/chmod.1 soc2013/def/crashdump-head/bin/chmod/chmod.c soc2013/def/crashdump-head/bin/cp/cp.1 soc2013/def/crashdump-head/bin/cp/cp.c soc2013/def/crashdump-head/bin/cp/extern.h soc2013/def/crashdump-head/bin/cp/utils.c soc2013/def/crashdump-head/bin/csh/config_p.h soc2013/def/crashdump-head/bin/date/date.1 soc2013/def/crashdump-head/bin/date/date.c soc2013/def/crashdump-head/bin/date/tests/Makefile soc2013/def/crashdump-head/bin/dd/Makefile soc2013/def/crashdump-head/bin/dd/dd.1 soc2013/def/crashdump-head/bin/df/df.1 soc2013/def/crashdump-head/bin/df/df.c soc2013/def/crashdump-head/bin/ed/ed.1 soc2013/def/crashdump-head/bin/expr/expr.1 soc2013/def/crashdump-head/bin/expr/tests/Makefile soc2013/def/crashdump-head/bin/ls/Makefile soc2013/def/crashdump-head/bin/ls/extern.h soc2013/def/crashdump-head/bin/ls/ls.1 soc2013/def/crashdump-head/bin/ls/ls.c soc2013/def/crashdump-head/bin/ls/ls.h soc2013/def/crashdump-head/bin/ls/print.c soc2013/def/crashdump-head/bin/ls/util.c soc2013/def/crashdump-head/bin/mv/mv.c soc2013/def/crashdump-head/bin/mv/tests/Makefile soc2013/def/crashdump-head/bin/pax/ar_subs.c soc2013/def/crashdump-head/bin/pax/buf_subs.c soc2013/def/crashdump-head/bin/pax/cache.c soc2013/def/crashdump-head/bin/pax/cpio.c soc2013/def/crashdump-head/bin/pax/file_subs.c soc2013/def/crashdump-head/bin/pax/gen_subs.c soc2013/def/crashdump-head/bin/pax/getoldopt.c soc2013/def/crashdump-head/bin/pax/pat_rep.c soc2013/def/crashdump-head/bin/pax/pax.c soc2013/def/crashdump-head/bin/pax/sel_subs.c soc2013/def/crashdump-head/bin/pax/tar.c soc2013/def/crashdump-head/bin/pax/tests/Makefile soc2013/def/crashdump-head/bin/pax/tty_subs.c soc2013/def/crashdump-head/bin/pkill/Makefile soc2013/def/crashdump-head/bin/pkill/pkill.1 soc2013/def/crashdump-head/bin/pkill/pkill.c soc2013/def/crashdump-head/bin/pkill/tests/Makefile soc2013/def/crashdump-head/bin/pkill/tests/pgrep-j_test.sh soc2013/def/crashdump-head/bin/pkill/tests/pkill-j_test.sh soc2013/def/crashdump-head/bin/ps/Makefile soc2013/def/crashdump-head/bin/ps/keyword.c soc2013/def/crashdump-head/bin/ps/print.c soc2013/def/crashdump-head/bin/ps/ps.1 soc2013/def/crashdump-head/bin/ps/ps.c soc2013/def/crashdump-head/bin/ps/ps.h soc2013/def/crashdump-head/bin/rm/rm.1 soc2013/def/crashdump-head/bin/rm/rm.c soc2013/def/crashdump-head/bin/rmail/Makefile soc2013/def/crashdump-head/bin/setfacl/setfacl.1 soc2013/def/crashdump-head/bin/sh/alias.c soc2013/def/crashdump-head/bin/sh/builtins.def soc2013/def/crashdump-head/bin/sh/eval.c soc2013/def/crashdump-head/bin/sh/eval.h soc2013/def/crashdump-head/bin/sh/exec.c soc2013/def/crashdump-head/bin/sh/expand.c soc2013/def/crashdump-head/bin/sh/expand.h soc2013/def/crashdump-head/bin/sh/jobs.c soc2013/def/crashdump-head/bin/sh/miscbltin.c soc2013/def/crashdump-head/bin/sh/mknodes.c soc2013/def/crashdump-head/bin/sh/nodes.c.pat soc2013/def/crashdump-head/bin/sh/options.c soc2013/def/crashdump-head/bin/sh/options.h soc2013/def/crashdump-head/bin/sh/parser.c soc2013/def/crashdump-head/bin/sh/parser.h soc2013/def/crashdump-head/bin/sh/sh.1 soc2013/def/crashdump-head/bin/sh/tests/Makefile soc2013/def/crashdump-head/bin/sh/tests/builtins/Makefile soc2013/def/crashdump-head/bin/sh/tests/errors/Makefile soc2013/def/crashdump-head/bin/sh/tests/parser/Makefile soc2013/def/crashdump-head/bin/sh/var.c soc2013/def/crashdump-head/bin/sh/var.h soc2013/def/crashdump-head/bin/sleep/tests/Makefile soc2013/def/crashdump-head/bin/stty/stty.c soc2013/def/crashdump-head/bin/test/tests/Makefile soc2013/def/crashdump-head/bin/test/tests/legacy_test.sh soc2013/def/crashdump-head/bin/tests/Makefile soc2013/def/crashdump-head/cddl/ (props changed) soc2013/def/crashdump-head/cddl/contrib/opensolaris/ (props changed) soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ (props changed) soc2013/def/crashdump-head/cddl/contrib/opensolaris/cmd/zfs/ (props changed) soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libdtrace/aarch64/ (props changed) soc2013/def/crashdump-head/cddl/contrib/opensolaris/lib/libzfs/ (props changed) soc2013/def/crashdump-head/contrib/apr/ (props changed) soc2013/def/crashdump-head/contrib/atf/ (props changed) soc2013/def/crashdump-head/contrib/atf/atf-sh/atf_check_test.sh soc2013/def/crashdump-head/contrib/atf/atf-sh/misc_helpers.sh soc2013/def/crashdump-head/contrib/binutils/ (props changed) soc2013/def/crashdump-head/contrib/bmake/ (props changed) soc2013/def/crashdump-head/contrib/bsnmp/snmp_mibII/mibII_ip.c soc2013/def/crashdump-head/contrib/compiler-rt/ (props changed) soc2013/def/crashdump-head/contrib/compiler-rt/lib/safestack/ (props changed) soc2013/def/crashdump-head/contrib/diff/src/context.c soc2013/def/crashdump-head/contrib/dma/ (props changed) soc2013/def/crashdump-head/contrib/dtc/ (props changed) soc2013/def/crashdump-head/contrib/elftoolchain/ (props changed) soc2013/def/crashdump-head/contrib/expat/ (props changed) soc2013/def/crashdump-head/contrib/file/ (props changed) soc2013/def/crashdump-head/contrib/gcc/ (props changed) soc2013/def/crashdump-head/contrib/gcclibs/libcpp/files.c soc2013/def/crashdump-head/contrib/gcclibs/libgomp/ (props changed) soc2013/def/crashdump-head/contrib/gcclibs/libgomp/ChangeLog soc2013/def/crashdump-head/contrib/gcclibs/libgomp/Makefile.am soc2013/def/crashdump-head/contrib/gcclibs/libgomp/Makefile.in soc2013/def/crashdump-head/contrib/gcclibs/libgomp/aclocal.m4 soc2013/def/crashdump-head/contrib/gcclibs/libgomp/config.h.in soc2013/def/crashdump-head/contrib/gcclibs/libgomp/configure soc2013/def/crashdump-head/contrib/gcclibs/libgomp/configure.ac soc2013/def/crashdump-head/contrib/gcclibs/libgomp/configure.tgt soc2013/def/crashdump-head/contrib/gcclibs/libgomp/env.c soc2013/def/crashdump-head/contrib/gcclibs/libgomp/iter.c soc2013/def/crashdump-head/contrib/gcclibs/libgomp/libgomp.h soc2013/def/crashdump-head/contrib/gcclibs/libgomp/libgomp.texi soc2013/def/crashdump-head/contrib/gcclibs/libgomp/omp.h.in soc2013/def/crashdump-head/contrib/gcclibs/libgomp/omp_lib.h.in soc2013/def/crashdump-head/contrib/gcclibs/libgomp/team.c soc2013/def/crashdump-head/contrib/gdb/ (props changed) soc2013/def/crashdump-head/contrib/groff/ (props changed) soc2013/def/crashdump-head/contrib/hyperv/tools/hv_kvp_daemon.c soc2013/def/crashdump-head/contrib/ipfilter/ (props changed) soc2013/def/crashdump-head/contrib/ipfilter/ml_ipl.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mlfk_ipl.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mlh_rule.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mli_ipl.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mln_ipl.c (props changed) soc2013/def/crashdump-head/contrib/ipfilter/mls_ipl.c (props changed) soc2013/def/crashdump-head/contrib/jemalloc/COPYING soc2013/def/crashdump-head/contrib/jemalloc/ChangeLog soc2013/def/crashdump-head/contrib/jemalloc/FREEBSD-Xlist soc2013/def/crashdump-head/contrib/jemalloc/FREEBSD-diffs soc2013/def/crashdump-head/contrib/jemalloc/FREEBSD-upgrade soc2013/def/crashdump-head/contrib/jemalloc/VERSION soc2013/def/crashdump-head/contrib/jemalloc/doc/jemalloc.3 soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/arena.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/atomic.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/base.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/bitmap.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/chunk.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/chunk_dss.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/chunk_mmap.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/ckh.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/ctl.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/extent.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/hash.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/huge.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal_macros.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/mutex.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/private_namespace.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/prng.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/prof.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/public_namespace.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/ql.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/qr.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/quarantine.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/rb.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/rtree.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/size_classes.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/stats.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/tcache.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/tsd.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/internal/util.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/jemalloc.h soc2013/def/crashdump-head/contrib/jemalloc/include/jemalloc/jemalloc_FreeBSD.h soc2013/def/crashdump-head/contrib/jemalloc/src/arena.c soc2013/def/crashdump-head/contrib/jemalloc/src/base.c soc2013/def/crashdump-head/contrib/jemalloc/src/bitmap.c soc2013/def/crashdump-head/contrib/jemalloc/src/chunk.c soc2013/def/crashdump-head/contrib/jemalloc/src/chunk_dss.c soc2013/def/crashdump-head/contrib/jemalloc/src/chunk_mmap.c soc2013/def/crashdump-head/contrib/jemalloc/src/ckh.c soc2013/def/crashdump-head/contrib/jemalloc/src/ctl.c soc2013/def/crashdump-head/contrib/jemalloc/src/extent.c soc2013/def/crashdump-head/contrib/jemalloc/src/huge.c soc2013/def/crashdump-head/contrib/jemalloc/src/jemalloc.c soc2013/def/crashdump-head/contrib/jemalloc/src/mutex.c soc2013/def/crashdump-head/contrib/jemalloc/src/prof.c soc2013/def/crashdump-head/contrib/jemalloc/src/quarantine.c soc2013/def/crashdump-head/contrib/jemalloc/src/rtree.c soc2013/def/crashdump-head/contrib/jemalloc/src/stats.c soc2013/def/crashdump-head/contrib/jemalloc/src/tcache.c soc2013/def/crashdump-head/contrib/jemalloc/src/tsd.c soc2013/def/crashdump-head/contrib/jemalloc/src/util.c soc2013/def/crashdump-head/contrib/ldns/ (props changed) soc2013/def/crashdump-head/contrib/ldns/drill/config.h soc2013/def/crashdump-head/contrib/ldns/drill/drill.1 soc2013/def/crashdump-head/contrib/libarchive/ (props changed) soc2013/def/crashdump-head/contrib/libarchive/libarchive/ (props changed) soc2013/def/crashdump-head/contrib/libcxxrt/ (props changed) soc2013/def/crashdump-head/contrib/libcxxrt/exception.cc soc2013/def/crashdump-head/contrib/libexecinfo/ (props changed) soc2013/def/crashdump-head/contrib/libucl/ (props changed) soc2013/def/crashdump-head/contrib/libucl/doc/Makefile.am soc2013/def/crashdump-head/contrib/libucl/examples/ (props changed) soc2013/def/crashdump-head/contrib/libucl/include/ucl.h soc2013/def/crashdump-head/contrib/libucl/m4/ (props changed) soc2013/def/crashdump-head/contrib/libucl/python/ (props changed) soc2013/def/crashdump-head/contrib/libucl/src/Makefile.am soc2013/def/crashdump-head/contrib/libucl/src/ucl_emitter_utils.c soc2013/def/crashdump-head/contrib/libucl/src/ucl_parser.c soc2013/def/crashdump-head/contrib/libucl/src/xxhash.h soc2013/def/crashdump-head/contrib/libucl/tests/test_schema.c soc2013/def/crashdump-head/contrib/libucl/utils/Makefile.am soc2013/def/crashdump-head/contrib/libxo/.gitignore soc2013/def/crashdump-head/contrib/libxo/.travis.yml soc2013/def/crashdump-head/contrib/libxo/Makefile.am soc2013/def/crashdump-head/contrib/libxo/bin/Zaliases soc2013/def/crashdump-head/contrib/libxo/bin/setup.sh soc2013/def/crashdump-head/contrib/libxo/configure.ac soc2013/def/crashdump-head/contrib/libxo/doc/Makefile.am soc2013/def/crashdump-head/contrib/libxo/doc/libxo.txt soc2013/def/crashdump-head/contrib/libxo/libxo/Makefile.am soc2013/def/crashdump-head/contrib/libxo/libxo/libxo.3 soc2013/def/crashdump-head/contrib/libxo/libxo/libxo.c soc2013/def/crashdump-head/contrib/libxo/libxo/xo.h soc2013/def/crashdump-head/contrib/libxo/libxo/xo_attr.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_create.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_emit.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_err.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_error.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_finish.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_flush.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_format.5 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_no_setlocale.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_open_container.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_open_list.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_parse_args.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_set_allocator.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_set_flags.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_set_info.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_set_options.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_set_style.3 soc2013/def/crashdump-head/contrib/libxo/libxo/xo_set_writer.3 soc2013/def/crashdump-head/contrib/libxo/m4/libtool.m4 soc2013/def/crashdump-head/contrib/libxo/m4/ltoptions.m4 soc2013/def/crashdump-head/contrib/libxo/m4/ltversion.m4 soc2013/def/crashdump-head/contrib/libxo/tests/Makefile.am soc2013/def/crashdump-head/contrib/libxo/tests/core/Makefile.am soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.H.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.HIPx.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.HP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.J.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.JP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.T.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.X.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_01.XP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.H.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.HIPx.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.HP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.J.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.JP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.T.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.X.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_02.XP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.H.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.HIPx.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.HP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.J.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.JP.out (contents, props changed) soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.T.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.X.out (contents, props changed) soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_05.XP.out (contents, props changed) soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.H.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.HIPx.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.HIPx.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.HP.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.J.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.J.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.JP.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.JP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.T.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.X.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.X.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.XP.err soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_08.XP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/saved/test_09.JP.out soc2013/def/crashdump-head/contrib/libxo/tests/core/test_01.c soc2013/def/crashdump-head/contrib/libxo/tests/core/test_02.c soc2013/def/crashdump-head/contrib/libxo/tests/core/test_05.c soc2013/def/crashdump-head/contrib/libxo/tests/core/test_08.c soc2013/def/crashdump-head/contrib/libxo/xo/Makefile.am soc2013/def/crashdump-head/contrib/libxo/xo/xo.1 soc2013/def/crashdump-head/contrib/libxo/xo/xo.c soc2013/def/crashdump-head/contrib/libxo/xohtml/xohtml.css soc2013/def/crashdump-head/contrib/libxo/xohtml/xohtml.sh.in soc2013/def/crashdump-head/contrib/libxo/xolint/Makefile.am soc2013/def/crashdump-head/contrib/libxo/xolint/xolint.1 soc2013/def/crashdump-head/contrib/libxo/xolint/xolint.pl soc2013/def/crashdump-head/contrib/llvm/ (props changed) soc2013/def/crashdump-head/contrib/llvm/FREEBSD-Xlist soc2013/def/crashdump-head/contrib/llvm/LICENSE.TXT soc2013/def/crashdump-head/contrib/llvm/include/llvm-c/Core.h soc2013/def/crashdump-head/contrib/llvm/include/llvm-c/Linker.h soc2013/def/crashdump-head/contrib/llvm/include/llvm-c/Object.h soc2013/def/crashdump-head/contrib/llvm/include/llvm-c/Support.h soc2013/def/crashdump-head/contrib/llvm/include/llvm-c/TargetMachine.h soc2013/def/crashdump-head/contrib/llvm/include/llvm-c/Transforms/Scalar.h soc2013/def/crashdump-head/contrib/llvm/include/llvm-c/lto.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/APFloat.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/APInt.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/APSInt.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/ArrayRef.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/BitVector.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/DenseMap.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/DenseMapInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/EquivalenceClasses.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/FoldingSet.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/Hashing.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/ImmutableList.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/ImmutableMap.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/ImmutableSet.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/IndexedMap.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/IntervalMap.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/MapVector.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/None.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/Optional.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/PointerUnion.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/PostOrderIterator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/STLExtras.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/ScopedHashTable.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/SmallBitVector.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/SmallPtrSet.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/SmallVector.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/SparseBitVector.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/SparseMultiSet.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/SparseSet.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/StringMap.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/StringRef.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/TinyPtrVector.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/Triple.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/Twine.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/edit_distance.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/ilist.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ADT/iterator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/AssumptionCache.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/CFG.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/CallGraph.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/ConstantFolding.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/DominanceFrontierImpl.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/IVUsers.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/InlineCost.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/IntervalIterator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/LibCallAliasAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/LibCallSemantics.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/Loads.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/LoopInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/PHITransAddr.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/Passes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/PostDominators.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/RegionInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/RegionIterator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/SparsePropagation.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/TargetFolder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Analysis/ValueTracking.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/AsmParser/Parser.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Bitcode/BitCodes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Bitcode/BitcodeWriterPass.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/Analysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/CommandFlags.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/DIE.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/FastISel.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/GCMetadata.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/GCStrategy.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/GCs.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LiveInterval.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LiveRegMatrix.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/LiveStackAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineDominators.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineFunction.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineInstr.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineOperand.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineRegionInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineSSAUpdater.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/MachineValueType.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/Passes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/StackMaps.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/ValueTypes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/ValueTypes.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/CodeGen/VirtRegMap.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/DebugInfo/DIContext.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Argument.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Attributes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/BasicBlock.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/CFG.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/CallSite.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Comdat.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Constant.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/ConstantFolder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/ConstantRange.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Constants.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/DIBuilder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/DataLayout.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/DebugInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/DebugLoc.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/DerivedTypes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/DiagnosticInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/DiagnosticPrinter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Dominators.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Function.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/GVMaterializer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/GetElementPtrTypeIterator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/GlobalAlias.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/GlobalObject.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/GlobalValue.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/GlobalVariable.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IRBuilder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IRPrintingPasses.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/InlineAsm.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/InstIterator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/InstVisitor.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/InstrTypes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Instruction.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Instructions.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicInst.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Intrinsics.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Intrinsics.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicsARM.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/IntrinsicsX86.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/LLVMContext.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/LegacyPassManager.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/LegacyPassNameParser.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/MDBuilder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Mangler.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Metadata.def soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Metadata.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Module.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/NoFolder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/OperandTraits.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Operator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/PassManager.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/PassManagerInternal.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/PatternMatch.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/PredIteratorCache.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Statepoint.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Type.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/TypeBuilder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Use.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/UseListOrder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/User.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Value.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/ValueHandle.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/ValueMap.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/IR/Verifier.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/InitializePasses.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/LTO/LTOCodeGenerator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/LTO/LTOModule.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/LineEditor/LineEditor.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/LinkAllPasses.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Linker/Linker.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/ConstantPools.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCAsmBackend.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCAsmInfoELF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCAsmLayout.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCAssembler.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCCodeEmitter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCContext.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCDisassembler.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCDwarf.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCELFStreamer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCExpr.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCFixup.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCFixupKindInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCInst.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCInstBuilder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCInstrDesc.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCInstrItineraries.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCLabel.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCLinkerOptimizationHint.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCObjectStreamer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCObjectWriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCRelocationInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSchedule.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSection.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSectionCOFF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSectionELF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSectionMachO.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCStreamer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSymbol.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCSymbolizer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCTargetOptions.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCValue.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCWinCOFFStreamer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/MCWinEH.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/SectionKind.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/MC/SubtargetFeature.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/Archive.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/Binary.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/COFF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/ELF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/ELFObjectFile.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/ELFTypes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/ELFYAML.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/Error.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/IRObjectFile.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/MachO.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/MachOUniversal.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/ObjectFile.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/RelocVisitor.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Object/SymbolicFile.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Option/Arg.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Option/ArgList.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Option/OptSpecifier.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Option/OptTable.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Option/Option.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Pass.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/PassAnalysisSupport.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/PassInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ProfileData/CoverageMapping.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ProfileData/CoverageMappingReader.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ProfileData/InstrProf.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ProfileData/InstrProfWriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/ProfileData/SampleProf.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/AlignOf.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Allocator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/BranchProbability.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/COFF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/CommandLine.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Compiler.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Compression.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/ConvertUTF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/DataExtractor.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/DataStream.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Debug.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Dwarf.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/ELF.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/ELFRelocs/Hexagon.def soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/ELFRelocs/Mips.def soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/ELFRelocs/Sparc.def soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Endian.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/EndianStream.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/ErrorOr.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/FileOutputBuffer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/FileSystem.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/FileUtilities.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Format.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/FormattedStream.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/GCOV.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/GenericDomTree.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/GraphWriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/LockFileManager.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/MathExtras.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/MemoryBuffer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Mutex.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/MutexGuard.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/OnDiskHashTable.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Options.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/PrettyStackTrace.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Program.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/RWMutex.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/RandomNumberGenerator.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Regex.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Registry.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/ScaledNumber.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Signals.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/SourceMgr.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/SpecialCaseList.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/StreamingMemoryObject.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/StringPool.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/SwapByteOrder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/SystemUtils.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/TargetRegistry.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Timer.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/ToolOutputFile.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/UniqueLock.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/Watchdog.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/YAMLParser.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/YAMLTraits.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/circular_raw_ostream.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/raw_os_ostream.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/raw_ostream.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Support/type_traits.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/TableGen/Record.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/TableGen/SetTheory.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/TableGen/TableGenBackend.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/Target.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetCallingConv.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetLowering.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetMachine.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetOpcodes.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetOptions.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetSelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/IPO.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Instrumentation.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Scalar.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/Local.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h soc2013/def/crashdump-head/contrib/llvm/include/llvm/module.modulemap soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/AliasAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/AliasAnalysisCounter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/AliasDebugger.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/AliasSetTracker.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/Analysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/AssumptionCache.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/CFG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/CFGPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/CFLAliasAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/CaptureTracking.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/CodeMetrics.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/ConstantFolding.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/CostModel.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/Delinearization.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/IPA/InlineCost.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/IVUsers.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/InstructionSimplify.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/LazyValueInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/LibCallAliasAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/LibCallSemantics.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/Lint.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/Loads.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/LoopInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/LoopPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/MemDepPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/NoAliasAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/PHITransAddr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/RegionPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/RegionPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/ScalarEvolution.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Analysis/ValueTracking.cpp soc2013/def/crashdump-head/contrib/llvm/lib/AsmParser/LLLexer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/AsmParser/LLLexer.h soc2013/def/crashdump-head/contrib/llvm/lib/AsmParser/LLParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/AsmParser/LLParser.h soc2013/def/crashdump-head/contrib/llvm/lib/AsmParser/LLToken.h soc2013/def/crashdump-head/contrib/llvm/lib/AsmParser/Parser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AllocationOrder.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/Analysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AntiDepBreaker.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/BranchFolding.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/BranchFolding.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/CallingConvLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/CodeGen.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ErlangGC.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/GCMetadata.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/GCMetadataPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/GCStrategy.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/GlobalMerge.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/IfConversion.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/InlineSpiller.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/InterferenceCache.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/InterferenceCache.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LexicalScopes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveDebugVariables.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveInterval.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveRangeCalc.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LiveVariables.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineCSE.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineCombiner.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineDominators.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineFunction.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineInstr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineLICM.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineScheduler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineSink.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/MachineVerifier.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/OcamlGC.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/PHIElimination.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/Passes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/RegAllocBase.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/RegAllocFast.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/RegisterPressure.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SlotIndexes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SpillPlacement.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SplitKit.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/SplitKit.h soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/StackColoring.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/StackMaps.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/StackProtector.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/StatepointExampleGC.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/TailDuplication.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/TargetSchedule.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp soc2013/def/crashdump-head/contrib/llvm/lib/CodeGen/VirtRegMap.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h soc2013/def/crashdump-head/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/AsmWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/AttributeImpl.h soc2013/def/crashdump-head/contrib/llvm/lib/IR/Attributes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/AutoUpgrade.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/BasicBlock.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/ConstantFold.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/ConstantFold.h soc2013/def/crashdump-head/contrib/llvm/lib/IR/ConstantRange.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Constants.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/ConstantsContext.h soc2013/def/crashdump-head/contrib/llvm/lib/IR/Core.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/DIBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/DataLayout.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/DebugInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/DebugLoc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/DiagnosticInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/DiagnosticPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Dominators.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Function.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/GCOV.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Globals.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/IRBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/IRPrintingPasses.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/InlineAsm.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Instruction.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Instructions.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/LLVMContext.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/LLVMContextImpl.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/LLVMContextImpl.h soc2013/def/crashdump-head/contrib/llvm/lib/IR/LegacyPassManager.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/MDBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Mangler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Metadata.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/MetadataTracking.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Module.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Pass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Statepoint.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Type.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/TypeFinder.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/User.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Value.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/ValueSymbolTable.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/ValueTypes.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IR/Verifier.cpp soc2013/def/crashdump-head/contrib/llvm/lib/IRReader/IRReader.cpp soc2013/def/crashdump-head/contrib/llvm/lib/LTO/LTOCodeGenerator.cpp soc2013/def/crashdump-head/contrib/llvm/lib/LTO/LTOModule.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Linker/LinkModules.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/ConstantPools.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/ELFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCAsmBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCAsmInfoELF.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCAsmStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCAssembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCCodeGenInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCContext.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCDwarf.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCELFStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCExpr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCInst.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCMachOStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCMachObjectTargetWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCNullStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCObjectFileInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCObjectStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCParser/AsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCSection.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCSectionCOFF.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCSectionELF.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCSectionMachO.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCSubtargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCSymbol.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCValue.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCWin64EH.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MCWinEH.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/MachObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/SubtargetFeature.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/MC/WinCOFFStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/Archive.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/Binary.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/COFFObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/ELFObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/ELFYAML.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/Error.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/IRObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/MachOObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/MachOUniversal.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/Object.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/ObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/RecordStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Object/RecordStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/Object/SymbolicFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Option/Arg.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Option/ArgList.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Option/OptTable.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Option/Option.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ProfileData/CoverageMapping.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ProfileData/CoverageMappingReader.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ProfileData/CoverageMappingWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ProfileData/InstrProf.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ProfileData/InstrProfReader.cpp soc2013/def/crashdump-head/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/APFloat.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/APInt.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/APSInt.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Allocator.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/CommandLine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Compression.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/CrashRecoveryContext.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/DataStream.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Debug.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Dwarf.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/DynamicLibrary.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/FileOutputBuffer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/FoldingSet.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/FormattedStream.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/GraphWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Host.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Locale.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/LockFileManager.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/MemoryBuffer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Path.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/PrettyStackTrace.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Process.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Program.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/RandomNumberGenerator.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Regex.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/ScaledNumber.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/SmallPtrSet.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/SmallVector.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/SourceMgr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/SpecialCaseList.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/StreamingMemoryObject.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/StringExtras.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/StringMap.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/SystemUtils.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/TargetRegistry.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Timer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Triple.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Twine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Unix/Host.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Unix/Memory.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Unix/Process.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Unix/Program.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Unix/Signals.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Valgrind.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/Memory.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/Path.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/Process.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/Program.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/Signals.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/TimeValue.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/WindowsSupport.h soc2013/def/crashdump-head/contrib/llvm/lib/Support/Windows/explicit_symbols.inc soc2013/def/crashdump-head/contrib/llvm/lib/Support/YAMLParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/YAMLTraits.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/raw_ostream.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Support/regcomp.c soc2013/def/crashdump-head/contrib/llvm/lib/TableGen/Error.cpp soc2013/def/crashdump-head/contrib/llvm/lib/TableGen/Main.cpp soc2013/def/crashdump-head/contrib/llvm/lib/TableGen/Record.cpp soc2013/def/crashdump-head/contrib/llvm/lib/TableGen/SetTheory.cpp soc2013/def/crashdump-head/contrib/llvm/lib/TableGen/TGLexer.h soc2013/def/crashdump-head/contrib/llvm/lib/TableGen/TGParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/TableGen/TGParser.h soc2013/def/crashdump-head/contrib/llvm/lib/TableGen/TableGenBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64BranchRelaxation.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARM.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARM.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMCallingConv.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMCallingConv.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMSubtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/CppBackend/TargetInfo/CppBackendTargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/Hexagon.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/Hexagon.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV3.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MicroMipsInstrFPU.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips32r6InstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsCCState.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsCCState.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsCallingConv.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsCondMov.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsOptionRecord.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsOs16.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSchedule.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsSubtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTX.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTX.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXFavorNonGenericAddrSpaces.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVPTXVector.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPC.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPC.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCTargetStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp (contents, props changed) soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp (contents, props changed) soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp (contents, props changed) soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h (contents, props changed) soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/Sparc.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcMCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZ.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZ.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZOperands.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZPatterns.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/Target.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/TargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/TargetMachineC.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/AsmParser/X86Operand.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFRelocationInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachORelocationInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86AsmPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86CallingConv.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86FastISel.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86FrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86ISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrAVX512.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrCompiler.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrControl.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrExtension.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrFMA.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrFPStack.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrFormats.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrMMX.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrSGX.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrSSE.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrSystem.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86InstrXOP.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86RegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86RegisterInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86SchedHaswell.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86Subtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86Subtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86TargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCore.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreSubtarget.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h soc2013/def/crashdump-head/contrib/llvm/lib/Target/XCore/XCoreTargetStreamer.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/IPO.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/Inliner.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/DCE.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/GVN.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LICM.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoadCombine.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/SROA.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/SampleProfile.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/Scalarizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/Sink.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/AddDiscriminators.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/GlobalStatus.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/Local.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp soc2013/def/crashdump-head/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp soc2013/def/crashdump-head/contrib/llvm/patches/README.TXT soc2013/def/crashdump-head/contrib/llvm/projects/libunwind/ (props changed) soc2013/def/crashdump-head/contrib/llvm/tools/bugpoint/BugDriver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/bugpoint/CrashDebugger.cpp soc2013/def/crashdump-head/contrib/llvm/tools/bugpoint/ExtractFunction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/bugpoint/Miscompilation.cpp soc2013/def/crashdump-head/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/bugpoint/ToolRunner.h soc2013/def/crashdump-head/contrib/llvm/tools/bugpoint/bugpoint.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/ (props changed) soc2013/def/crashdump-head/contrib/llvm/tools/clang/FREEBSD-Xlist soc2013/def/crashdump-head/contrib/llvm/tools/clang/LICENSE.TXT soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang-c/BuildSystem.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang-c/Index.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/Attr.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/DataRecursiveASTVisitor.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/Decl.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/Expr.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/LambdaCapture.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/Mangle.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/Stmt.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/Type.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/ABI.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/Attr.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/AttrDocs.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/Module.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/Action.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/Driver.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/Job.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/Multilib.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/Options.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/Types.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Driver/Types.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Format/Format.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/Token.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Parse/Parser.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Rewrite/Core/DeltaTree.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/Overload.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/Scope.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/Sema.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/Template.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Serialization/Module.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/include/clang/module.modulemap soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/CXXABI.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/Decl.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/DeclGroup.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/Expr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/InheritViz.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/Stmt.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/StmtIterator.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/Type.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Diagnostics.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/Module.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/Sanitizers.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/Targets.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/Version.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/EHScopeStack.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/Action.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/Driver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/Job.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/Multilib.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/ToolChains.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/Tools.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/Tools.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Driver/Types.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/Format.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/FormatToken.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/FormatToken.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/Intrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/adxintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/altivec.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/ammintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/arm_acle.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avx512erintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/avxintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/emmintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/immintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/mmintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/module.modulemap soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/rtmintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/shaintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/smmintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/stdatomic.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/tbmintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/unwind.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Headers/xopintrin.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Index/SimpleFormatContext.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/Parser.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/Scope.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/Sema.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/Module.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/tools/driver/driver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llc/llc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/ (props changed) soc2013/def/crashdump-head/contrib/llvm/tools/lldb/FREEBSD-Xlist soc2013/def/crashdump-head/contrib/llvm/tools/lldb/docs/lldb.1 soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBBlock.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointLocation.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBBroadcaster.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBCommunication.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBCompileUnit.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBData.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBDeclaration.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBError.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBEvent.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpecList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBFunction.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBHostOS.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBLineEntry.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBModule.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBModuleSpec.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBPlatform.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBQueue.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBQueueItem.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBSection.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBSourceManager.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBStream.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBStringList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBSymbol.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContext.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContextList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBType.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBTypeCategory.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFilter.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFormat.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBTypeNameSpecifier.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSummary.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSynthetic.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBValueList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/API/SBWatchpoint.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Address.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ClangForward.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Connection.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ConnectionMachPort.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ConnectionSharedMemory.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ConstString.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/DataEncoder.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/DataExtractor.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Log.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/Module.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/PluginManager.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/RegularExpression.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/StringList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/StructuredData.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/CXXFormatterFunctions.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/ASTResultSynthesizer.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/ASTStructExtractor.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/ClangASTSource.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/ClangExpressionDeclMap.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/ClangExpressionParser.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/ClangFunction.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/ClangModulesDeclVendor.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/ClangPersistentVariables.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/ClangUserExpression.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/IRForTarget.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Expression/IRToDWARF.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/File.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/FileSpec.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/Host.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosix.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValues.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/PythonDataObjects.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreterPython.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTType.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/Process.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/ProcessInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/Target.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Utility/PseudoTerminal.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/lldb-defines.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/lldb-enumerations.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/lldb-forward.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/include/lldb/lldb-private.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBAddress.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBBlock.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBEvent.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBFrame.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBFunction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBListener.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBModule.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBPlatform.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBProcess.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBQueue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBStream.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBTarget.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBThread.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBType.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBTypeFilter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBTypeFormat.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBTypeSummary.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/API/SBValue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Address.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/AddressResolver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Communication.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ConnectionMachPort.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ConnectionSharedMemory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ConstString.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/DataBufferHeap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/DataBufferMemoryMap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/DataEncoder.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/DataExtractor.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Debugger.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Error.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/FastDemangle.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/FileLineResolver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Language.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Listener.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Log.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Mangled.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Module.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/RegisterValue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/RegularExpression.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Scalar.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Section.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/StringList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/StructuredData.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/UUID.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/Value.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/CF.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/CXXFormatterFunctions.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/Cocoa.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/LibCxx.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxInitializerList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxMap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxUnorderedMap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxVector.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/LibStdcpp.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/NSArray.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/NSDictionary.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/NSIndexPath.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/NSSet.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/ASTResultSynthesizer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/ASTStructExtractor.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/ClangASTSource.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/ClangExpressionDeclMap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/ClangExpressionParser.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/ClangModulesDeclVendor.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/ClangUserExpression.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/IRForTarget.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/IRInterpreter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/File.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/FileSpec.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/Host.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/Terminal.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/freebsd/Host.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/freebsd/HostThreadFreeBSD.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/freebsd/ThisThread.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/Property.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/PythonDataObjects.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreterNone.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreterPython.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_powerpc.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoInterface.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/Block.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/ClangASTType.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/Function.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/Symtab.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/Type.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ABI.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/FileAction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/Memory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/Platform.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/Process.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/Target.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/TargetList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/Thread.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/PseudoTerminal.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/Utility/UriParser.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/source/lldb.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/driver/Driver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/driver/Driver.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/driver/Platform.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIReadMe.txt soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemLinux.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemLinux.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemOsx.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemOsx.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemWindows.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemWindows.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h soc2013/def/crashdump-head/contrib/llvm/tools/lli/RemoteMemoryManager.cpp soc2013/def/crashdump-head/contrib/llvm/tools/lli/RemoteMemoryManager.h soc2013/def/crashdump-head/contrib/llvm/tools/lli/RemoteTargetExternal.h soc2013/def/crashdump-head/contrib/llvm/tools/lli/lli.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-ar/llvm-ar.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-as/llvm-as.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/CoverageReport.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/CoverageReport.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/RenderingSupport.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/SourceCoverageView.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/SourceCoverageView.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/gcov.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-cov/llvm-cov.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-dis/llvm-dis.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-extract/llvm-extract.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-link/llvm-link.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-mc/llvm-mc.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-nm/llvm-nm.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-objdump/COFFDump.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-objdump/ELFDump.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-objdump/MachODump.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-objdump/llvm-objdump.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/ARMEHABIPrinter.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/MachODumper.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/ObjDumper.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/StreamWriter.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/Win64EHDumper.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-readobj/llvm-readobj.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-stress/llvm-stress.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.cpp soc2013/def/crashdump-head/contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.h soc2013/def/crashdump-head/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp soc2013/def/crashdump-head/contrib/llvm/tools/macho-dump/macho-dump.cpp soc2013/def/crashdump-head/contrib/llvm/tools/opt/BreakpointPrinter.cpp soc2013/def/crashdump-head/contrib/llvm/tools/opt/NewPMDriver.cpp soc2013/def/crashdump-head/contrib/llvm/tools/opt/NewPMDriver.h soc2013/def/crashdump-head/contrib/llvm/tools/opt/opt.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/AsmWriterInst.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/AsmWriterInst.h soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CTagsEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenInstruction.h soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenRegisters.h soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/CodeGenTarget.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/DAGISelMatcher.h soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/X86DisassemblerShared.h soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp soc2013/def/crashdump-head/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp soc2013/def/crashdump-head/contrib/mdocml/ (props changed) soc2013/def/crashdump-head/contrib/mdocml/config.h soc2013/def/crashdump-head/contrib/mdocml/lib.in soc2013/def/crashdump-head/contrib/mdocml/read.c soc2013/def/crashdump-head/contrib/ncurses/ (props changed) soc2013/def/crashdump-head/contrib/ncurses/ncurses/base/MKlib_gen.sh soc2013/def/crashdump-head/contrib/netcat/ (props changed) soc2013/def/crashdump-head/contrib/netcat/nc.1 soc2013/def/crashdump-head/contrib/netcat/netcat.c soc2013/def/crashdump-head/contrib/netcat/socks.c soc2013/def/crashdump-head/contrib/ntp/ (props changed) soc2013/def/crashdump-head/contrib/ntp/ChangeLog soc2013/def/crashdump-head/contrib/ntp/CommitLog soc2013/def/crashdump-head/contrib/ntp/Makefile.am soc2013/def/crashdump-head/contrib/ntp/Makefile.in soc2013/def/crashdump-head/contrib/ntp/NEWS soc2013/def/crashdump-head/contrib/ntp/aclocal.m4 soc2013/def/crashdump-head/contrib/ntp/adjtimed/Makefile.in soc2013/def/crashdump-head/contrib/ntp/adjtimed/adjtimed.c soc2013/def/crashdump-head/contrib/ntp/bootstrap soc2013/def/crashdump-head/contrib/ntp/clockstuff/Makefile.in soc2013/def/crashdump-head/contrib/ntp/clockstuff/chutest.c soc2013/def/crashdump-head/contrib/ntp/clockstuff/propdelay.c soc2013/def/crashdump-head/contrib/ntp/config.h.in soc2013/def/crashdump-head/contrib/ntp/configure soc2013/def/crashdump-head/contrib/ntp/configure.ac soc2013/def/crashdump-head/contrib/ntp/html/build.html soc2013/def/crashdump-head/contrib/ntp/html/decode.html soc2013/def/crashdump-head/contrib/ntp/html/drivers/driver22.html soc2013/def/crashdump-head/contrib/ntp/html/drivers/driver40.html soc2013/def/crashdump-head/contrib/ntp/html/drivers/driver46.html soc2013/def/crashdump-head/contrib/ntp/html/miscopt.html soc2013/def/crashdump-head/contrib/ntp/html/refclock.html soc2013/def/crashdump-head/contrib/ntp/html/sntp.html soc2013/def/crashdump-head/contrib/ntp/html/stats.html soc2013/def/crashdump-head/contrib/ntp/include/Makefile.am soc2013/def/crashdump-head/contrib/ntp/include/Makefile.in soc2013/def/crashdump-head/contrib/ntp/include/binio.h soc2013/def/crashdump-head/contrib/ntp/include/isc/Makefile.in soc2013/def/crashdump-head/contrib/ntp/include/mbg_gps166.h soc2013/def/crashdump-head/contrib/ntp/include/ntp.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_assert.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_calendar.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_config.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_control.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_fp.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_io.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_lists.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_md5.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_stdlib.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_syslog.h soc2013/def/crashdump-head/contrib/ntp/include/ntp_types.h soc2013/def/crashdump-head/contrib/ntp/include/ntpd.h soc2013/def/crashdump-head/contrib/ntp/include/parse.h soc2013/def/crashdump-head/contrib/ntp/include/parse_conf.h soc2013/def/crashdump-head/contrib/ntp/kernel/Makefile.in soc2013/def/crashdump-head/contrib/ntp/kernel/sys/Makefile.in soc2013/def/crashdump-head/contrib/ntp/kernel/sys/parsestreams.h soc2013/def/crashdump-head/contrib/ntp/lib/isc/inet_ntop.c soc2013/def/crashdump-head/contrib/ntp/lib/isc/log.c soc2013/def/crashdump-head/contrib/ntp/lib/isc/result.c soc2013/def/crashdump-head/contrib/ntp/lib/isc/unix/file.c soc2013/def/crashdump-head/contrib/ntp/lib/isc/unix/ifiter_getifaddrs.c soc2013/def/crashdump-head/contrib/ntp/lib/isc/unix/ifiter_ioctl.c soc2013/def/crashdump-head/contrib/ntp/lib/isc/unix/net.c soc2013/def/crashdump-head/contrib/ntp/libjsmn/Makefile soc2013/def/crashdump-head/contrib/ntp/libjsmn/README.md soc2013/def/crashdump-head/contrib/ntp/libjsmn/jsmn.c soc2013/def/crashdump-head/contrib/ntp/libjsmn/jsmn.h soc2013/def/crashdump-head/contrib/ntp/libjsmn/jsmn_test.c soc2013/def/crashdump-head/contrib/ntp/libntp/Makefile.am soc2013/def/crashdump-head/contrib/ntp/libntp/Makefile.in soc2013/def/crashdump-head/contrib/ntp/libntp/atolfp.c soc2013/def/crashdump-head/contrib/ntp/libntp/audio.c soc2013/def/crashdump-head/contrib/ntp/libntp/authkeys.c soc2013/def/crashdump-head/contrib/ntp/libntp/authreadkeys.c soc2013/def/crashdump-head/contrib/ntp/libntp/caljulian.c soc2013/def/crashdump-head/contrib/ntp/libntp/caltontp.c soc2013/def/crashdump-head/contrib/ntp/libntp/decodenetnum.c soc2013/def/crashdump-head/contrib/ntp/libntp/emalloc.c soc2013/def/crashdump-head/contrib/ntp/libntp/icom.c soc2013/def/crashdump-head/contrib/ntp/libntp/machines.c soc2013/def/crashdump-head/contrib/ntp/libntp/msyslog.c soc2013/def/crashdump-head/contrib/ntp/libntp/ntp_calendar.c soc2013/def/crashdump-head/contrib/ntp/libntp/ntp_intres.c soc2013/def/crashdump-head/contrib/ntp/libntp/ntp_lineedit.c soc2013/def/crashdump-head/contrib/ntp/libntp/ntp_rfc2553.c soc2013/def/crashdump-head/contrib/ntp/libntp/ntp_worker.c soc2013/def/crashdump-head/contrib/ntp/libntp/prettydate.c soc2013/def/crashdump-head/contrib/ntp/libntp/recvbuff.c soc2013/def/crashdump-head/contrib/ntp/libntp/socket.c soc2013/def/crashdump-head/contrib/ntp/libntp/socktohost.c soc2013/def/crashdump-head/contrib/ntp/libntp/statestr.c soc2013/def/crashdump-head/contrib/ntp/libntp/strdup.c soc2013/def/crashdump-head/contrib/ntp/libntp/work_fork.c soc2013/def/crashdump-head/contrib/ntp/libparse/Makefile.in soc2013/def/crashdump-head/contrib/ntp/libparse/clk_computime.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_dcf7000.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_hopf6021.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_meinberg.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_rawdcf.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_rcc8000.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_schmid.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_sel240x.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_trimtaip.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_trimtsip.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_varitext.c soc2013/def/crashdump-head/contrib/ntp/libparse/clk_wharton.c soc2013/def/crashdump-head/contrib/ntp/libparse/data_mbg.c soc2013/def/crashdump-head/contrib/ntp/libparse/gpstolfp.c soc2013/def/crashdump-head/contrib/ntp/libparse/parse.c soc2013/def/crashdump-head/contrib/ntp/libparse/parse_conf.c soc2013/def/crashdump-head/contrib/ntp/libparse/parsesolaris.c soc2013/def/crashdump-head/contrib/ntp/libparse/parsestreams.c soc2013/def/crashdump-head/contrib/ntp/libparse/trim_info.c soc2013/def/crashdump-head/contrib/ntp/ntpd/Makefile.am soc2013/def/crashdump-head/contrib/ntp/ntpd/Makefile.in soc2013/def/crashdump-head/contrib/ntp/ntpd/cmd_args.c soc2013/def/crashdump-head/contrib/ntp/ntpd/complete.conf.in soc2013/def/crashdump-head/contrib/ntp/ntpd/invoke-ntp.conf.texi soc2013/def/crashdump-head/contrib/ntp/ntpd/invoke-ntp.keys.texi soc2013/def/crashdump-head/contrib/ntp/ntpd/invoke-ntpd.texi soc2013/def/crashdump-head/contrib/ntp/ntpd/keyword-gen-utd soc2013/def/crashdump-head/contrib/ntp/ntpd/keyword-gen.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.conf.5man soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.conf.5mdoc soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.conf.def soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.conf.html soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.conf.man.in soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.conf.mdoc.in soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.keys.5man soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.keys.5mdoc soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.keys.html soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.keys.man.in soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp.keys.mdoc.in soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_config.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_control.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_crypto.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_io.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_keyword.h soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_leapsec.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_leapsec.h soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_loopfilter.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_monitor.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_parser.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_parser.h soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_peer.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_proto.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_refclock.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_request.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_restrict.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_scanner.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_scanner.h soc2013/def/crashdump-head/contrib/ntp/ntpd/ntp_timer.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpd-opts.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpd-opts.def soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpd-opts.h soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpd.1ntpdman soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpd.1ntpdmdoc soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpd.c soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpd.html soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpd.man.in soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpd.mdoc.in soc2013/def/crashdump-head/contrib/ntp/ntpd/ntpdbase-opts.def soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_arc.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_chu.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_gpsdjson.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_jjy.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_local.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_nmea.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_palisade.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_palisade.h soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_parse.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_shm.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_true.c soc2013/def/crashdump-head/contrib/ntp/ntpd/refclock_wwv.c soc2013/def/crashdump-head/contrib/ntp/ntpdate/Makefile.in soc2013/def/crashdump-head/contrib/ntp/ntpdate/ntpdate.c soc2013/def/crashdump-head/contrib/ntp/ntpdc/Makefile.in soc2013/def/crashdump-head/contrib/ntp/ntpdc/invoke-ntpdc.texi soc2013/def/crashdump-head/contrib/ntp/ntpdc/nl.pl soc2013/def/crashdump-head/contrib/ntp/ntpdc/ntpdc-opts.c soc2013/def/crashdump-head/contrib/ntp/ntpdc/ntpdc-opts.h soc2013/def/crashdump-head/contrib/ntp/ntpdc/ntpdc.1ntpdcman soc2013/def/crashdump-head/contrib/ntp/ntpdc/ntpdc.1ntpdcmdoc soc2013/def/crashdump-head/contrib/ntp/ntpdc/ntpdc.c soc2013/def/crashdump-head/contrib/ntp/ntpdc/ntpdc.html soc2013/def/crashdump-head/contrib/ntp/ntpdc/ntpdc.man.in soc2013/def/crashdump-head/contrib/ntp/ntpdc/ntpdc.mdoc.in soc2013/def/crashdump-head/contrib/ntp/ntpq/Makefile.in soc2013/def/crashdump-head/contrib/ntp/ntpq/invoke-ntpq.texi soc2013/def/crashdump-head/contrib/ntp/ntpq/libntpq.h soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq-opts.c soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq-opts.def soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq-opts.h soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq-subs.c soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq.1ntpqman soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq.1ntpqmdoc soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq.c soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq.html soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq.man.in soc2013/def/crashdump-head/contrib/ntp/ntpq/ntpq.mdoc.in soc2013/def/crashdump-head/contrib/ntp/ntpsnmpd/Makefile.in soc2013/def/crashdump-head/contrib/ntp/ntpsnmpd/invoke-ntpsnmpd.texi soc2013/def/crashdump-head/contrib/ntp/ntpsnmpd/ntpsnmpd-opts.c soc2013/def/crashdump-head/contrib/ntp/ntpsnmpd/ntpsnmpd-opts.h soc2013/def/crashdump-head/contrib/ntp/ntpsnmpd/ntpsnmpd.1ntpsnmpdman soc2013/def/crashdump-head/contrib/ntp/ntpsnmpd/ntpsnmpd.1ntpsnmpdmdoc soc2013/def/crashdump-head/contrib/ntp/ntpsnmpd/ntpsnmpd.html soc2013/def/crashdump-head/contrib/ntp/ntpsnmpd/ntpsnmpd.man.in soc2013/def/crashdump-head/contrib/ntp/ntpsnmpd/ntpsnmpd.mdoc.in soc2013/def/crashdump-head/contrib/ntp/packageinfo.sh soc2013/def/crashdump-head/contrib/ntp/parseutil/Makefile.in soc2013/def/crashdump-head/contrib/ntp/parseutil/dcfd.c soc2013/def/crashdump-head/contrib/ntp/parseutil/testdcf.c soc2013/def/crashdump-head/contrib/ntp/scripts/Makefile.am soc2013/def/crashdump-head/contrib/ntp/scripts/Makefile.in soc2013/def/crashdump-head/contrib/ntp/scripts/build/Makefile.in soc2013/def/crashdump-head/contrib/ntp/scripts/calc_tickadj/Makefile.in soc2013/def/crashdump-head/contrib/ntp/scripts/calc_tickadj/calc_tickadj.1calc_tickadjman soc2013/def/crashdump-head/contrib/ntp/scripts/calc_tickadj/calc_tickadj.1calc_tickadjmdoc soc2013/def/crashdump-head/contrib/ntp/scripts/calc_tickadj/calc_tickadj.html soc2013/def/crashdump-head/contrib/ntp/scripts/calc_tickadj/calc_tickadj.man.in soc2013/def/crashdump-head/contrib/ntp/scripts/calc_tickadj/calc_tickadj.mdoc.in soc2013/def/crashdump-head/contrib/ntp/scripts/calc_tickadj/invoke-calc_tickadj.texi soc2013/def/crashdump-head/contrib/ntp/scripts/invoke-plot_summary.texi soc2013/def/crashdump-head/contrib/ntp/scripts/invoke-summary.texi soc2013/def/crashdump-head/contrib/ntp/scripts/lib/Makefile.in soc2013/def/crashdump-head/contrib/ntp/scripts/lib/NTP/Util.pm soc2013/def/crashdump-head/contrib/ntp/scripts/ntp-wait/Makefile.in soc2013/def/crashdump-head/contrib/ntp/scripts/ntp-wait/invoke-ntp-wait.texi soc2013/def/crashdump-head/contrib/ntp/scripts/ntp-wait/ntp-wait-opts soc2013/def/crashdump-head/contrib/ntp/scripts/ntp-wait/ntp-wait.1ntp-waitman soc2013/def/crashdump-head/contrib/ntp/scripts/ntp-wait/ntp-wait.1ntp-waitmdoc soc2013/def/crashdump-head/contrib/ntp/scripts/ntp-wait/ntp-wait.html soc2013/def/crashdump-head/contrib/ntp/scripts/ntp-wait/ntp-wait.man.in soc2013/def/crashdump-head/contrib/ntp/scripts/ntp-wait/ntp-wait.mdoc.in soc2013/def/crashdump-head/contrib/ntp/scripts/ntpsweep/Makefile.in soc2013/def/crashdump-head/contrib/ntp/scripts/ntpsweep/invoke-ntpsweep.texi soc2013/def/crashdump-head/contrib/ntp/scripts/ntpsweep/ntpsweep-opts soc2013/def/crashdump-head/contrib/ntp/scripts/ntpsweep/ntpsweep.1ntpsweepman soc2013/def/crashdump-head/contrib/ntp/scripts/ntpsweep/ntpsweep.1ntpsweepmdoc soc2013/def/crashdump-head/contrib/ntp/scripts/ntpsweep/ntpsweep.html soc2013/def/crashdump-head/contrib/ntp/scripts/ntpsweep/ntpsweep.in soc2013/def/crashdump-head/contrib/ntp/scripts/ntpsweep/ntpsweep.man.in soc2013/def/crashdump-head/contrib/ntp/scripts/ntpsweep/ntpsweep.mdoc.in soc2013/def/crashdump-head/contrib/ntp/scripts/ntptrace/Makefile.in soc2013/def/crashdump-head/contrib/ntp/scripts/ntptrace/invoke-ntptrace.texi soc2013/def/crashdump-head/contrib/ntp/scripts/ntptrace/ntptrace-opts soc2013/def/crashdump-head/contrib/ntp/scripts/ntptrace/ntptrace.1ntptraceman soc2013/def/crashdump-head/contrib/ntp/scripts/ntptrace/ntptrace.1ntptracemdoc soc2013/def/crashdump-head/contrib/ntp/scripts/ntptrace/ntptrace.html soc2013/def/crashdump-head/contrib/ntp/scripts/ntptrace/ntptrace.man.in soc2013/def/crashdump-head/contrib/ntp/scripts/ntptrace/ntptrace.mdoc.in soc2013/def/crashdump-head/contrib/ntp/scripts/plot_summary-opts soc2013/def/crashdump-head/contrib/ntp/scripts/plot_summary.1plot_summaryman soc2013/def/crashdump-head/contrib/ntp/scripts/plot_summary.1plot_summarymdoc soc2013/def/crashdump-head/contrib/ntp/scripts/plot_summary.html soc2013/def/crashdump-head/contrib/ntp/scripts/plot_summary.man.in soc2013/def/crashdump-head/contrib/ntp/scripts/plot_summary.mdoc.in soc2013/def/crashdump-head/contrib/ntp/scripts/summary-opts soc2013/def/crashdump-head/contrib/ntp/scripts/summary.1summaryman soc2013/def/crashdump-head/contrib/ntp/scripts/summary.1summarymdoc soc2013/def/crashdump-head/contrib/ntp/scripts/summary.html soc2013/def/crashdump-head/contrib/ntp/scripts/summary.man.in soc2013/def/crashdump-head/contrib/ntp/scripts/summary.mdoc.in soc2013/def/crashdump-head/contrib/ntp/sntp/Makefile.am soc2013/def/crashdump-head/contrib/ntp/sntp/Makefile.in soc2013/def/crashdump-head/contrib/ntp/sntp/aclocal.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/config.h.in soc2013/def/crashdump-head/contrib/ntp/sntp/configure soc2013/def/crashdump-head/contrib/ntp/sntp/configure.ac soc2013/def/crashdump-head/contrib/ntp/sntp/include/Makefile.in soc2013/def/crashdump-head/contrib/ntp/sntp/include/autogen-version.def soc2013/def/crashdump-head/contrib/ntp/sntp/include/version.def soc2013/def/crashdump-head/contrib/ntp/sntp/include/version.texi soc2013/def/crashdump-head/contrib/ntp/sntp/invoke-sntp.texi soc2013/def/crashdump-head/contrib/ntp/sntp/kod_management.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/ChangeLog soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/Makefile.am soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/Makefile.in soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/WIN32-Code/nmake/event2/event-config.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/WIN32-Code/tree.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/aclocal.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/buffer.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/bufferevent.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/bufferevent_async.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/bufferevent_filter.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/bufferevent_openssl.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/bufferevent_pair.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/build-aux/ltmain.sh soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/config.h.in soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/configure soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/configure.ac soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/evbuffer-internal.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/evdns.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/event.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/event_tagging.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/evrpc-internal.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/evthread-internal.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/evthread.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/evutil.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/evutil_time.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/ht-internal.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/http-internal.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/http.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/include/event2/buffer.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/include/event2/bufferevent.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/include/event2/dns.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/include/event2/event.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/include/event2/http.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/include/event2/listener.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/include/event2/util.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/kqueue.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/listener.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/m4/ltversion.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/bench_httpclient.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/include.am soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_buffer.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_bufferevent.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_dns.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_finalize.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_http.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_main.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_minheap.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_ssl.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_thread.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_util.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/regress_zlib.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/test-fdleak.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/test-ratelim.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/test-time.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/tinytest.c soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/tinytest.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/test/tinytest_macros.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/time-internal.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/util-internal.h soc2013/def/crashdump-head/contrib/ntp/sntp/libevent/whatsnew-2.1.txt soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/COPYING.gplv3 soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/COPYING.lgplv3 soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/COPYING.mbsd soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/Makefile.in soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/README soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/ag-char-map.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/alias.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/ao-strs.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/ao-strs.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/autoopts.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/autoopts.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/autoopts/options.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/autoopts/project.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/autoopts/usage-txt.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/boolean.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/check.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/compat/compat.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/compat/pathfind.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/compat/windows-config.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/configfile.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/cook.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/enum.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/env.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/file.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/find.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/genshell.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/gettext.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/init.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/intprops.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/libopts.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/load.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/m4/libopts.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/m4/liboptschk.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/m4/stdnoreturn.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/makeshell.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/nested.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/numeric.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/option-value-type.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/option-value-type.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/option-xat-attribute.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/option-xat-attribute.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/parse-duration.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/parse-duration.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/pgusage.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/proto.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/putshell.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/reset.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/restore.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/save.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/sort.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/stack.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/stdnoreturn.in.h soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/streqvcmp.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/text_mmap.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/time.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/tokenize.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/usage.c soc2013/def/crashdump-head/contrib/ntp/sntp/libopts/version.c soc2013/def/crashdump-head/contrib/ntp/sntp/loc/darwin soc2013/def/crashdump-head/contrib/ntp/sntp/loc/debian soc2013/def/crashdump-head/contrib/ntp/sntp/loc/freebsd soc2013/def/crashdump-head/contrib/ntp/sntp/loc/legacy soc2013/def/crashdump-head/contrib/ntp/sntp/loc/netbsd soc2013/def/crashdump-head/contrib/ntp/sntp/loc/solaris soc2013/def/crashdump-head/contrib/ntp/sntp/log.c soc2013/def/crashdump-head/contrib/ntp/sntp/log.h soc2013/def/crashdump-head/contrib/ntp/sntp/m4/ltversion.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/ntp_libevent.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/ntp_libntp.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/ntp_locinfo.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/ntp_openssl.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/ntp_rlimit.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/os_cflags.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/m4/version.m4 soc2013/def/crashdump-head/contrib/ntp/sntp/main.c soc2013/def/crashdump-head/contrib/ntp/sntp/networking.c soc2013/def/crashdump-head/contrib/ntp/sntp/scripts/Makefile.in soc2013/def/crashdump-head/contrib/ntp/sntp/scripts/genLocInfo soc2013/def/crashdump-head/contrib/ntp/sntp/sntp-opts.c soc2013/def/crashdump-head/contrib/ntp/sntp/sntp-opts.def soc2013/def/crashdump-head/contrib/ntp/sntp/sntp-opts.h soc2013/def/crashdump-head/contrib/ntp/sntp/sntp.1sntpman soc2013/def/crashdump-head/contrib/ntp/sntp/sntp.1sntpmdoc soc2013/def/crashdump-head/contrib/ntp/sntp/sntp.html soc2013/def/crashdump-head/contrib/ntp/sntp/sntp.man.in soc2013/def/crashdump-head/contrib/ntp/sntp/sntp.mdoc.in soc2013/def/crashdump-head/contrib/ntp/sntp/tests/Makefile.am soc2013/def/crashdump-head/contrib/ntp/sntp/tests/Makefile.in soc2013/def/crashdump-head/contrib/ntp/sntp/tests/sntptest.h soc2013/def/crashdump-head/contrib/ntp/tests/Makefile.am soc2013/def/crashdump-head/contrib/ntp/tests/Makefile.in soc2013/def/crashdump-head/contrib/ntp/tests/libntp/Makefile.am soc2013/def/crashdump-head/contrib/ntp/tests/libntp/Makefile.in soc2013/def/crashdump-head/contrib/ntp/tests/libntp/lfptest.h soc2013/def/crashdump-head/contrib/ntp/tests/libntp/sockaddrtest.h soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/Makefile.am soc2013/def/crashdump-head/contrib/ntp/tests/ntpd/Makefile.in soc2013/def/crashdump-head/contrib/ntp/util/Makefile.am soc2013/def/crashdump-head/contrib/ntp/util/Makefile.in soc2013/def/crashdump-head/contrib/ntp/util/invoke-ntp-keygen.texi soc2013/def/crashdump-head/contrib/ntp/util/jitter.c soc2013/def/crashdump-head/contrib/ntp/util/ntp-keygen-opts.c soc2013/def/crashdump-head/contrib/ntp/util/ntp-keygen-opts.h soc2013/def/crashdump-head/contrib/ntp/util/ntp-keygen.1ntp-keygenman soc2013/def/crashdump-head/contrib/ntp/util/ntp-keygen.1ntp-keygenmdoc soc2013/def/crashdump-head/contrib/ntp/util/ntp-keygen.c soc2013/def/crashdump-head/contrib/ntp/util/ntp-keygen.html soc2013/def/crashdump-head/contrib/ntp/util/ntp-keygen.man.in soc2013/def/crashdump-head/contrib/ntp/util/ntp-keygen.mdoc.in soc2013/def/crashdump-head/contrib/ntp/util/ntptime.c soc2013/def/crashdump-head/contrib/openpam/ (props changed) soc2013/def/crashdump-head/contrib/openpam/lib/libpam/openpam_constants.c soc2013/def/crashdump-head/contrib/openresolv/ (props changed) soc2013/def/crashdump-head/contrib/openresolv/Makefile soc2013/def/crashdump-head/contrib/openresolv/configure soc2013/def/crashdump-head/contrib/openresolv/dnsmasq.in soc2013/def/crashdump-head/contrib/openresolv/libc.in soc2013/def/crashdump-head/contrib/openresolv/named.in soc2013/def/crashdump-head/contrib/openresolv/pdnsd.in soc2013/def/crashdump-head/contrib/openresolv/resolvconf.8.in soc2013/def/crashdump-head/contrib/openresolv/resolvconf.conf.5.in soc2013/def/crashdump-head/contrib/openresolv/resolvconf.in soc2013/def/crashdump-head/contrib/openresolv/unbound.in soc2013/def/crashdump-head/contrib/pf/ (props changed) soc2013/def/crashdump-head/contrib/pf/pflogd/pflogd.8 soc2013/def/crashdump-head/contrib/sendmail/ (props changed) soc2013/def/crashdump-head/contrib/serf/ (props changed) soc2013/def/crashdump-head/contrib/serf/CHANGES soc2013/def/crashdump-head/contrib/serf/auth/auth_spnego_sspi.c soc2013/def/crashdump-head/contrib/serf/buckets/deflate_buckets.c soc2013/def/crashdump-head/contrib/serf/buckets/ssl_buckets.c soc2013/def/crashdump-head/contrib/serf/serf.h soc2013/def/crashdump-head/contrib/sqlite3/ (props changed) soc2013/def/crashdump-head/contrib/sqlite3/Makefile.am soc2013/def/crashdump-head/contrib/sqlite3/Makefile.in soc2013/def/crashdump-head/contrib/sqlite3/configure soc2013/def/crashdump-head/contrib/sqlite3/configure.ac soc2013/def/crashdump-head/contrib/sqlite3/shell.c soc2013/def/crashdump-head/contrib/sqlite3/sqlite3.1 soc2013/def/crashdump-head/contrib/sqlite3/sqlite3.c soc2013/def/crashdump-head/contrib/sqlite3/sqlite3.h soc2013/def/crashdump-head/contrib/sqlite3/sqlite3ext.h soc2013/def/crashdump-head/contrib/subversion/ (props changed) soc2013/def/crashdump-head/contrib/subversion/CHANGES soc2013/def/crashdump-head/contrib/subversion/COMMITTERS soc2013/def/crashdump-head/contrib/subversion/INSTALL soc2013/def/crashdump-head/contrib/subversion/LICENSE soc2013/def/crashdump-head/contrib/subversion/Makefile.in soc2013/def/crashdump-head/contrib/subversion/NOTICE soc2013/def/crashdump-head/contrib/subversion/autogen.sh soc2013/def/crashdump-head/contrib/subversion/build-outputs.mk soc2013/def/crashdump-head/contrib/subversion/build.conf soc2013/def/crashdump-head/contrib/subversion/configure soc2013/def/crashdump-head/contrib/subversion/configure.ac soc2013/def/crashdump-head/contrib/subversion/doc/user/svn-best-practices.html soc2013/def/crashdump-head/contrib/subversion/gen-make.py soc2013/def/crashdump-head/contrib/subversion/get-deps.sh soc2013/def/crashdump-head/contrib/subversion/subversion/include/mod_dav_svn.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_atomic.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_auth_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_cache.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_client_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_cmdline_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_delta_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_dep_compat.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_diff_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_diff_tree.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_editor.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_error_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_fs_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_fs_util.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_io_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_log.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_magic.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_mergeinfo_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_mutex.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_opt_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_ra_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_ra_svn_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_repos_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_sqlite.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_string_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_subr_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_temp_serializer.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_utf_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/private/svn_wc_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_auth.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_cache_config.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_checksum.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_client.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_cmdline.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_compat.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_config.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_delta.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_diff.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_dirent_uri.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_error.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_error_codes.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_fs.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_hash.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_io.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_iter.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_mergeinfo.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_opt.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_path.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_props.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_ra.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_ra_svn.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_repos.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_sorts.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_string.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_types.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_version.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_wc.h soc2013/def/crashdump-head/contrib/subversion/subversion/include/svn_xml.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_auth_gnome_keyring/gnome_keyring.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_auth_kwallet/kwallet.cpp soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/add.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/blame.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/cat.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/checkout.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/cleanup.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/client.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/cmdline.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/commit.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/commit_util.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/compat_providers.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/copy.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/copy_foreign.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/ctx.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/delete.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/deprecated.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/diff.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/diff_local.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/diff_summarize.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/export.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/externals.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/import.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/info.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/iprops.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/list.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/locking_commands.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/log.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/merge.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/mergeinfo.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/mergeinfo.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/patch.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/prop_commands.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/ra.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/relocate.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/repos_diff.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/resolved.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/revert.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/revisions.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/status.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/switch.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/update.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/upgrade.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_client/util.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/compat.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/compose_delta.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/debug_editor.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/debug_editor.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/editor.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/path_driver.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/svndiff.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/text_delta.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_delta/xdelta.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_diff/deprecated.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_diff/diff4.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_diff/diff_file.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_diff/diff_memory.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_diff/lcs.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_diff/parse-diff.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_diff/util.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs/access.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs/editor.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs/fs-loader.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs/fs-loader.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/bdb/changes-table.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/bdb/locks-table.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/bdb/strings-table.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/dag.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/dag.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/fs.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/fs.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/id.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/id.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/key-gen.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/key-gen.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/lock.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/lock.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/reps-strings.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/revs-txns.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_base/tree.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/caching.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/dag.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/dag.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/fs.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/fs.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/fs_fs.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/fs_fs.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/id.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/id.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/lock.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/lock.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/rep-cache-db.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/rep-cache-db.sql soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/rep-cache.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/rep-cache.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/structure soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/temp_serializer.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/temp_serializer.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/tree.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_fs/tree.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_fs_util/fs-util.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra/compat.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra/ra_loader.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra/ra_loader.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra/wrapper_template.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_local/ra_local.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_local/ra_plugin.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_local/split_url.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/README soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/blame.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/blncache.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/blncache.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/commit.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/get_deleted_rev.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/getdate.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/getlocations.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/getlocationsegments.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/getlocks.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/inherited_props.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/log.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/merge.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/mergeinfo.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/options.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/property.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/ra_serf.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/replay.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/serf.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/update.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/util.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/util_error.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_serf/xml.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/client.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/cram.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/cyrus_auth.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/deprecated.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/editorp.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/internal_auth.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/marshal.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/protocol soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/ra_svn.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_ra_svn/streams.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/authz.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/commit.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/delta.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/deprecated.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/dump.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/fs-wrap.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/hooks.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/load-fs-vtable.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/load.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/log.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/replay.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/reporter.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/repos.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/repos.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_repos/rev_hunt.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/adler32.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/auth.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/auth.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/cache-inprocess.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/cache-membuffer.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/cache-memcache.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/cache.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/cache.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/cache_config.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/checksum.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/cmdline.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/compat.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/config.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/config_auth.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/config_file.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/config_impl.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/config_win.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/ctype.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/debug.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/deprecated.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/dirent_uri.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/dso.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/eol.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/error.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/gpg_agent.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/hash.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/internal_statements.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/io.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/iter.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/log.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/macos_keychain.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/magic.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/md5.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/mergeinfo.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/mutex.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/nls.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/opt.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/path.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/pool.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/prompt.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/simple_providers.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/sorts.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/spillbuf.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/sqlite.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/sqlite3wrapper.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/ssl_client_cert_providers.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/ssl_client_cert_pw_providers.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/ssl_server_trust_providers.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/stream.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/string.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/subst.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/sysinfo.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/sysinfo.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/temp_serializer.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/time.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/types.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/username_providers.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/utf.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/utf_validate.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/utf_width.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/version.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/win32_crashrpt.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/win32_crypto.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/win32_xlate.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/win32_xlate.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_subr/xml.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/adm_crawler.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/adm_files.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/adm_files.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/adm_ops.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/cleanup.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/conflicts.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/conflicts.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/copy.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/crop.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/delete.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/deprecated.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/diff.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/diff_editor.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/diff_local.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/entries.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/externals.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/info.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/lock.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/merge.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/node.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/old-and-busted.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/props.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/props.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/questions.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/relocate.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/revert.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/revision_status.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/status.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/token-map.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/translate.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/tree_conflicts.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/update_editor.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/upgrade.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/util.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc-checks.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc-checks.sql soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc-metadata.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc-metadata.sql soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc-queries.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc-queries.sql soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc_db.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc_db.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc_db_pristine.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc_db_private.h soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc_db_update_move.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc_db_util.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/wc_db_wcroot.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/workqueue.c soc2013/def/crashdump-head/contrib/subversion/subversion/libsvn_wc/workqueue.h soc2013/def/crashdump-head/contrib/subversion/subversion/svn/add-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/blame-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/cat-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/changelist-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/checkout-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/cl-conflicts.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/cl-conflicts.h soc2013/def/crashdump-head/contrib/subversion/subversion/svn/cl.h soc2013/def/crashdump-head/contrib/subversion/subversion/svn/cleanup-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/commit-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/conflict-callbacks.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/copy-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/diff-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/export-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/file-merge.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/help-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/info-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/list-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/log-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/merge-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/mergeinfo-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/notify.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/propget-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/proplist-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/props.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/resolve-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/revert-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/status-cmd.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/status.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/svn.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn/util.c soc2013/def/crashdump-head/contrib/subversion/subversion/svn_private_config.h.in soc2013/def/crashdump-head/contrib/subversion/subversion/svn_private_config.hw soc2013/def/crashdump-head/contrib/subversion/subversion/svnadmin/svnadmin.c soc2013/def/crashdump-head/contrib/subversion/subversion/svndumpfilter/svndumpfilter.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnlook/svnlook.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnmucc/svnmucc.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnrdump/dump_editor.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnrdump/load_editor.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnrdump/svnrdump.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnrdump/svnrdump.h soc2013/def/crashdump-head/contrib/subversion/subversion/svnrdump/util.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnserve/cyrus_auth.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnserve/serve.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnserve/server.h soc2013/def/crashdump-head/contrib/subversion/subversion/svnserve/svnserve.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnsync/svnsync.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnsync/sync.c soc2013/def/crashdump-head/contrib/subversion/subversion/svnversion/svnversion.c soc2013/def/crashdump-head/contrib/subversion/win-tests.py soc2013/def/crashdump-head/contrib/tcpdump/ (props changed) soc2013/def/crashdump-head/contrib/tcpdump/CHANGES soc2013/def/crashdump-head/contrib/tcpdump/CREDITS soc2013/def/crashdump-head/contrib/tcpdump/INSTALL.txt soc2013/def/crashdump-head/contrib/tcpdump/Makefile.in soc2013/def/crashdump-head/contrib/tcpdump/VERSION soc2013/def/crashdump-head/contrib/tcpdump/addrtoname.c soc2013/def/crashdump-head/contrib/tcpdump/addrtoname.h soc2013/def/crashdump-head/contrib/tcpdump/config.guess soc2013/def/crashdump-head/contrib/tcpdump/config.h.in soc2013/def/crashdump-head/contrib/tcpdump/config.sub soc2013/def/crashdump-head/contrib/tcpdump/configure soc2013/def/crashdump-head/contrib/tcpdump/configure.in soc2013/def/crashdump-head/contrib/tcpdump/extract.h soc2013/def/crashdump-head/contrib/tcpdump/interface.h soc2013/def/crashdump-head/contrib/tcpdump/ip.h soc2013/def/crashdump-head/contrib/tcpdump/machdep.c soc2013/def/crashdump-head/contrib/tcpdump/missing/strsep.c soc2013/def/crashdump-head/contrib/tcpdump/mkdep soc2013/def/crashdump-head/contrib/tcpdump/netdissect.h soc2013/def/crashdump-head/contrib/tcpdump/openflow.h soc2013/def/crashdump-head/contrib/tcpdump/oui.c soc2013/def/crashdump-head/contrib/tcpdump/oui.h soc2013/def/crashdump-head/contrib/tcpdump/print-ahcp.c soc2013/def/crashdump-head/contrib/tcpdump/print-aodv.c soc2013/def/crashdump-head/contrib/tcpdump/print-arcnet.c soc2013/def/crashdump-head/contrib/tcpdump/print-arp.c soc2013/def/crashdump-head/contrib/tcpdump/print-ascii.c soc2013/def/crashdump-head/contrib/tcpdump/print-atm.c soc2013/def/crashdump-head/contrib/tcpdump/print-babel.c soc2013/def/crashdump-head/contrib/tcpdump/print-bgp.c soc2013/def/crashdump-head/contrib/tcpdump/print-bootp.c soc2013/def/crashdump-head/contrib/tcpdump/print-cdp.c soc2013/def/crashdump-head/contrib/tcpdump/print-cfm.c soc2013/def/crashdump-head/contrib/tcpdump/print-chdlc.c soc2013/def/crashdump-head/contrib/tcpdump/print-cnfp.c soc2013/def/crashdump-head/contrib/tcpdump/print-dccp.c soc2013/def/crashdump-head/contrib/tcpdump/print-decnet.c soc2013/def/crashdump-head/contrib/tcpdump/print-eigrp.c soc2013/def/crashdump-head/contrib/tcpdump/print-enc.c soc2013/def/crashdump-head/contrib/tcpdump/print-ether.c soc2013/def/crashdump-head/contrib/tcpdump/print-forces.c soc2013/def/crashdump-head/contrib/tcpdump/print-fr.c soc2013/def/crashdump-head/contrib/tcpdump/print-geonet.c soc2013/def/crashdump-head/contrib/tcpdump/print-gre.c soc2013/def/crashdump-head/contrib/tcpdump/print-icmp.c soc2013/def/crashdump-head/contrib/tcpdump/print-icmp6.c soc2013/def/crashdump-head/contrib/tcpdump/print-ip.c soc2013/def/crashdump-head/contrib/tcpdump/print-ip6.c soc2013/def/crashdump-head/contrib/tcpdump/print-ipnet.c soc2013/def/crashdump-head/contrib/tcpdump/print-isoclns.c soc2013/def/crashdump-head/contrib/tcpdump/print-juniper.c soc2013/def/crashdump-head/contrib/tcpdump/print-ldp.c soc2013/def/crashdump-head/contrib/tcpdump/print-lldp.c soc2013/def/crashdump-head/contrib/tcpdump/print-lmp.c soc2013/def/crashdump-head/contrib/tcpdump/print-lspping.c soc2013/def/crashdump-head/contrib/tcpdump/print-lwapp.c soc2013/def/crashdump-head/contrib/tcpdump/print-mobility.c soc2013/def/crashdump-head/contrib/tcpdump/print-mpcp.c soc2013/def/crashdump-head/contrib/tcpdump/print-mpls.c soc2013/def/crashdump-head/contrib/tcpdump/print-nflog.c soc2013/def/crashdump-head/contrib/tcpdump/print-null.c soc2013/def/crashdump-head/contrib/tcpdump/print-olsr.c soc2013/def/crashdump-head/contrib/tcpdump/print-openflow-1.0.c soc2013/def/crashdump-head/contrib/tcpdump/print-openflow.c soc2013/def/crashdump-head/contrib/tcpdump/print-ospf.c soc2013/def/crashdump-head/contrib/tcpdump/print-pflog.c soc2013/def/crashdump-head/contrib/tcpdump/print-pim.c soc2013/def/crashdump-head/contrib/tcpdump/print-ppi.c soc2013/def/crashdump-head/contrib/tcpdump/print-ppp.c soc2013/def/crashdump-head/contrib/tcpdump/print-radius.c soc2013/def/crashdump-head/contrib/tcpdump/print-rpki-rtr.c soc2013/def/crashdump-head/contrib/tcpdump/print-rsvp.c soc2013/def/crashdump-head/contrib/tcpdump/print-sflow.c soc2013/def/crashdump-head/contrib/tcpdump/print-sip.c soc2013/def/crashdump-head/contrib/tcpdump/print-sl.c soc2013/def/crashdump-head/contrib/tcpdump/print-sll.c soc2013/def/crashdump-head/contrib/tcpdump/print-slow.c soc2013/def/crashdump-head/contrib/tcpdump/print-smb.c soc2013/def/crashdump-head/contrib/tcpdump/print-tcp.c soc2013/def/crashdump-head/contrib/tcpdump/print-telnet.c soc2013/def/crashdump-head/contrib/tcpdump/print-udp.c soc2013/def/crashdump-head/contrib/tcpdump/print-vxlan.c soc2013/def/crashdump-head/contrib/tcpdump/print-wb.c soc2013/def/crashdump-head/contrib/tcpdump/print-zeromq.c soc2013/def/crashdump-head/contrib/tcpdump/tcp.h soc2013/def/crashdump-head/contrib/tcpdump/tcpdump.1.in soc2013/def/crashdump-head/contrib/tcpdump/tcpdump.c soc2013/def/crashdump-head/contrib/tcpdump/udp.h soc2013/def/crashdump-head/contrib/tcpdump/util.c soc2013/def/crashdump-head/contrib/top/ (props changed) soc2013/def/crashdump-head/contrib/traceroute/traceroute.8 soc2013/def/crashdump-head/contrib/traceroute/traceroute.c soc2013/def/crashdump-head/contrib/tzcode/stdtime/ (props changed) soc2013/def/crashdump-head/contrib/tzcode/stdtime/difftime.c soc2013/def/crashdump-head/contrib/tzcode/stdtime/localtime.c soc2013/def/crashdump-head/contrib/tzcode/stdtime/private.h soc2013/def/crashdump-head/contrib/tzdata/ (props changed) soc2013/def/crashdump-head/contrib/unbound/ (props changed) soc2013/def/crashdump-head/contrib/unbound/Makefile.in soc2013/def/crashdump-head/contrib/unbound/acx_nlnetlabs.m4 soc2013/def/crashdump-head/contrib/unbound/compat/getentropy_linux.c soc2013/def/crashdump-head/contrib/unbound/config.h soc2013/def/crashdump-head/contrib/unbound/config.h.in soc2013/def/crashdump-head/contrib/unbound/configure soc2013/def/crashdump-head/contrib/unbound/configure.ac soc2013/def/crashdump-head/contrib/unbound/daemon/cachedump.c soc2013/def/crashdump-head/contrib/unbound/daemon/daemon.c soc2013/def/crashdump-head/contrib/unbound/daemon/remote.c soc2013/def/crashdump-head/contrib/unbound/daemon/stats.c soc2013/def/crashdump-head/contrib/unbound/daemon/stats.h soc2013/def/crashdump-head/contrib/unbound/daemon/unbound.c soc2013/def/crashdump-head/contrib/unbound/daemon/worker.c soc2013/def/crashdump-head/contrib/unbound/daemon/worker.h soc2013/def/crashdump-head/contrib/unbound/dns64/dns64.c soc2013/def/crashdump-head/contrib/unbound/dnstap/dnstap.c soc2013/def/crashdump-head/contrib/unbound/doc/Changelog soc2013/def/crashdump-head/contrib/unbound/doc/README soc2013/def/crashdump-head/contrib/unbound/doc/example.conf soc2013/def/crashdump-head/contrib/unbound/doc/example.conf.in soc2013/def/crashdump-head/contrib/unbound/doc/libunbound.3 soc2013/def/crashdump-head/contrib/unbound/doc/libunbound.3.in soc2013/def/crashdump-head/contrib/unbound/doc/unbound-anchor.8 soc2013/def/crashdump-head/contrib/unbound/doc/unbound-anchor.8.in soc2013/def/crashdump-head/contrib/unbound/doc/unbound-checkconf.8 soc2013/def/crashdump-head/contrib/unbound/doc/unbound-checkconf.8.in soc2013/def/crashdump-head/contrib/unbound/doc/unbound-control.8 soc2013/def/crashdump-head/contrib/unbound/doc/unbound-control.8.in soc2013/def/crashdump-head/contrib/unbound/doc/unbound-host.1 soc2013/def/crashdump-head/contrib/unbound/doc/unbound-host.1.in soc2013/def/crashdump-head/contrib/unbound/doc/unbound.8 soc2013/def/crashdump-head/contrib/unbound/doc/unbound.8.in soc2013/def/crashdump-head/contrib/unbound/doc/unbound.conf.5 soc2013/def/crashdump-head/contrib/unbound/doc/unbound.conf.5.in soc2013/def/crashdump-head/contrib/unbound/freebsd-configure.sh soc2013/def/crashdump-head/contrib/unbound/iterator/iter_delegpt.c soc2013/def/crashdump-head/contrib/unbound/iterator/iter_fwd.c soc2013/def/crashdump-head/contrib/unbound/iterator/iter_hints.c soc2013/def/crashdump-head/contrib/unbound/iterator/iter_priv.c soc2013/def/crashdump-head/contrib/unbound/iterator/iter_resptype.c soc2013/def/crashdump-head/contrib/unbound/iterator/iter_scrub.c soc2013/def/crashdump-head/contrib/unbound/iterator/iter_utils.c soc2013/def/crashdump-head/contrib/unbound/iterator/iter_utils.h soc2013/def/crashdump-head/contrib/unbound/iterator/iterator.c soc2013/def/crashdump-head/contrib/unbound/iterator/iterator.h soc2013/def/crashdump-head/contrib/unbound/libunbound/context.c soc2013/def/crashdump-head/contrib/unbound/libunbound/libunbound.c soc2013/def/crashdump-head/contrib/unbound/libunbound/libworker.c soc2013/def/crashdump-head/contrib/unbound/libunbound/python/Makefile soc2013/def/crashdump-head/contrib/unbound/libunbound/python/examples/async-lookup.py soc2013/def/crashdump-head/contrib/unbound/libunbound/python/examples/dns-lookup.py soc2013/def/crashdump-head/contrib/unbound/libunbound/python/examples/dnssec-valid.py soc2013/def/crashdump-head/contrib/unbound/libunbound/python/examples/dnssec_test.py soc2013/def/crashdump-head/contrib/unbound/libunbound/python/examples/example8-1.py soc2013/def/crashdump-head/contrib/unbound/libunbound/python/examples/idn-lookup.py soc2013/def/crashdump-head/contrib/unbound/libunbound/python/examples/mx-lookup.py soc2013/def/crashdump-head/contrib/unbound/libunbound/python/examples/ns-lookup.py soc2013/def/crashdump-head/contrib/unbound/libunbound/python/examples/reverse-lookup.py soc2013/def/crashdump-head/contrib/unbound/libunbound/python/libunbound.i soc2013/def/crashdump-head/contrib/unbound/libunbound/worker.h soc2013/def/crashdump-head/contrib/unbound/services/cache/dns.c soc2013/def/crashdump-head/contrib/unbound/services/cache/infra.c soc2013/def/crashdump-head/contrib/unbound/services/cache/infra.h soc2013/def/crashdump-head/contrib/unbound/services/cache/rrset.c soc2013/def/crashdump-head/contrib/unbound/services/listen_dnsport.c soc2013/def/crashdump-head/contrib/unbound/services/listen_dnsport.h soc2013/def/crashdump-head/contrib/unbound/services/localzone.c soc2013/def/crashdump-head/contrib/unbound/services/localzone.h soc2013/def/crashdump-head/contrib/unbound/services/mesh.c soc2013/def/crashdump-head/contrib/unbound/services/outside_network.c soc2013/def/crashdump-head/contrib/unbound/smallapp/unbound-anchor.c soc2013/def/crashdump-head/contrib/unbound/smallapp/unbound-checkconf.c soc2013/def/crashdump-head/contrib/unbound/smallapp/unbound-control-setup.sh soc2013/def/crashdump-head/contrib/unbound/smallapp/unbound-control-setup.sh.in soc2013/def/crashdump-head/contrib/unbound/smallapp/unbound-control.c soc2013/def/crashdump-head/contrib/unbound/smallapp/unbound-host.c soc2013/def/crashdump-head/contrib/unbound/util/alloc.c soc2013/def/crashdump-head/contrib/unbound/util/alloc.h soc2013/def/crashdump-head/contrib/unbound/util/config_file.c soc2013/def/crashdump-head/contrib/unbound/util/config_file.h soc2013/def/crashdump-head/contrib/unbound/util/configlexer.lex soc2013/def/crashdump-head/contrib/unbound/util/configparser.y soc2013/def/crashdump-head/contrib/unbound/util/data/dname.c soc2013/def/crashdump-head/contrib/unbound/util/data/msgencode.c soc2013/def/crashdump-head/contrib/unbound/util/data/msgparse.c soc2013/def/crashdump-head/contrib/unbound/util/data/msgparse.h soc2013/def/crashdump-head/contrib/unbound/util/data/msgreply.c soc2013/def/crashdump-head/contrib/unbound/util/data/msgreply.h soc2013/def/crashdump-head/contrib/unbound/util/data/packed_rrset.c soc2013/def/crashdump-head/contrib/unbound/util/data/packed_rrset.h soc2013/def/crashdump-head/contrib/unbound/util/fptr_wlist.c soc2013/def/crashdump-head/contrib/unbound/util/iana_ports.inc soc2013/def/crashdump-head/contrib/unbound/util/log.c soc2013/def/crashdump-head/contrib/unbound/util/log.h soc2013/def/crashdump-head/contrib/unbound/util/net_help.c soc2013/def/crashdump-head/contrib/unbound/util/netevent.c soc2013/def/crashdump-head/contrib/unbound/util/netevent.h soc2013/def/crashdump-head/contrib/unbound/util/rtt.c soc2013/def/crashdump-head/contrib/unbound/util/rtt.h soc2013/def/crashdump-head/contrib/unbound/validator/autotrust.c soc2013/def/crashdump-head/contrib/unbound/validator/val_anchor.c soc2013/def/crashdump-head/contrib/unbound/validator/val_kentry.c soc2013/def/crashdump-head/contrib/unbound/validator/val_neg.c soc2013/def/crashdump-head/contrib/unbound/validator/val_nsec3.c soc2013/def/crashdump-head/contrib/unbound/validator/val_secalgo.c soc2013/def/crashdump-head/contrib/unbound/validator/val_sigcrypt.c soc2013/def/crashdump-head/contrib/unbound/validator/val_utils.c soc2013/def/crashdump-head/contrib/unbound/validator/val_utils.h soc2013/def/crashdump-head/contrib/unbound/validator/validator.c soc2013/def/crashdump-head/contrib/wpa/ (props changed) soc2013/def/crashdump-head/contrib/wpa/src/fst/ (props changed) soc2013/def/crashdump-head/contrib/xz/ (props changed) soc2013/def/crashdump-head/crypto/openssh/ (props changed) soc2013/def/crashdump-head/crypto/openssh/README.hpn soc2013/def/crashdump-head/crypto/openssh/auth.c soc2013/def/crashdump-head/crypto/openssh/auth2-chall.c soc2013/def/crashdump-head/crypto/openssh/auth2.c soc2013/def/crashdump-head/crypto/openssh/buffer.c soc2013/def/crashdump-head/crypto/openssh/channels.c soc2013/def/crashdump-head/crypto/openssh/cipher.c soc2013/def/crashdump-head/crypto/openssh/clientloop.c soc2013/def/crashdump-head/crypto/openssh/compat.c soc2013/def/crashdump-head/crypto/openssh/contrib/ssh-copy-id.1 soc2013/def/crashdump-head/crypto/openssh/kex.c soc2013/def/crashdump-head/crypto/openssh/kex.h soc2013/def/crashdump-head/crypto/openssh/misc.c soc2013/def/crashdump-head/crypto/openssh/moduli soc2013/def/crashdump-head/crypto/openssh/moduli.5 soc2013/def/crashdump-head/crypto/openssh/monitor.c soc2013/def/crashdump-head/crypto/openssh/monitor_wrap.c soc2013/def/crashdump-head/crypto/openssh/mux.c soc2013/def/crashdump-head/crypto/openssh/myproposal.h soc2013/def/crashdump-head/crypto/openssh/openbsd-compat/blowfish.c soc2013/def/crashdump-head/crypto/openssh/openbsd-compat/bsd-misc.h soc2013/def/crashdump-head/crypto/openssh/packet.c soc2013/def/crashdump-head/crypto/openssh/packet.h soc2013/def/crashdump-head/crypto/openssh/readconf.c soc2013/def/crashdump-head/crypto/openssh/readconf.h soc2013/def/crashdump-head/crypto/openssh/scp.1 soc2013/def/crashdump-head/crypto/openssh/servconf.c soc2013/def/crashdump-head/crypto/openssh/servconf.h soc2013/def/crashdump-head/crypto/openssh/serverloop.c soc2013/def/crashdump-head/crypto/openssh/session.c soc2013/def/crashdump-head/crypto/openssh/sftp-common.c soc2013/def/crashdump-head/crypto/openssh/sftp-server.8 soc2013/def/crashdump-head/crypto/openssh/sftp.1 soc2013/def/crashdump-head/crypto/openssh/sftp.c soc2013/def/crashdump-head/crypto/openssh/ssh-add.1 soc2013/def/crashdump-head/crypto/openssh/ssh-agent.c soc2013/def/crashdump-head/crypto/openssh/ssh-keygen.1 soc2013/def/crashdump-head/crypto/openssh/ssh-keyscan.1 soc2013/def/crashdump-head/crypto/openssh/ssh-keysign.8 soc2013/def/crashdump-head/crypto/openssh/ssh-pkcs11-helper.8 soc2013/def/crashdump-head/crypto/openssh/ssh.1 soc2013/def/crashdump-head/crypto/openssh/ssh.c soc2013/def/crashdump-head/crypto/openssh/ssh_config.5 soc2013/def/crashdump-head/crypto/openssh/sshconnect.c soc2013/def/crashdump-head/crypto/openssh/sshconnect2.c soc2013/def/crashdump-head/crypto/openssh/sshd.8 soc2013/def/crashdump-head/crypto/openssh/sshd.c soc2013/def/crashdump-head/crypto/openssh/sshd_config soc2013/def/crashdump-head/crypto/openssh/sshd_config.5 soc2013/def/crashdump-head/crypto/openssl/ (props changed) soc2013/def/crashdump-head/crypto/openssl/CHANGES soc2013/def/crashdump-head/crypto/openssl/Configure soc2013/def/crashdump-head/crypto/openssl/FAQ soc2013/def/crashdump-head/crypto/openssl/Makefile soc2013/def/crashdump-head/crypto/openssl/Makefile.org soc2013/def/crashdump-head/crypto/openssl/NEWS soc2013/def/crashdump-head/crypto/openssl/README soc2013/def/crashdump-head/crypto/openssl/apps/Makefile soc2013/def/crashdump-head/crypto/openssl/apps/apps.c soc2013/def/crashdump-head/crypto/openssl/apps/apps.h soc2013/def/crashdump-head/crypto/openssl/apps/asn1pars.c soc2013/def/crashdump-head/crypto/openssl/apps/ca.c soc2013/def/crashdump-head/crypto/openssl/apps/ciphers.c soc2013/def/crashdump-head/crypto/openssl/apps/cms.c soc2013/def/crashdump-head/crypto/openssl/apps/crl.c soc2013/def/crashdump-head/crypto/openssl/apps/dgst.c soc2013/def/crashdump-head/crypto/openssl/apps/dhparam.c soc2013/def/crashdump-head/crypto/openssl/apps/ecparam.c soc2013/def/crashdump-head/crypto/openssl/apps/enc.c soc2013/def/crashdump-head/crypto/openssl/apps/gendh.c soc2013/def/crashdump-head/crypto/openssl/apps/genrsa.c soc2013/def/crashdump-head/crypto/openssl/apps/ocsp.c soc2013/def/crashdump-head/crypto/openssl/apps/openssl.cnf soc2013/def/crashdump-head/crypto/openssl/apps/pkcs8.c soc2013/def/crashdump-head/crypto/openssl/apps/s_apps.h soc2013/def/crashdump-head/crypto/openssl/apps/s_cb.c soc2013/def/crashdump-head/crypto/openssl/apps/s_client.c soc2013/def/crashdump-head/crypto/openssl/apps/s_server.c soc2013/def/crashdump-head/crypto/openssl/apps/s_socket.c soc2013/def/crashdump-head/crypto/openssl/apps/s_time.c soc2013/def/crashdump-head/crypto/openssl/apps/smime.c soc2013/def/crashdump-head/crypto/openssl/apps/speed.c soc2013/def/crashdump-head/crypto/openssl/apps/srp.c soc2013/def/crashdump-head/crypto/openssl/apps/verify.c soc2013/def/crashdump-head/crypto/openssl/apps/x509.c soc2013/def/crashdump-head/crypto/openssl/config soc2013/def/crashdump-head/crypto/openssl/crypto/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/aes/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/aes/aes_wrap.c soc2013/def/crashdump-head/crypto/openssl/crypto/aes/aes_x86core.c soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aes-586.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aes-armv4.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aes-mips.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aes-ppc.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aes-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aesni-sha1-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aesni-x86.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/aesni-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/bsaes-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/vpaes-x86.pl soc2013/def/crashdump-head/crypto/openssl/crypto/aes/asm/vpaes-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/arm_arch.h soc2013/def/crashdump-head/crypto/openssl/crypto/armcap.c soc2013/def/crashdump-head/crypto/openssl/crypto/armv4cpuid.S soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/a_gentm.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/a_int.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/a_time.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/a_utctm.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/ameth_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/asn1.h soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/asn1_gen.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/asn1_locl.h soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/asn_mime.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/bio_ndef.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/t_x509.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/tasn_new.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/tasn_prn.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/x_crl.c soc2013/def/crashdump-head/crypto/openssl/crypto/asn1/x_x509.c soc2013/def/crashdump-head/crypto/openssl/crypto/bf/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/bio/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/bio/b_dump.c soc2013/def/crashdump-head/crypto/openssl/crypto/bio/b_print.c soc2013/def/crashdump-head/crypto/openssl/crypto/bio/b_sock.c soc2013/def/crashdump-head/crypto/openssl/crypto/bio/bf_nbio.c soc2013/def/crashdump-head/crypto/openssl/crypto/bio/bio.h soc2013/def/crashdump-head/crypto/openssl/crypto/bio/bio_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/bio/bio_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/bio/bss_acpt.c soc2013/def/crashdump-head/crypto/openssl/crypto/bio/bss_conn.c soc2013/def/crashdump-head/crypto/openssl/crypto/bio/bss_dgram.c soc2013/def/crashdump-head/crypto/openssl/crypto/bio/bss_fd.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/armv4-gf2m.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/armv4-mont.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/mips-mont.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/mips.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/ppc-mont.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/ppc.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/ppc64-mont.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/x86_64-gcc.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/x86_64-mont.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/asm/x86_64-mont5.pl soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bn.h soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bn_asm.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bn_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bn_exp.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bn_gf2m.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bn_lcl.h soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bn_print.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bn_rand.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bn_shift.c soc2013/def/crashdump-head/crypto/openssl/crypto/bn/bntest.c soc2013/def/crashdump-head/crypto/openssl/crypto/buffer/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/buffer/buf_str.c soc2013/def/crashdump-head/crypto/openssl/crypto/buffer/buffer.c soc2013/def/crashdump-head/crypto/openssl/crypto/buffer/buffer.h soc2013/def/crashdump-head/crypto/openssl/crypto/camellia/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/camellia/asm/cmll-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/cast/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/cast/cast_lcl.h soc2013/def/crashdump-head/crypto/openssl/crypto/cmac/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/cmac/cmac.c soc2013/def/crashdump-head/crypto/openssl/crypto/cms/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms.h soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms_asn1.c soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms_env.c soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms_lcl.h soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms_pwri.c soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms_sd.c soc2013/def/crashdump-head/crypto/openssl/crypto/cms/cms_smime.c soc2013/def/crashdump-head/crypto/openssl/crypto/comp/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/conf/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/cryptlib.c soc2013/def/crashdump-head/crypto/openssl/crypto/cversion.c soc2013/def/crashdump-head/crypto/openssl/crypto/des/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/des/asm/des-586.pl soc2013/def/crashdump-head/crypto/openssl/crypto/des/asm/des_enc.m4 soc2013/def/crashdump-head/crypto/openssl/crypto/des/des.c soc2013/def/crashdump-head/crypto/openssl/crypto/des/des_locl.h soc2013/def/crashdump-head/crypto/openssl/crypto/des/enc_writ.c soc2013/def/crashdump-head/crypto/openssl/crypto/des/read_pwd.c soc2013/def/crashdump-head/crypto/openssl/crypto/dh/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dh.h soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dh_ameth.c soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dh_asn1.c soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dh_check.c soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dh_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dh_key.c soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dh_pmeth.c soc2013/def/crashdump-head/crypto/openssl/crypto/dh/dhtest.c soc2013/def/crashdump-head/crypto/openssl/crypto/dsa/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/dsa/dsa.h soc2013/def/crashdump-head/crypto/openssl/crypto/dsa/dsa_ameth.c soc2013/def/crashdump-head/crypto/openssl/crypto/dsa/dsa_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/dsa/dsa_gen.c soc2013/def/crashdump-head/crypto/openssl/crypto/dsa/dsa_locl.h soc2013/def/crashdump-head/crypto/openssl/crypto/dsa/dsa_ossl.c soc2013/def/crashdump-head/crypto/openssl/crypto/dsa/dsa_pmeth.c soc2013/def/crashdump-head/crypto/openssl/crypto/dso/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/dso/dso_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/ebcdic.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec.h soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec2_oct.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_ameth.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_asn1.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_check.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_curve.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_cvt.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_key.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_lcl.h soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ec_pmeth.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/eck_prn.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ecp_nistp521.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ecp_oct.c soc2013/def/crashdump-head/crypto/openssl/crypto/ec/ectest.c soc2013/def/crashdump-head/crypto/openssl/crypto/ecdh/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/ecdh/ecdh.h soc2013/def/crashdump-head/crypto/openssl/crypto/ecdh/ecdhtest.c soc2013/def/crashdump-head/crypto/openssl/crypto/ecdh/ech_ossl.c soc2013/def/crashdump-head/crypto/openssl/crypto/ecdsa/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/ecdsa/ecdsa.h soc2013/def/crashdump-head/crypto/openssl/crypto/ecdsa/ecdsatest.c soc2013/def/crashdump-head/crypto/openssl/crypto/ecdsa/ecs_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/ecdsa/ecs_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/ecdsa/ecs_locl.h soc2013/def/crashdump-head/crypto/openssl/crypto/ecdsa/ecs_ossl.c soc2013/def/crashdump-head/crypto/openssl/crypto/engine/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/engine/eng_all.c soc2013/def/crashdump-head/crypto/openssl/crypto/engine/eng_cryptodev.c soc2013/def/crashdump-head/crypto/openssl/crypto/engine/eng_table.c soc2013/def/crashdump-head/crypto/openssl/crypto/engine/engine.h soc2013/def/crashdump-head/crypto/openssl/crypto/err/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/evp/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/evp/bio_ok.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/c_allc.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/digest.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/e_aes.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/e_camellia.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/e_des.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/e_des3.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/e_null.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/e_rc4_hmac_md5.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/encode.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/evp.h soc2013/def/crashdump-head/crypto/openssl/crypto/evp/evp_enc.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/evp_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/evp_extra_test.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/evp_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/evp_locl.h soc2013/def/crashdump-head/crypto/openssl/crypto/evp/evp_test.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/evptests.txt soc2013/def/crashdump-head/crypto/openssl/crypto/evp/m_dss.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/m_dss1.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/m_ecdsa.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/m_sha1.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/m_sigver.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/p_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/p_seal.c soc2013/def/crashdump-head/crypto/openssl/crypto/evp/pmeth_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/hmac/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/hmac/hm_ameth.c soc2013/def/crashdump-head/crypto/openssl/crypto/hmac/hmac.c soc2013/def/crashdump-head/crypto/openssl/crypto/hmac/hmactest.c soc2013/def/crashdump-head/crypto/openssl/crypto/idea/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/jpake/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/jpake/jpake.c soc2013/def/crashdump-head/crypto/openssl/crypto/krb5/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/lhash/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/md2/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/md32_common.h soc2013/def/crashdump-head/crypto/openssl/crypto/md4/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/md5/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/md5/md5_locl.h soc2013/def/crashdump-head/crypto/openssl/crypto/mdc2/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/mem.c soc2013/def/crashdump-head/crypto/openssl/crypto/modes/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/modes/asm/ghash-armv4.pl soc2013/def/crashdump-head/crypto/openssl/crypto/modes/asm/ghash-s390x.pl soc2013/def/crashdump-head/crypto/openssl/crypto/modes/asm/ghash-sparcv9.pl soc2013/def/crashdump-head/crypto/openssl/crypto/modes/asm/ghash-x86.pl soc2013/def/crashdump-head/crypto/openssl/crypto/modes/asm/ghash-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/modes/cbc128.c soc2013/def/crashdump-head/crypto/openssl/crypto/modes/gcm128.c soc2013/def/crashdump-head/crypto/openssl/crypto/modes/modes.h soc2013/def/crashdump-head/crypto/openssl/crypto/modes/modes_lcl.h soc2013/def/crashdump-head/crypto/openssl/crypto/o_str.c soc2013/def/crashdump-head/crypto/openssl/crypto/o_time.c soc2013/def/crashdump-head/crypto/openssl/crypto/o_time.h soc2013/def/crashdump-head/crypto/openssl/crypto/objects/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/objects/o_names.c soc2013/def/crashdump-head/crypto/openssl/crypto/objects/obj_dat.c soc2013/def/crashdump-head/crypto/openssl/crypto/objects/obj_dat.h soc2013/def/crashdump-head/crypto/openssl/crypto/objects/obj_mac.h soc2013/def/crashdump-head/crypto/openssl/crypto/objects/obj_mac.num soc2013/def/crashdump-head/crypto/openssl/crypto/objects/obj_xref.h soc2013/def/crashdump-head/crypto/openssl/crypto/objects/obj_xref.txt soc2013/def/crashdump-head/crypto/openssl/crypto/objects/objects.README soc2013/def/crashdump-head/crypto/openssl/crypto/objects/objects.pl soc2013/def/crashdump-head/crypto/openssl/crypto/objects/objects.txt soc2013/def/crashdump-head/crypto/openssl/crypto/objects/objxref.pl soc2013/def/crashdump-head/crypto/openssl/crypto/ocsp/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/ocsp/ocsp.h soc2013/def/crashdump-head/crypto/openssl/crypto/ocsp/ocsp_ext.c soc2013/def/crashdump-head/crypto/openssl/crypto/ocsp/ocsp_ht.c soc2013/def/crashdump-head/crypto/openssl/crypto/ocsp/ocsp_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/ocsp/ocsp_vfy.c soc2013/def/crashdump-head/crypto/openssl/crypto/opensslconf.h soc2013/def/crashdump-head/crypto/openssl/crypto/opensslconf.h.in soc2013/def/crashdump-head/crypto/openssl/crypto/opensslv.h soc2013/def/crashdump-head/crypto/openssl/crypto/ossl_typ.h soc2013/def/crashdump-head/crypto/openssl/crypto/pem/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/pem/pem.h soc2013/def/crashdump-head/crypto/openssl/crypto/pem/pem_all.c soc2013/def/crashdump-head/crypto/openssl/crypto/pem/pem_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/pem/pem_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/pem/pem_pk8.c soc2013/def/crashdump-head/crypto/openssl/crypto/pem/pem_pkey.c soc2013/def/crashdump-head/crypto/openssl/crypto/perlasm/ppc-xlate.pl soc2013/def/crashdump-head/crypto/openssl/crypto/perlasm/x86_64-xlate.pl soc2013/def/crashdump-head/crypto/openssl/crypto/perlasm/x86asm.pl soc2013/def/crashdump-head/crypto/openssl/crypto/perlasm/x86gas.pl soc2013/def/crashdump-head/crypto/openssl/crypto/perlasm/x86masm.pl soc2013/def/crashdump-head/crypto/openssl/crypto/perlasm/x86nasm.pl soc2013/def/crashdump-head/crypto/openssl/crypto/pkcs12/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/pkcs12/p12_decr.c soc2013/def/crashdump-head/crypto/openssl/crypto/pkcs12/p12_kiss.c soc2013/def/crashdump-head/crypto/openssl/crypto/pkcs12/p12_mutl.c soc2013/def/crashdump-head/crypto/openssl/crypto/pkcs12/p12_p8e.c soc2013/def/crashdump-head/crypto/openssl/crypto/pkcs7/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/pkcs7/pk7_doit.c soc2013/def/crashdump-head/crypto/openssl/crypto/ppccap.c soc2013/def/crashdump-head/crypto/openssl/crypto/ppccpuid.pl soc2013/def/crashdump-head/crypto/openssl/crypto/pqueue/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/rand/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/rc2/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/rc4/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/rc4/asm/rc4-586.pl soc2013/def/crashdump-head/crypto/openssl/crypto/rc4/rc4_enc.c soc2013/def/crashdump-head/crypto/openssl/crypto/rc5/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/rc5/rc5_locl.h soc2013/def/crashdump-head/crypto/openssl/crypto/ripemd/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/rsa/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/rsa/rsa.h soc2013/def/crashdump-head/crypto/openssl/crypto/rsa/rsa_ameth.c soc2013/def/crashdump-head/crypto/openssl/crypto/rsa/rsa_asn1.c soc2013/def/crashdump-head/crypto/openssl/crypto/rsa/rsa_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/rsa/rsa_oaep.c soc2013/def/crashdump-head/crypto/openssl/crypto/rsa/rsa_pmeth.c soc2013/def/crashdump-head/crypto/openssl/crypto/rsa/rsa_sign.c soc2013/def/crashdump-head/crypto/openssl/crypto/seed/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/sha/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha1-586.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha1-armv4-large.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha1-mips.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha1-ppc.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha1-sparcv9.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha1-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha256-586.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha256-armv4.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha512-586.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha512-armv4.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha512-ia64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha512-mips.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha512-ppc.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha512-sparcv9.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/asm/sha512-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/sha/sha512.c soc2013/def/crashdump-head/crypto/openssl/crypto/sparccpuid.S soc2013/def/crashdump-head/crypto/openssl/crypto/sparcv9cap.c soc2013/def/crashdump-head/crypto/openssl/crypto/srp/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/srp/srp_vfy.c soc2013/def/crashdump-head/crypto/openssl/crypto/srp/srptest.c soc2013/def/crashdump-head/crypto/openssl/crypto/stack/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/stack/safestack.h soc2013/def/crashdump-head/crypto/openssl/crypto/stack/stack.c soc2013/def/crashdump-head/crypto/openssl/crypto/stack/stack.h soc2013/def/crashdump-head/crypto/openssl/crypto/store/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/symhacks.h soc2013/def/crashdump-head/crypto/openssl/crypto/threads/mttest.c soc2013/def/crashdump-head/crypto/openssl/crypto/threads/pthread2.sh soc2013/def/crashdump-head/crypto/openssl/crypto/threads/th-lock.c soc2013/def/crashdump-head/crypto/openssl/crypto/ts/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/ts/ts_rsp_sign.c soc2013/def/crashdump-head/crypto/openssl/crypto/ts/ts_rsp_verify.c soc2013/def/crashdump-head/crypto/openssl/crypto/txt_db/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/ui/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/ui/ui_openssl.c soc2013/def/crashdump-head/crypto/openssl/crypto/whrlpool/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/whrlpool/asm/wp-mmx.pl soc2013/def/crashdump-head/crypto/openssl/crypto/whrlpool/asm/wp-x86_64.pl soc2013/def/crashdump-head/crypto/openssl/crypto/x509/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509.h soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509_cmp.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509_err.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509_lu.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509_set.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509_trs.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509_txt.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509_vfy.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509_vfy.h soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509_vpm.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x509type.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509/x_all.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/Makefile soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/ext_dat.h soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/v3_alt.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/v3_cpols.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/v3_lib.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/v3_purp.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/v3_utl.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/v3err.c soc2013/def/crashdump-head/crypto/openssl/crypto/x509v3/x509v3.h soc2013/def/crashdump-head/crypto/openssl/crypto/x86_64cpuid.pl soc2013/def/crashdump-head/crypto/openssl/crypto/x86cpuid.pl soc2013/def/crashdump-head/crypto/openssl/doc/apps/c_rehash.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/ciphers.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/cms.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/config.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/dhparam.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/genpkey.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/ocsp.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/pkcs8.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/req.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/s_client.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/s_server.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/smime.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/verify.pod soc2013/def/crashdump-head/crypto/openssl/doc/apps/x509.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/ASN1_STRING_length.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/ASN1_STRING_print_ex.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/BIO_f_ssl.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/BIO_find_type.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/BIO_s_accept.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/BIO_s_connect.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/BN_BLINDING_new.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/BN_CTX_new.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/BN_generate_prime.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/BN_rand.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/BN_set_bit.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/CMS_add0_cert.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/CMS_get0_RecipientInfos.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/CMS_get0_SignerInfos.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/CMS_verify.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/DH_generate_parameters.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/DSA_generate_parameters.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/ERR_remove_state.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EVP_BytesToKey.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EVP_DigestInit.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EVP_DigestVerifyInit.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EVP_EncryptInit.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EVP_PKEY_CTX_ctrl.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/EVP_PKEY_cmp.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/OPENSSL_VERSION_NUMBER.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/OPENSSL_config.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/OPENSSL_ia32cap.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/OPENSSL_load_builtin_modules.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/OpenSSL_add_all_algorithms.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/PKCS7_verify.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/RAND_egd.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/RSA_generate_key.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/X509_NAME_add_entry_by_txt.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/X509_NAME_get_index_by_NID.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/X509_STORE_CTX_get_error.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/X509_STORE_CTX_new.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/X509_VERIFY_PARAM_set_flags.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/X509_verify_cert.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/crypto.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/d2i_DSAPublicKey.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/d2i_X509.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/d2i_X509_CRL.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/ecdsa.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/evp.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/hmac.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/i2d_PKCS7_bio_stream.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/pem.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/rand.pod soc2013/def/crashdump-head/crypto/openssl/doc/crypto/sha.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CIPHER_get_name.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_COMP_add_compression_method.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_add_extra_chain_cert.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_sess_set_cache_size.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_set_cert_store.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_set_cipher_list.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_use_certificate.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_CTX_use_psk_identity_hint.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_accept.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_do_handshake.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/SSL_shutdown.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssl/ssl.pod soc2013/def/crashdump-head/crypto/openssl/doc/ssleay.txt soc2013/def/crashdump-head/crypto/openssl/e_os.h soc2013/def/crashdump-head/crypto/openssl/e_os2.h soc2013/def/crashdump-head/crypto/openssl/engines/Makefile soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/Makefile soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/e_gost_err.c soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/e_gost_err.h soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/gost2001.c soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/gost89.c soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/gost94_keyx.c soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/gost_ameth.c soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/gost_crypt.c soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/gost_pmeth.c soc2013/def/crashdump-head/crypto/openssl/engines/ccgost/gost_sign.c soc2013/def/crashdump-head/crypto/openssl/engines/e_capi.c soc2013/def/crashdump-head/crypto/openssl/engines/e_sureware.c soc2013/def/crashdump-head/crypto/openssl/engines/vendor_defns/hwcryptohook.h soc2013/def/crashdump-head/crypto/openssl/ssl/Makefile soc2013/def/crashdump-head/crypto/openssl/ssl/d1_both.c soc2013/def/crashdump-head/crypto/openssl/ssl/d1_clnt.c soc2013/def/crashdump-head/crypto/openssl/ssl/d1_lib.c soc2013/def/crashdump-head/crypto/openssl/ssl/d1_meth.c soc2013/def/crashdump-head/crypto/openssl/ssl/d1_pkt.c soc2013/def/crashdump-head/crypto/openssl/ssl/d1_srtp.c soc2013/def/crashdump-head/crypto/openssl/ssl/d1_srvr.c soc2013/def/crashdump-head/crypto/openssl/ssl/dtls1.h soc2013/def/crashdump-head/crypto/openssl/ssl/heartbeat_test.c soc2013/def/crashdump-head/crypto/openssl/ssl/s23_clnt.c soc2013/def/crashdump-head/crypto/openssl/ssl/s23_srvr.c soc2013/def/crashdump-head/crypto/openssl/ssl/s2_clnt.c soc2013/def/crashdump-head/crypto/openssl/ssl/s2_lib.c soc2013/def/crashdump-head/crypto/openssl/ssl/s2_pkt.c soc2013/def/crashdump-head/crypto/openssl/ssl/s2_srvr.c soc2013/def/crashdump-head/crypto/openssl/ssl/s3_both.c soc2013/def/crashdump-head/crypto/openssl/ssl/s3_cbc.c soc2013/def/crashdump-head/crypto/openssl/ssl/s3_clnt.c soc2013/def/crashdump-head/crypto/openssl/ssl/s3_enc.c soc2013/def/crashdump-head/crypto/openssl/ssl/s3_lib.c soc2013/def/crashdump-head/crypto/openssl/ssl/s3_pkt.c soc2013/def/crashdump-head/crypto/openssl/ssl/s3_srvr.c soc2013/def/crashdump-head/crypto/openssl/ssl/srtp.h soc2013/def/crashdump-head/crypto/openssl/ssl/ssl.h soc2013/def/crashdump-head/crypto/openssl/ssl/ssl3.h soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_algs.c soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_cert.c soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_ciph.c soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_err.c soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_lib.c soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_locl.h soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_rsa.c soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_sess.c soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_stat.c soc2013/def/crashdump-head/crypto/openssl/ssl/ssl_txt.c soc2013/def/crashdump-head/crypto/openssl/ssl/ssltest.c soc2013/def/crashdump-head/crypto/openssl/ssl/t1_clnt.c soc2013/def/crashdump-head/crypto/openssl/ssl/t1_enc.c soc2013/def/crashdump-head/crypto/openssl/ssl/t1_lib.c soc2013/def/crashdump-head/crypto/openssl/ssl/t1_meth.c soc2013/def/crashdump-head/crypto/openssl/ssl/t1_srvr.c soc2013/def/crashdump-head/crypto/openssl/ssl/tls1.h soc2013/def/crashdump-head/crypto/openssl/ssl/tls_srp.c soc2013/def/crashdump-head/crypto/openssl/util/files.pl soc2013/def/crashdump-head/crypto/openssl/util/libeay.num soc2013/def/crashdump-head/crypto/openssl/util/mk1mf.pl soc2013/def/crashdump-head/crypto/openssl/util/mkdef.pl soc2013/def/crashdump-head/crypto/openssl/util/mkerr.pl soc2013/def/crashdump-head/crypto/openssl/util/mkstack.pl soc2013/def/crashdump-head/crypto/openssl/util/pl/BC-32.pl soc2013/def/crashdump-head/crypto/openssl/util/pl/VC-32.pl soc2013/def/crashdump-head/crypto/openssl/util/pl/unix.pl soc2013/def/crashdump-head/crypto/openssl/util/ssleay.num soc2013/def/crashdump-head/etc/ (props changed) soc2013/def/crashdump-head/etc/Makefile soc2013/def/crashdump-head/etc/defaults/periodic.conf soc2013/def/crashdump-head/etc/defaults/rc.conf soc2013/def/crashdump-head/etc/devd.conf soc2013/def/crashdump-head/etc/devd/usb.conf soc2013/def/crashdump-head/etc/etc.aarch64/ttys soc2013/def/crashdump-head/etc/etc.amd64/ttys soc2013/def/crashdump-head/etc/etc.arm/ttys soc2013/def/crashdump-head/etc/etc.i386/ttys soc2013/def/crashdump-head/etc/etc.mips/ttys soc2013/def/crashdump-head/etc/etc.pc98/ttys soc2013/def/crashdump-head/etc/etc.powerpc/ttys soc2013/def/crashdump-head/etc/etc.sparc64/ttys soc2013/def/crashdump-head/etc/group soc2013/def/crashdump-head/etc/inetd.conf soc2013/def/crashdump-head/etc/login.conf soc2013/def/crashdump-head/etc/mtree/BSD.debug.dist soc2013/def/crashdump-head/etc/mtree/BSD.include.dist soc2013/def/crashdump-head/etc/mtree/BSD.tests.dist soc2013/def/crashdump-head/etc/mtree/BSD.usr.dist soc2013/def/crashdump-head/etc/mtree/BSD.var.dist soc2013/def/crashdump-head/etc/mtree/Makefile soc2013/def/crashdump-head/etc/netstart soc2013/def/crashdump-head/etc/network.subr soc2013/def/crashdump-head/etc/ntp.conf soc2013/def/crashdump-head/etc/pccard_ether soc2013/def/crashdump-head/etc/periodic/Makefile soc2013/def/crashdump-head/etc/periodic/daily/400.status-disks soc2013/def/crashdump-head/etc/periodic/daily/480.status-ntpd soc2013/def/crashdump-head/etc/periodic/daily/Makefile soc2013/def/crashdump-head/etc/periodic/security/520.pfdenied soc2013/def/crashdump-head/etc/portsnap.conf soc2013/def/crashdump-head/etc/rc.d/automount soc2013/def/crashdump-head/etc/rc.d/automountd soc2013/def/crashdump-head/etc/rc.d/autounmountd soc2013/def/crashdump-head/etc/rc.d/bgfsck soc2013/def/crashdump-head/etc/rc.d/devd soc2013/def/crashdump-head/etc/rc.d/fsck soc2013/def/crashdump-head/etc/rc.d/hostid soc2013/def/crashdump-head/etc/rc.d/hostname soc2013/def/crashdump-head/etc/rc.d/iovctl soc2013/def/crashdump-head/etc/rc.d/jail soc2013/def/crashdump-head/etc/rc.d/local_unbound soc2013/def/crashdump-head/etc/rc.d/mdconfig soc2013/def/crashdump-head/etc/rc.d/mdconfig2 soc2013/def/crashdump-head/etc/rc.d/mountcritlocal soc2013/def/crashdump-head/etc/rc.d/netif soc2013/def/crashdump-head/etc/rc.d/nfsd soc2013/def/crashdump-head/etc/rc.d/nfsuserd soc2013/def/crashdump-head/etc/rc.d/othermta soc2013/def/crashdump-head/etc/rc.d/random soc2013/def/crashdump-head/etc/rc.d/rctl soc2013/def/crashdump-head/etc/rc.d/ugidfw soc2013/def/crashdump-head/etc/rc.d/var soc2013/def/crashdump-head/etc/rc.firewall soc2013/def/crashdump-head/etc/rc.shutdown soc2013/def/crashdump-head/etc/rc.subr soc2013/def/crashdump-head/etc/sendmail/Makefile soc2013/def/crashdump-head/etc/sendmail/freebsd.mc soc2013/def/crashdump-head/etc/sendmail/freebsd.submit.mc soc2013/def/crashdump-head/etc/services soc2013/def/crashdump-head/gnu/lib/ (props changed) soc2013/def/crashdump-head/gnu/usr.bin/binutils/ (props changed) soc2013/def/crashdump-head/gnu/usr.bin/cc/cc_tools/ (props changed) soc2013/def/crashdump-head/gnu/usr.bin/gdb/ (props changed) soc2013/def/crashdump-head/include/ (props changed) soc2013/def/crashdump-head/include/Makefile soc2013/def/crashdump-head/include/_ctype.h soc2013/def/crashdump-head/include/arpa/Makefile soc2013/def/crashdump-head/include/ctype.h soc2013/def/crashdump-head/include/gssapi/Makefile soc2013/def/crashdump-head/include/limits.h soc2013/def/crashdump-head/include/malloc_np.h soc2013/def/crashdump-head/include/mk-osreldate.sh soc2013/def/crashdump-head/include/protocols/Makefile soc2013/def/crashdump-head/include/resolv.h soc2013/def/crashdump-head/include/stdio.h soc2013/def/crashdump-head/include/stdlib.h soc2013/def/crashdump-head/include/stringlist.h soc2013/def/crashdump-head/include/unistd.h soc2013/def/crashdump-head/include/wctype.h soc2013/def/crashdump-head/include/xlocale/Makefile soc2013/def/crashdump-head/include/xlocale/_ctype.h soc2013/def/crashdump-head/kerberos5/Makefile soc2013/def/crashdump-head/kerberos5/Makefile.inc soc2013/def/crashdump-head/kerberos5/lib/Makefile soc2013/def/crashdump-head/kerberos5/lib/libasn1/Makefile soc2013/def/crashdump-head/kerberos5/lib/libhdb/Makefile soc2013/def/crashdump-head/kerberos5/lib/libheimipcc/Makefile soc2013/def/crashdump-head/kerberos5/lib/libhx509/Makefile soc2013/def/crashdump-head/kerberos5/libexec/Makefile soc2013/def/crashdump-head/kerberos5/libexec/digest-service/Makefile soc2013/def/crashdump-head/kerberos5/libexec/kdc/Makefile soc2013/def/crashdump-head/kerberos5/libexec/kdigest/Makefile soc2013/def/crashdump-head/kerberos5/tools/Makefile soc2013/def/crashdump-head/kerberos5/usr.bin/Makefile soc2013/def/crashdump-head/kerberos5/usr.bin/hxtool/Makefile soc2013/def/crashdump-head/kerberos5/usr.bin/kadmin/Makefile soc2013/def/crashdump-head/kerberos5/usr.bin/kcc/Makefile soc2013/def/crashdump-head/kerberos5/usr.bin/kpasswd/Makefile soc2013/def/crashdump-head/kerberos5/usr.sbin/Makefile soc2013/def/crashdump-head/kerberos5/usr.sbin/iprop-log/Makefile soc2013/def/crashdump-head/kerberos5/usr.sbin/ktutil/Makefile soc2013/def/crashdump-head/lib/clang/liblldbInitialization/ (props changed) soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_arm/ (props changed) soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_arm64/ (props changed) soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_i386/ (props changed) soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_mips/ (props changed) soc2013/def/crashdump-head/lib/clang/liblldbPluginABISysV_mips64/ (props changed) soc2013/def/crashdump-head/lib/clang/liblldbPluginInstructionMIPS/ (props changed) soc2013/def/crashdump-head/lib/clang/liblldbPluginInstructionMIPS64/ (props changed) soc2013/def/crashdump-head/lib/clang/libllvmdebuginfodwarf/ (props changed) soc2013/def/crashdump-head/lib/clang/libllvmdebuginfopdb/ (props changed) soc2013/def/crashdump-head/lib/clang/libllvmlibdriver/ (props changed) soc2013/def/crashdump-head/lib/clang/libllvmlto/ (props changed) soc2013/def/crashdump-head/lib/clang/libllvmmirparser/ (props changed) soc2013/def/crashdump-head/lib/clang/libllvmorcjit/ (props changed) soc2013/def/crashdump-head/lib/clang/libllvmpasses/ (props changed) soc2013/def/crashdump-head/lib/csu/i386/ (props changed) soc2013/def/crashdump-head/lib/lib80211/ (props changed) soc2013/def/crashdump-head/lib/libarchive/tests/ (props changed) soc2013/def/crashdump-head/lib/libc/ (props changed) soc2013/def/crashdump-head/lib/libc/secure/ (props changed) soc2013/def/crashdump-head/lib/libc/stdtime/ (props changed) soc2013/def/crashdump-head/lib/libclang_rt/asan-preinit/ (props changed) soc2013/def/crashdump-head/lib/libclang_rt/include/ (props changed) soc2013/def/crashdump-head/lib/libclang_rt/safestack/ (props changed) soc2013/def/crashdump-head/lib/libclang_rt/ubsan_standalone/ (props changed) soc2013/def/crashdump-head/lib/libclang_rt/ubsan_standalone_cxx/ (props changed) soc2013/def/crashdump-head/lib/libopenbsd/ (props changed) soc2013/def/crashdump-head/lib/libpam/static_modules/ (props changed) soc2013/def/crashdump-head/lib/libutil/ (props changed) soc2013/def/crashdump-head/lib/libvmmapi/ (props changed) soc2013/def/crashdump-head/lib/libxo/tests/ (props changed) soc2013/def/crashdump-head/lib/libz/ (props changed) soc2013/def/crashdump-head/libexec/dma/dma-mbox-create/ (props changed) soc2013/def/crashdump-head/libexec/dma/dmagent/ (props changed) soc2013/def/crashdump-head/release/Makefile soc2013/def/crashdump-head/release/Makefile.ec2 soc2013/def/crashdump-head/release/Makefile.vm soc2013/def/crashdump-head/release/amd64/mkisoimages.sh soc2013/def/crashdump-head/release/arm/BEAGLEBONE.conf soc2013/def/crashdump-head/release/arm/PANDABOARD.conf soc2013/def/crashdump-head/release/arm/RPI-B.conf soc2013/def/crashdump-head/release/arm64/make-memstick.sh soc2013/def/crashdump-head/release/doc/en_US.ISO8859-1/errata/article.xml soc2013/def/crashdump-head/release/doc/en_US.ISO8859-1/hardware/article.xml soc2013/def/crashdump-head/release/doc/en_US.ISO8859-1/relnotes/article.xml soc2013/def/crashdump-head/release/doc/share/misc/dev.archlist.txt soc2013/def/crashdump-head/release/doc/share/xml/release.ent soc2013/def/crashdump-head/release/doc/share/xml/sponsor.ent soc2013/def/crashdump-head/release/i386/make-memstick.sh soc2013/def/crashdump-head/release/i386/mkisoimages.sh soc2013/def/crashdump-head/release/pc98/mkisoimages.sh soc2013/def/crashdump-head/release/picobsd/build/picobsd soc2013/def/crashdump-head/release/picobsd/floppy.tree/etc/ttys soc2013/def/crashdump-head/release/powerpc/mkisoimages.sh soc2013/def/crashdump-head/release/release.sh soc2013/def/crashdump-head/release/scripts/list-new-changesets.py soc2013/def/crashdump-head/release/scripts/mm-mtree.sh soc2013/def/crashdump-head/release/sparc64/mkisoimages.sh soc2013/def/crashdump-head/release/tools/azure.conf soc2013/def/crashdump-head/release/tools/ec2.conf soc2013/def/crashdump-head/release/tools/vmimage.subr soc2013/def/crashdump-head/rescue/rescue/Makefile soc2013/def/crashdump-head/sbin/ (props changed) soc2013/def/crashdump-head/sbin/dumpon/ (props changed) soc2013/def/crashdump-head/sbin/ipfw/ (props changed) soc2013/def/crashdump-head/secure/Makefile soc2013/def/crashdump-head/secure/lib/libcrypt/crypt-blowfish.c soc2013/def/crashdump-head/secure/lib/libcrypto/Makefile soc2013/def/crashdump-head/secure/lib/libcrypto/Makefile.asm soc2013/def/crashdump-head/secure/lib/libcrypto/Makefile.inc soc2013/def/crashdump-head/secure/lib/libcrypto/Makefile.man soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/aes-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/aesni-sha1-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/aesni-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/bsaes-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/cmll-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/ghash-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/md5-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/rc4-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/sha1-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/sha256-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/sha512-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/vpaes-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/wp-x86_64.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/x86_64-gf2m.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/x86_64-mont.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/x86_64-mont5.S soc2013/def/crashdump-head/secure/lib/libcrypto/amd64/x86_64cpuid.S soc2013/def/crashdump-head/secure/lib/libcrypto/engines/Makefile soc2013/def/crashdump-head/secure/lib/libcrypto/engines/libgost/Makefile soc2013/def/crashdump-head/secure/lib/libcrypto/i386/aes-586.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/aesni-x86.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/bn-586.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/des-586.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/ghash-x86.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/rc4-586.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/sha1-586.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/sha256-586.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/sha512-586.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/vpaes-x86.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/wp-mmx.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/x86-gf2m.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/x86-mont.s soc2013/def/crashdump-head/secure/lib/libcrypto/i386/x86cpuid.s soc2013/def/crashdump-head/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ASN1_STRING_length.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ASN1_STRING_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ASN1_generate_nconf.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_ctrl.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_f_base64.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_f_buffer.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_f_cipher.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_f_md.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_f_null.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_f_ssl.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_find_type.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_new_CMS.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_push.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_read.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_s_accept.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_s_bio.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_s_connect.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_s_fd.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_s_file.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_s_mem.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_s_null.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_s_socket.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_set_callback.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BIO_should_retry.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_BLINDING_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_CTX_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_CTX_start.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_add.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_add_word.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_bn2bin.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_cmp.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_copy.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_generate_prime.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_mod_inverse.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_num_bytes.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_rand.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_set_bit.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_swap.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/BN_zero.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_add0_cert.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_add1_signer.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_compress.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_decrypt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_encrypt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_final.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_get0_type.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_sign.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_sign_receipt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_uncompress.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_verify.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CMS_verify_receipt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CONF_modules_free.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CONF_modules_load_file.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DH_generate_key.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DH_generate_parameters.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DH_get_ex_new_index.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DH_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DH_set_method.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DH_size.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_SIG_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_do_sign.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_dup_DH.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_generate_key.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_generate_parameters.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_set_method.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_sign.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/DSA_size.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_GET_LIB.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_clear_error.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_error_string.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_get_error.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_load_strings.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_print_errors.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_put_error.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_remove_state.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ERR_set_mark.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_BytesToKey.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_DigestInit.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_DigestSignInit.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_EncryptInit.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_OpenInit.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_derive.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_sign.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_verify.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_SealInit.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_SignInit.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/EVP_VerifyInit.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/OBJ_nid2obj.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/OPENSSL_Applink.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/OPENSSL_config.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/PKCS12_create.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/PKCS12_parse.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/PKCS7_decrypt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/PKCS7_encrypt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/PKCS7_sign.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/PKCS7_verify.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RAND_add.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RAND_bytes.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RAND_cleanup.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RAND_egd.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RAND_load_file.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RAND_set_rand_method.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_blinding_on.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_check_key.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_generate_key.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_print.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_private_encrypt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_public_encrypt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_set_method.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_sign.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/RSA_size.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/SMIME_read_CMS.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/SMIME_write_CMS.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_NAME_print_ex.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_new.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/X509_verify_cert.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/bio.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/blowfish.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/bn.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/bn_internal.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/buffer.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/crypto.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_DHparams.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_ECPrivateKey.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_X509.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_X509_CRL.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_X509_NAME.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_X509_REQ.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/d2i_X509_SIG.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/des.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/dh.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/dsa.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ecdsa.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/engine.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/err.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/evp.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/hmac.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/lh_stats.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/lhash.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/md5.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/mdc2.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/pem.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/rand.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/rc4.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ripemd.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/rsa.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/sha.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/threads.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ui.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/ui_compat.3 soc2013/def/crashdump-head/secure/lib/libcrypto/man/x509.3 soc2013/def/crashdump-head/secure/lib/libcrypto/opensslconf-aarch64.h soc2013/def/crashdump-head/secure/lib/libcrypto/opensslconf-arm.h soc2013/def/crashdump-head/secure/lib/libcrypto/opensslconf-mips.h soc2013/def/crashdump-head/secure/lib/libcrypto/opensslconf-powerpc.h soc2013/def/crashdump-head/secure/lib/libcrypto/opensslconf-sparc64.h soc2013/def/crashdump-head/secure/lib/libcrypto/opensslconf-x86.h soc2013/def/crashdump-head/secure/lib/libssh/Makefile soc2013/def/crashdump-head/secure/lib/libssl/Makefile soc2013/def/crashdump-head/secure/lib/libssl/Makefile.man soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CIPHER_get_name.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_add_session.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_ctrl.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_free.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_new.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_sess_number.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_sessions.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_mode.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_options.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_read_ahead.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_timeout.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_set_verify.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_use_certificate.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_SESSION_free.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_SESSION_get_time.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_accept.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_alert_type_string.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_clear.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_connect.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_do_handshake.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_free.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_SSL_CTX.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_ciphers.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_client_CA_list.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_current_cipher.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_default_timeout.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_error.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_ex_new_index.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_fd.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_peer_certificate.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_psk_identity.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_rbio.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_session.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_verify_result.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_get_version.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_library_init.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_load_client_CA_file.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_new.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_pending.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_read.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_rstate_string.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_session_reused.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_set_bio.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_set_connect_state.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_set_fd.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_set_session.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_set_shutdown.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_set_verify_result.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_shutdown.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_state_string.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_want.3 soc2013/def/crashdump-head/secure/lib/libssl/man/SSL_write.3 soc2013/def/crashdump-head/secure/lib/libssl/man/d2i_SSL_SESSION.3 soc2013/def/crashdump-head/secure/lib/libssl/man/ssl.3 soc2013/def/crashdump-head/secure/lib/tests/Makefile soc2013/def/crashdump-head/secure/libexec/Makefile soc2013/def/crashdump-head/secure/libexec/sftp-server/Makefile soc2013/def/crashdump-head/secure/libexec/ssh-keysign/Makefile soc2013/def/crashdump-head/secure/libexec/ssh-pkcs11-helper/Makefile soc2013/def/crashdump-head/secure/libexec/tests/Makefile soc2013/def/crashdump-head/secure/tests/Makefile soc2013/def/crashdump-head/secure/usr.bin/Makefile soc2013/def/crashdump-head/secure/usr.bin/openssl/Makefile soc2013/def/crashdump-head/secure/usr.bin/openssl/man/CA.pl.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/asn1parse.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/c_rehash.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/ca.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/ciphers.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/cms.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/crl.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/crl2pkcs7.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/dgst.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/dhparam.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/dsa.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/dsaparam.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/ec.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/ecparam.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/enc.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/errstr.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/gendsa.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/genpkey.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/genrsa.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/nseq.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/ocsp.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/openssl.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/passwd.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/pkcs12.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/pkcs7.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/pkcs8.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/pkey.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/pkeyparam.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/pkeyutl.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/rand.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/req.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/rsa.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/rsautl.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/s_client.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/s_server.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/s_time.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/sess_id.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/smime.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/speed.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/spkac.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/ts.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/tsget.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/verify.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/version.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/x509.1 soc2013/def/crashdump-head/secure/usr.bin/openssl/man/x509v3_config.1 soc2013/def/crashdump-head/secure/usr.bin/scp/Makefile soc2013/def/crashdump-head/secure/usr.bin/sftp/Makefile soc2013/def/crashdump-head/secure/usr.bin/ssh-add/Makefile soc2013/def/crashdump-head/secure/usr.bin/ssh-agent/Makefile soc2013/def/crashdump-head/secure/usr.bin/ssh-keyscan/Makefile soc2013/def/crashdump-head/secure/usr.bin/ssh/Makefile soc2013/def/crashdump-head/secure/usr.bin/tests/Makefile soc2013/def/crashdump-head/secure/usr.sbin/Makefile soc2013/def/crashdump-head/secure/usr.sbin/sshd/Makefile soc2013/def/crashdump-head/secure/usr.sbin/tests/Makefile soc2013/def/crashdump-head/share/ (props changed) soc2013/def/crashdump-head/share/ctypedef/ (props changed) soc2013/def/crashdump-head/share/doc/usd/10.exref/ (props changed) soc2013/def/crashdump-head/share/doc/usd/11.vitut/ (props changed) soc2013/def/crashdump-head/share/doc/usd/12.vi/ (props changed) soc2013/def/crashdump-head/share/doc/usd/13.viref/ (props changed) soc2013/def/crashdump-head/share/locale-links/ (props changed) soc2013/def/crashdump-head/share/man/man4/ (props changed) soc2013/def/crashdump-head/share/zoneinfo/ (props changed) soc2013/def/crashdump-head/sys/ (props changed) soc2013/def/crashdump-head/sys/amd64/cloudabi64/ (props changed) soc2013/def/crashdump-head/sys/amd64/include/vmm.h (props changed) soc2013/def/crashdump-head/sys/amd64/include/vmm_dev.h (props changed) soc2013/def/crashdump-head/sys/amd64/include/xen/ (props changed) soc2013/def/crashdump-head/sys/amd64/linux/ (props changed) soc2013/def/crashdump-head/sys/amd64/vmm/ (props changed) soc2013/def/crashdump-head/sys/arm/annapurna/ (props changed) soc2013/def/crashdump-head/sys/arm64/acpica/ (props changed) soc2013/def/crashdump-head/sys/arm64/cavium/ (props changed) soc2013/def/crashdump-head/sys/arm64/cloudabi64/ (props changed) soc2013/def/crashdump-head/sys/boot/ (props changed) soc2013/def/crashdump-head/sys/boot/powerpc/kboot/ (props changed) soc2013/def/crashdump-head/sys/boot/powerpc/ofw/ (props changed) soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/ (props changed) soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/common/atomic/aarch64/ (props changed) soc2013/def/crashdump-head/sys/cddl/contrib/opensolaris/uts/aarch64/ (props changed) soc2013/def/crashdump-head/sys/cddl/dev/dtrace/aarch64/ (props changed) soc2013/def/crashdump-head/sys/cddl/dev/fbt/aarch64/ (props changed) soc2013/def/crashdump-head/sys/compat/cloudabi/ (props changed) soc2013/def/crashdump-head/sys/compat/cloudabi64/ (props changed) soc2013/def/crashdump-head/sys/compat/linuxkpi/ (props changed) soc2013/def/crashdump-head/sys/conf/ (props changed) soc2013/def/crashdump-head/sys/contrib/alpine-hal/ (props changed) soc2013/def/crashdump-head/sys/contrib/cloudabi/ (props changed) soc2013/def/crashdump-head/sys/contrib/dev/acpica/ (props changed) soc2013/def/crashdump-head/sys/contrib/dev/iwm/ (props changed) soc2013/def/crashdump-head/sys/contrib/dev/otus/ (props changed) soc2013/def/crashdump-head/sys/contrib/ipfilter/ (props changed) soc2013/def/crashdump-head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (props changed) soc2013/def/crashdump-head/sys/contrib/libnv/ (props changed) soc2013/def/crashdump-head/sys/dev/cyapa/ (props changed) soc2013/def/crashdump-head/sys/dev/etherswitch/e6000sw/ (props changed) soc2013/def/crashdump-head/sys/dev/hyperv/ (props changed) soc2013/def/crashdump-head/sys/dev/ichiic/ (props changed) soc2013/def/crashdump-head/sys/dev/ioat/ (props changed) soc2013/def/crashdump-head/sys/dev/isl/ (props changed) soc2013/def/crashdump-head/sys/dev/iwm/ (props changed) soc2013/def/crashdump-head/sys/dev/mlx5/ (props changed) soc2013/def/crashdump-head/sys/dev/otus/ (props changed) soc2013/def/crashdump-head/sys/dev/ow/ (props changed) soc2013/def/crashdump-head/sys/dev/pms/ (props changed) soc2013/def/crashdump-head/sys/dev/rccgpio/ (props changed) soc2013/def/crashdump-head/sys/dev/vnic/ (props changed) soc2013/def/crashdump-head/sys/modules/am335x_dmtpps/ (props changed) soc2013/def/crashdump-head/sys/modules/cloudabi/ (props changed) soc2013/def/crashdump-head/sys/modules/cloudabi64/ (props changed) soc2013/def/crashdump-head/sys/modules/dtrace/systrace_linux/ (props changed) soc2013/def/crashdump-head/sys/modules/geom/geom_map/ (props changed) soc2013/def/crashdump-head/sys/modules/hyperv/ (props changed) soc2013/def/crashdump-head/sys/modules/i2c/controllers/ichiic/ (props changed) soc2013/def/crashdump-head/sys/modules/i2c/cyapa/ (props changed) soc2013/def/crashdump-head/sys/modules/i2c/isl/ (props changed) soc2013/def/crashdump-head/sys/modules/if_enc/ (props changed) soc2013/def/crashdump-head/sys/modules/ioat/ (props changed) soc2013/def/crashdump-head/sys/modules/iwm/ (props changed) soc2013/def/crashdump-head/sys/modules/iwmfw/ (props changed) soc2013/def/crashdump-head/sys/modules/linux64/ (props changed) soc2013/def/crashdump-head/sys/modules/linux_common/ (props changed) soc2013/def/crashdump-head/sys/modules/linuxkpi/ (props changed) soc2013/def/crashdump-head/sys/modules/mlx5/ (props changed) soc2013/def/crashdump-head/sys/modules/mlx5en/ (props changed) soc2013/def/crashdump-head/sys/modules/otus/ (props changed) soc2013/def/crashdump-head/sys/modules/otusfw/ (props changed) soc2013/def/crashdump-head/sys/modules/ow/ (props changed) soc2013/def/crashdump-head/sys/modules/pms/ (props changed) soc2013/def/crashdump-head/sys/modules/random_fortuna/ (props changed) soc2013/def/crashdump-head/sys/modules/random_other/ (props changed) soc2013/def/crashdump-head/sys/modules/random_yarrow/ (props changed) soc2013/def/crashdump-head/sys/modules/rccgpio/ (props changed) soc2013/def/crashdump-head/sys/modules/tests/ (props changed) soc2013/def/crashdump-head/sys/modules/usb/ugold/ (props changed) soc2013/def/crashdump-head/sys/modules/usb/ure/ (props changed) soc2013/def/crashdump-head/sys/powerpc/mikrotik/ (props changed) soc2013/def/crashdump-head/sys/tests/ (props changed) soc2013/def/crashdump-head/sys/x86/include/xen/ (props changed) soc2013/def/crashdump-head/sys/xen/xenmem/ (props changed) soc2013/def/crashdump-head/tests/Makefile soc2013/def/crashdump-head/tests/README soc2013/def/crashdump-head/tests/sys/Makefile soc2013/def/crashdump-head/tests/sys/kern/Makefile soc2013/def/crashdump-head/tests/sys/kern/unix_seqpacket_test.c soc2013/def/crashdump-head/tests/sys/netinet/fibs_test.sh soc2013/def/crashdump-head/tests/sys/pjdfstest/Makefile soc2013/def/crashdump-head/tests/sys/pjdfstest/pjdfstest/Makefile soc2013/def/crashdump-head/tests/sys/pjdfstest/tests/Makefile soc2013/def/crashdump-head/tools/bus_space/examples/ (props changed) soc2013/def/crashdump-head/tools/test/net/ (props changed) soc2013/def/crashdump-head/tools/tools/indent_wrapper/ (props changed) soc2013/def/crashdump-head/tools/tools/ioat/ (props changed) soc2013/def/crashdump-head/tools/tools/locale/ (props changed) soc2013/def/crashdump-head/usr.bin/caesar/ (props changed) soc2013/def/crashdump-head/usr.bin/calendar/ (props changed) soc2013/def/crashdump-head/usr.bin/clang/llvm-cxxdump/ (props changed) soc2013/def/crashdump-head/usr.bin/clang/llvm-dwarfdump/ (props changed) soc2013/def/crashdump-head/usr.bin/clang/llvm-lto/ (props changed) soc2013/def/crashdump-head/usr.bin/clang/llvm-pdbdump/ (props changed) soc2013/def/crashdump-head/usr.bin/col/tests/ (props changed) soc2013/def/crashdump-head/usr.bin/colldef/ (props changed) soc2013/def/crashdump-head/usr.bin/cpio/tests/ (props changed) soc2013/def/crashdump-head/usr.bin/cxxfilt/ (props changed) soc2013/def/crashdump-head/usr.bin/factor/ (props changed) soc2013/def/crashdump-head/usr.bin/fortune/ (props changed) soc2013/def/crashdump-head/usr.bin/grdc/ (props changed) soc2013/def/crashdump-head/usr.bin/ident/ (props changed) soc2013/def/crashdump-head/usr.bin/limits/tests/ (props changed) soc2013/def/crashdump-head/usr.bin/localedef/ (props changed) soc2013/def/crashdump-head/usr.bin/mkimg/ (props changed) soc2013/def/crashdump-head/usr.bin/mklocale/ (props changed) soc2013/def/crashdump-head/usr.bin/morse/ (props changed) soc2013/def/crashdump-head/usr.bin/numactl/ (props changed) soc2013/def/crashdump-head/usr.bin/number/ (props changed) soc2013/def/crashdump-head/usr.bin/pom/ (props changed) soc2013/def/crashdump-head/usr.bin/primes/ (props changed) soc2013/def/crashdump-head/usr.bin/procstat/ (props changed) soc2013/def/crashdump-head/usr.bin/random/ (props changed) soc2013/def/crashdump-head/usr.bin/soelim/ (props changed) soc2013/def/crashdump-head/usr.bin/svn/lib/libsvn_fs_x/ (props changed) soc2013/def/crashdump-head/usr.bin/svn/svnbench/ (props changed) soc2013/def/crashdump-head/usr.bin/svn/svnfsfs/ (props changed) soc2013/def/crashdump-head/usr.bin/tar/tests/ (props changed) soc2013/def/crashdump-head/usr.bin/xo/tests/ (props changed) soc2013/def/crashdump-head/usr.sbin/bhyve/ (props changed) soc2013/def/crashdump-head/usr.sbin/bhyvectl/ (props changed) soc2013/def/crashdump-head/usr.sbin/bhyveload/ (props changed) soc2013/def/crashdump-head/usr.sbin/fmtree/ (props changed) soc2013/def/crashdump-head/usr.sbin/fstyp/tests/ (props changed) soc2013/def/crashdump-head/usr.sbin/jail/ (props changed) soc2013/def/crashdump-head/usr.sbin/makefs/tests/ (props changed) soc2013/def/crashdump-head/usr.sbin/mpsutil/ (props changed) soc2013/def/crashdump-head/usr.sbin/ndiscvt/ (props changed) soc2013/def/crashdump-head/usr.sbin/rtadvctl/ (props changed) soc2013/def/crashdump-head/usr.sbin/rtadvd/ (props changed) soc2013/def/crashdump-head/usr.sbin/rtsold/ (props changed) soc2013/def/crashdump-head/usr.sbin/sesutil/ (props changed) soc2013/def/crashdump-head/usr.sbin/ypldap/ (props changed) soc2013/def/crashdump-head/usr.sbin/ypserv/common/ (props changed) soc2013/def/crashdump-head/usr.sbin/zic/ (props changed) Modified: soc2013/def/crashdump-head/.arcconfig ============================================================================== --- soc2013/def/crashdump-head/.arcconfig Wed Dec 2 11:11:58 2015 (r294758) +++ soc2013/def/crashdump-head/.arcconfig Wed Dec 2 12:51:27 2015 (r294759) @@ -1,4 +1,6 @@ { "project.name": "S", - "phabricator.uri" : "https://reviews.freebsd.org/" + "repository.callsign" : "S", + "phabricator.uri" : "https://reviews.freebsd.org/", + "history.immutable" : true } Modified: soc2013/def/crashdump-head/MAINTAINERS ============================================================================== --- soc2013/def/crashdump-head/MAINTAINERS Wed Dec 2 11:11:58 2015 (r294758) +++ soc2013/def/crashdump-head/MAINTAINERS Wed Dec 2 12:51:27 2015 (r294759) @@ -18,9 +18,63 @@ of guidance. It does not override the communal nature of the tree. It is not a registry of 'turf' or private property. +*** +This list is prone to becoming stale quickly. The best way to find the recent +maintainer of a sub-system is to check recent logs for that directory or +sub-system. +*** + subsystem login notes ----------------------------- +opencrypto jmg Pre-commit review requested. Documentation Required. kqueue jmg Pre-commit review requested. Documentation Required. +share/mk imp, bapt, bdrewery, emaste, sjg Make is hard. +ath(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +net80211 adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +iwn(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +iwm(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +otus(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +dev/usb/wlan adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +openssl benl,jkim Pre-commit review requested. +release/release.sh gjb,re Pre-commit review and regression tests + requested. +sh(1) jilles Pre-commit review requested. This also applies + to kill(1), printf(1) and test(1) which are + compiled in as builtins. +isci(4) jimharris Pre-commit review requested. +nvme(4) jimharris Pre-commit review requested. +nvd(4) jimharris Pre-commit review requested. +nvmecontrol(8) jimharris Pre-commit review requested. +libfetch des Pre-commit review requested. +fetch des Pre-commit review requested. +libpam des Pre-commit review requested. +openssh des Pre-commit review requested. +pseudofs des Pre-commit review requested. +procfs des Pre-commit review requested. +linprocfs des Pre-commit review requested. +contrib/compiler-rt dim Pre-commit review preferred. +contrib/libc++ dim Pre-commit review preferred. +contrib/libcxxrt dim Pre-commit review preferred. +contrib/llvm dim Pre-commit review preferred. +contrib/llvm/tools/lldb emaste Pre-commit review preferred. +atf freebsd-testing,jmmv,ngie Pre-commit review requested. +contrib/netbsd-tests freebsd-testing,ngie Pre-commit review requested. +contrib/pjdfstest freebsd-testing,ngie,pjd Pre-commit review requested. +share/mk/*.test.mk freebsd-testing,ngie (same list as share/mk too) Pre-commit review requested. +tests freebsd-testing,ngie Pre-commit review requested. +sys/dev/usb hselasky If in doubt, ask. +sys/dev/sound/usb hselasky If in doubt, ask. +sys/compat/linuxkpi hselasky If in doubt, ask. +sys/dev/e1000 erj Pre-commit phabricator review requested. +sys/dev/ixgbe erj Pre-commit phabricator review requested. +sys/dev/ixl erj Pre-commit phabricator review requested. +sys/netinet/ip_carp.c glebius Pre-commit review recommended. +sys/netpfil/pf kp,glebius Pre-commit review recommended. +usr.sbin/pkg pkg@ Please coordinate behavior or flag changes with pkg team. +lpr gad Pre-commit review requested, particularly for + lpd/recvjob.c and lpd/printjob.c. +nis(8), yp(8) araujo Pre-commit review requested. +---- OLD ---- libc/posix1e rwatson Pre-commit review requested. POSIX.1e ACLs rwatson Pre-commit review requested. UFS EAs rwatson Pre-commit review requested. @@ -28,11 +82,8 @@ MAC Modules rwatson Pre-commit review requested. contrib/openbsm rwatson Pre-commit review requested. sys/security/audit rwatson Pre-commit review requested. -ath(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org ahc(4) gibbs Pre-commit review requested. ahd(4) gibbs Pre-commit review requested. -PC Card imp Pre-commit review requested. -CardBus imp Pre-commit review requested. pci bus imp,jhb Pre-commit review requested. cdboot jhb Pre-commit review requested. pxeboot jhb Pre-commit review requested. @@ -53,21 +104,9 @@ Keep in sync with -STABLE. etc/sendmail gshapiro Pre-commit review requested. Keep in sync with -STABLE. -libfetch des Advance notification requested. -fetch des Advance notification requested. -libpam des Pre-commit review requested. -openssh des Pre-commit review requested. -pseudofs des Pre-commit review requested. -procfs des Pre-commit review requested. -linprocfs des Pre-commit review requested. -lpr gad Pre-commit review requested, particularly for - lpd/recvjob.c and lpd/printjob.c. -net80211 adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org nvi peter Try not to break it. libz peter Try not to break it. groff ru Recommends pre-commit review. -share/mk ru This is a vital component of the build system, so I - offer a pre-commit review for anything non-trivial. ipfw ipfw Pre-commit review preferred. send to ipfw@freebsd.org drm rnoland Just keep me informed of changes, try not to break it. unifdef(1) fanf Pre-commit review requested. @@ -75,12 +114,10 @@ inetd dwmalone Recommends pre-commit review. contrib/smbfs bp Open for in-tree committs. In case of functional changes pre-commit review requested. -contrib/pf glebius Pre-commit review recommended. file obrien Insists to keep file blocked from other's unapproved commits contrib/bzip2 obrien Pre-commit review required. -contrib/netbsd-tests freebsd-testing,ngie Pre-commit review requested. -contrib/pjdfstest freebsd-testing,ngie Pre-commit review requested. +geom freebsd-geom@FreeBSD.org geom_concat pjd Pre-commit review preferred. geom_eli pjd Pre-commit review preferred. geom_gate pjd Pre-commit review preferred. @@ -92,16 +129,12 @@ geom_stripe pjd Pre-commit review preferred. geom_zero pjd Pre-commit review preferred. sbin/geom pjd Pre-commit review preferred. -zfs pjd Pre-commit review preferred. -nfs alfred Will be happy to review code, but not mandatory. -rpc.lockd alfred Will be happy to review code, but not mandatory. -truss alfred Will be happy to review code, but not mandatory. -rpc alfred Pre-commit review requested. +zfs freebsd-fs@FreeBSD.org +nfs freebsd-fs@FreeBSD.org, rmacklem is best for reviews. linux emul emulation Please discuss changes here. bs{diff,patch} cperciva Pre-commit review requested. portsnap cperciva Pre-commit review requested. freebsd-update cperciva Pre-commit review requested. -openssl benl,jkim Pre-commit review requested. sys/netgraph/bluetooth emax Pre-commit review preferred. lib/libbluetooth emax Pre-commit review preferred. lib/libsdp emax Pre-commit review preferred. @@ -116,18 +149,8 @@ lib/libc/stdtime edwin Heads-up appreciated, since parts of this code is maintained by a third party source. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com -isci(4) jimharris Pre-commit review requested. cmx daniel@roe.ch Pre-commit review preferred. filemon obrien Pre-commit review preferred. sysdoc trhodes Pre-commit review preferred. -sh(1) jilles Pre-commit review requested. This also applies - to kill(1), printf(1) and test(1) which are - compiled in as builtins. -nvme(4) jimharris Pre-commit review requested. -nvd(4) jimharris Pre-commit review requested. -nvmecontrol(8) jimharris Pre-commit review requested. -release/release.sh gjb Pre-commit review and regression tests - requested. nanobsd imp Pre-commit review requested for coordination. vmm(4) neel,grehan Pre-commit review requested. -opencrypto jmg Pre-commit review requested. Documentation Required. Modified: soc2013/def/crashdump-head/Makefile ============================================================================== --- soc2013/def/crashdump-head/Makefile Wed Dec 2 11:11:58 2015 (r294758) +++ soc2013/def/crashdump-head/Makefile Wed Dec 2 12:51:27 2015 (r294759) @@ -99,9 +99,21 @@ # # For more information, see the build(7) manual page. # + +# This is included so CC is set to ccache for -V, and COMPILER_TYPE/VERSION +# can be cached for sub-makes. +.include + +# Note: we use this awkward construct to be compatible with FreeBSD's +# old make used in 10.0 and 9.2 and earlier. +.if defined(MK_DIRDEPS_BUILD) && ${MK_DIRDEPS_BUILD} == "yes" && !make(showconfig) +# targets/Makefile plays the role of top-level +.include "targets/Makefile" +.else + TGTS= all all-man buildenv buildenvvars buildkernel buildworld \ check-old check-old-dirs check-old-files check-old-libs \ - checkdpadd clean cleandepend cleandir \ + checkdpadd clean cleandepend cleandir cleanworld \ delete-old delete-old-dirs delete-old-files delete-old-libs \ depend distribute distributekernel distributekernel.debug \ distributeworld distrib-dirs distribution doxygen \ @@ -113,7 +125,7 @@ _worldtmp _legacy _bootstrap-tools _cleanobj _obj \ _build-tools _cross-tools _includes _libraries _depend \ build32 builddtb distribute32 install32 xdev xdev-build xdev-install \ - xdev-links native-xtools \ + xdev-links native-xtools installconfig \ TGTS+= ${SUBDIR_TARGETS} @@ -200,49 +212,11 @@ .endif # -# This 'cleanworld' target is not included in TGTS, because it is not a -# recursive target. All of the work for it is done right here. It is -# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be -# created by bsd.obj.mk, except that we don't want to .include that file -# in this makefile. -# -# 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 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. 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: -.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR} -.if exists(${BW_CANONICALOBJDIR}/) - -rm -rf ${BW_CANONICALOBJDIR}/* - -chflags -R 0 ${BW_CANONICALOBJDIR} - rm -rf ${BW_CANONICALOBJDIR}/* -.endif - # To be safe in this case, fall back to a 'make cleandir' - ${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir -.else - -rm -rf ${.OBJDIR}/* - -chflags -R 0 ${.OBJDIR} - rm -rf ${.OBJDIR}/* -.endif - -# # Handle the user-driven targets, using the source relative mk files. # -.if empty(.MAKEFLAGS:M-n) -# skip this for -n to avoid changing previous behavior of -# 'make -n buildworld' etc. -${TGTS}: .MAKE tinderbox toolchains kernel-toolchains: .MAKE -.endif - -${TGTS}: +${TGTS}: .PHONY .MAKE ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET} # The historic default "all" target creates files which may cause stale @@ -251,9 +225,9 @@ # if they want the historic behavior. .MAIN: _guard -_guard: +_guard: .PHONY @echo - @echo "Explicit target required (use \"all\" for historic behavior)" + @echo "Explicit target required. Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted. See build(7)." @echo @false @@ -349,21 +323,21 @@ @echo ">>> Building an up-to-date ${.TARGET}(1)" @echo "--------------------------------------------------------------" ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \ - ${MMAKE} obj && \ - ${MMAKE} depend && \ - ${MMAKE} all && \ + ${MMAKE} obj; \ + ${MMAKE} depend; \ + ${MMAKE} all; \ ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= tinderbox toolchains kernel-toolchains: upgrade_checks tinderbox: - @cd ${.CURDIR} && ${SUB_MAKE} DOING_TINDERBOX=YES universe + @cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe toolchains: - @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe + @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe kernel-toolchains: - @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe + @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe # # universe @@ -373,19 +347,10 @@ # existing system is. # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) -TARGETS?=amd64 arm i386 mips pc98 powerpc sparc64 -# XXX Add arm64 to universe only if we have an external binutils installed. -# It does not build with the in-tree linnker. -.if exists(/usr/local/aarch64-freebsd/bin/ld) -TARGETS+=arm64 -TARGET_ARCHES_arm64?= aarch64 -.else -universe: universe_arm64_skip -universe_epilogue: universe_arm64_skip -universe_arm64_skip: universe_prologue - @echo ">> arm64 skipped - install aarch64-binutils port or package to build" -.endif +TARGETS?=amd64 arm arm64 i386 mips pc98 powerpc sparc64 +_UNIVERSE_TARGETS= ${TARGETS} TARGET_ARCHES_arm?= arm armeb armv6 armv6hf +TARGET_ARCHES_arm64?= aarch64 TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 @@ -393,6 +358,16 @@ TARGET_ARCHES_${target}?= ${target} .endfor +# XXX Add arm64 to universe only if we have an external binutils installed. +# It does not build with the in-tree linker. +.if !exists(/usr/local/aarch64-freebsd/bin/ld) && empty(${TARGETS}) +_UNIVERSE_TARGETS:= ${_UNIVERSE_TARGETS:Narm64} +universe: universe_arm64_skip +universe_epilogue: universe_arm64_skip +universe_arm64_skip: universe_prologue + @echo ">> arm64 skipped - install aarch64-binutils port or package to build" +.endif + .if defined(UNIVERSE_TARGET) MAKE_JUST_WORLDS= YES .else @@ -400,7 +375,7 @@ .endif KERNSRCDIR?= ${.CURDIR}/sys -targets: +targets: .PHONY @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets" .for target in ${TARGETS} .for target_arch in ${TARGET_ARCHES_${target}} @@ -424,15 +399,18 @@ .if defined(DOING_TINDERBOX) @rm -f ${FAILFILE} .endif -.for target in ${TARGETS} +.for target in ${_UNIVERSE_TARGETS} universe: universe_${target} universe_epilogue: universe_${target} universe_${target}: universe_${target}_prologue universe_${target}_prologue: universe_prologue @echo ">> ${target} started on `LC_ALL=C date`" +universe_${target}_worlds: + .if !defined(MAKE_JUST_KERNELS) +universe_${target}_done: universe_${target}_worlds .for target_arch in ${TARGET_ARCHES_${target}} -universe_${target}: universe_${target}_${target_arch} +universe_${target}_worlds: universe_${target}_${target_arch} universe_${target}_${target_arch}: universe_${target}_prologue .MAKE @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`" @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ @@ -445,15 +423,11 @@ ${MAKEFAIL})) @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`" .endfor -.endif +.endif # !MAKE_JUST_KERNELS + .if !defined(MAKE_JUST_WORLDS) -# If we are building world and kernels wait for the required worlds to finish -.if !defined(MAKE_JUST_KERNELS) -.for target_arch in ${TARGET_ARCHES_${target}} -universe_${target}_kernels: universe_${target}_${target_arch} -.endfor -.endif -universe_${target}: universe_${target}_kernels +universe_${target}_done: universe_${target}_kernels +universe_${target}_kernels: universe_${target}_worlds universe_${target}_kernels: universe_${target}_prologue .MAKE .if exists(${KERNSRCDIR}/${target}/conf/NOTES) @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \ @@ -461,9 +435,13 @@ (echo "${target} 'make LINT' failed," \ "check _.${target}.makeLINT for details"| ${MAKEFAIL})) .endif - @cd ${.CURDIR} && ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \ + @cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \ universe_kernels -.endif +.endif # !MAKE_JUST_WORLDS + +# Tell the user the worlds and kernels have completed +universe_${target}: universe_${target}_done +universe_${target}_done: @echo ">> ${target} completed on `LC_ALL=C date`" .endfor universe_kernels: universe_kernconfs @@ -517,9 +495,25 @@ ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT .if defined(.PARSEDIR) +# This makefile does not run in meta mode +.MAKE.MODE= normal +# Normally the things we run from here don't either. +# Using -DWITH_META_MODE +# we can buildworld with meta files created which are useful +# for debugging, but without any of the rest of a meta mode build. +MK_DIRDEPS_BUILD= no +MK_STAGING= no +# tell meta.autodep.mk to not even think about updating anything. +UPDATE_DEPENDFILE= NO +.if !make(showconfig) +.export MK_DIRDEPS_BUILD MK_STAGING UPDATE_DEPENDFILE +.endif + .if make(universe) # we do not want a failure of one branch abort all. MAKE_JOB_ERROR_TOKEN= no .export MAKE_JOB_ERROR_TOKEN .endif -.endif +.endif # bmake + +.endif # DIRDEPS_BUILD Modified: soc2013/def/crashdump-head/ObsoleteFiles.inc ============================================================================== --- soc2013/def/crashdump-head/ObsoleteFiles.inc Wed Dec 2 11:11:58 2015 (r294758) +++ soc2013/def/crashdump-head/ObsoleteFiles.inc Wed Dec 2 12:51:27 2015 (r294759) @@ -38,6 +38,923 @@ # xargs -n1 | sort | uniq -d; # done +# 20151130: libelf moved from /usr/lib to /lib (libkvm dependency in r291406) +OLD_LIBS+=usr/lib/libelf.so.2 +# 20151115: Fox bad upgrade scheme +OLD_FILES+=usr/share/locale/zh_CN.GB18030/zh_Hans_CN.GB18030 +OLD_FILES+=usr/share/locale/zh_CN.GB2312/zh_Hans_CN.GB2312 +OLD_FILES+=usr/share/locale/zh_CN.GBK/zh_Hans_CN.GBK +OLD_FILES+=usr/share/locale/zh_CN.UTF-8/zh_Hans_CN.UTF-8 +OLD_FILES+=usr/share/locale/zh_CN.eucCN/zh_Hans_CN.eucCN +OLD_FILES+=usr/share/locale/zh_TW.Big5/zh_Hant_TW.Big5 +OLD_FILES+=usr/share/locale/zh_TW.UTF-8/zh_Hant_TW.UTF-8 +# 20151107: String collation improvements +OLD_FILES+=usr/share/locale/UTF-8/LC_CTYPE +OLD_DIRS+=usr/share/locale/UTF-8 +OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_COLLATE +OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_CTYPE +OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_MESSAGES +OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_MONETARY +OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_NUMERIC +OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_TIME +OLD_DIRS+=usr/share/locale/kk_KZ.PT154/ +OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_COLLATE +OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_CTYPE +OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_MESSAGES +OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_MONETARY +OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_NUMERIC +OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_TIME +OLD_DIRS+=usr/share/locale/kk_KZ.UTF-8 +OLD_FILES+=usr/share/locale/la_LN.ISO8859-1/LC_COLLATE +OLD_FILES+=usr/share/locale/la_LN.ISO8859-1/LC_CTYPE +OLD_FILES+=usr/share/locale/la_LN.ISO8859-1/LC_TIME +OLD_DIRS+=usr/share/locale/la_LN.ISO8859-1 +OLD_FILES+=usr/share/locale/la_LN.ISO8859-13/LC_COLLATE +OLD_FILES+=usr/share/locale/la_LN.ISO8859-13/LC_CTYPE +OLD_DIRS+=usr/share/locale/la_LN.ISO8859-13 +OLD_FILES+=usr/share/locale/la_LN.ISO8859-15/LC_COLLATE +OLD_FILES+=usr/share/locale/la_LN.ISO8859-15/LC_CTYPE +OLD_FILES+=usr/share/locale/la_LN.ISO8859-15/LC_TIME +OLD_DIRS+=usr/share/locale/la_LN.ISO8859-15 +OLD_FILES+=usr/share/locale/la_LN.ISO8859-2/LC_COLLATE +OLD_FILES+=usr/share/locale/la_LN.ISO8859-2/LC_CTYPE +OLD_FILES+=usr/share/locale/la_LN.ISO8859-2/LC_TIME +OLD_DIRS+=usr/share/locale/la_LN.ISO8859-2 +OLD_FILES+=usr/share/locale/la_LN.ISO8859-4/LC_COLLATE +OLD_FILES+=usr/share/locale/la_LN.ISO8859-4/LC_CTYPE +OLD_FILES+=usr/share/locale/la_LN.ISO8859-4/LC_TIME +OLD_DIRS+=usr/share/locale/la_LN.ISO8859-4 +OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_COLLATE +OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_CTYPE +OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_TIME +OLD_DIRS+=usr/share/locale/la_LN.US-ASCII +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_TIME +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_COLLATE +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_MONETARY +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_CTYPE +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_NUMERIC +OLD_DIRS+=usr/share/locale/lt_LT.ISO8859-4 +OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_COLLATE +OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_CTYPE +OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_MESSAGES +OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_MONETARY +OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_NUMERIC +OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_TIME +OLD_DIRS+=usr/share/locale/mn_MN.UTF-8 +OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_COLLATE +OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_CTYPE +OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES +OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_MONETARY +OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_NUMERIC +OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_TIME +OLD_DIRS+=usr/share/locale/no_NO.ISO8859-1 +OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_COLLATE +OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_CTYPE +OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES +OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_MONETARY +OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_NUMERIC +OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_TIME +OLD_DIRS+=usr/share/locale/no_NO.ISO8859-15 +OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_COLLATE +OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_CTYPE +OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_MESSAGES +OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_MONETARY +OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_NUMERIC +OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_TIME +OLD_DIRS+=usr/share/locale/no_NO.UTF-8 +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_COLLATE +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_TIME +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_CTYPE +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_MESSAGES +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_NUMERIC +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_MONETARY +OLD_DIRS+=usr/share/locale/sr_YU.ISO8859-2 +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_COLLATE +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_MONETARY +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_NUMERIC +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_CTYPE +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_TIME +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_MESSAGES +OLD_DIRS+=usr/share/locale/sr_YU.ISO8859-5 +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_COLLATE +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_MONETARY +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_CTYPE +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_TIME +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_NUMERIC +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_MESSAGES +OLD_DIRS+=usr/share/locale/sr_YU.UTF-8 +# 20151101: added missing _test suffix on multiple tests in lib/libc +OLD_FILES+=usr/tests/lib/libc/c063/faccessat +OLD_FILES+=usr/tests/lib/libc/c063/fchmodat +OLD_FILES+=usr/tests/lib/libc/c063/fchownat +OLD_FILES+=usr/tests/lib/libc/c063/fexecve +OLD_FILES+=usr/tests/lib/libc/c063/fstatat +OLD_FILES+=usr/tests/lib/libc/c063/linkat +OLD_FILES+=usr/tests/lib/libc/c063/mkdirat +OLD_FILES+=usr/tests/lib/libc/c063/mkfifoat +OLD_FILES+=usr/tests/lib/libc/c063/mknodat +OLD_FILES+=usr/tests/lib/libc/c063/openat +OLD_FILES+=usr/tests/lib/libc/c063/readlinkat +OLD_FILES+=usr/tests/lib/libc/c063/renameat +OLD_FILES+=usr/tests/lib/libc/c063/symlinkat +OLD_FILES+=usr/tests/lib/libc/c063/unlinkat +OLD_FILES+=usr/tests/lib/libc/c063/utimensat +OLD_FILES+=usr/tests/lib/libc/string/memchr +OLD_FILES+=usr/tests/lib/libc/string/memcpy +OLD_FILES+=usr/tests/lib/libc/string/memmem +OLD_FILES+=usr/tests/lib/libc/string/memset +OLD_FILES+=usr/tests/lib/libc/string/strcat +OLD_FILES+=usr/tests/lib/libc/string/strchr +OLD_FILES+=usr/tests/lib/libc/string/strcmp +OLD_FILES+=usr/tests/lib/libc/string/strcpy +OLD_FILES+=usr/tests/lib/libc/string/strcspn +OLD_FILES+=usr/tests/lib/libc/string/strerror +OLD_FILES+=usr/tests/lib/libc/string/strlen +OLD_FILES+=usr/tests/lib/libc/string/strpbrk +OLD_FILES+=usr/tests/lib/libc/string/strrchr +OLD_FILES+=usr/tests/lib/libc/string/strspn +OLD_FILES+=usr/tests/lib/libc/string/swab +# 20151101: 430.status-rwho was renamed to 430.status-uptime +OLD_FILES+=etc/periodic/daily/430.status-rwho +# 20151030: OpenSSL 1.0.2d import +OLD_FILES+=usr/share/openssl/man/man3/CMS_set1_signer_certs.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_ctrl.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_ctrl_str.3.gz +OLD_FILES+=usr/share/openssl/man/man3/d2i_509_CRL_fp.3.gz +OLD_LIBS+=lib/libcrypto.so.7 +OLD_LIBS+=usr/lib/libssl.so.7 +OLD_LIBS+=usr/lib32/libcrypto.so.7 +OLD_LIBS+=usr/lib32/libssl.so.7 +# 20151015: test symbols moved to /usr/lib/debug +OLD_DIRS+=usr/tests/lib/atf/libatf-c++/.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/atf_c++_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/build_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/check_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/config_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/macros_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/tests_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/utils_test.debug +OLD_DIRS+=usr/tests/lib/atf/libatf-c++/detail/.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/application_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/env_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/exceptions_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/fs_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/process_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/sanity_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/text_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/version_helper.debug +OLD_DIRS+=usr/tests/lib/atf/libatf-c/.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/atf_c_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/build_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/check_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/config_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/error_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/macros_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/tc_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/tp_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/utils_test.debug +OLD_DIRS+=usr/tests/lib/atf/libatf-c/detail/.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/dynstr_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/env_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/fs_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/list_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/map_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/process_helpers.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/process_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/sanity_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/text_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/user_test.debug +OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/version_helper.debug +OLD_DIRS+=usr/tests/lib/atf/test-programs/.debug +OLD_FILES+=usr/tests/lib/atf/test-programs/.debug/c_helpers.debug +OLD_FILES+=usr/tests/lib/atf/test-programs/.debug/cpp_helpers.debug +OLD_DIRS+=usr/tests/lib/libc/c063/.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/faccessat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/fchmodat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/fchownat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/fexecve.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/fstatat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/linkat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/mkdirat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/mkfifoat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/mknodat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/openat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/readlinkat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/renameat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/symlinkat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/unlinkat.debug +OLD_FILES+=usr/tests/lib/libc/c063/.debug/utimensat.debug +OLD_DIRS+=usr/tests/lib/libc/db/.debug +OLD_FILES+=usr/tests/lib/libc/db/.debug/h_db.debug +OLD_DIRS+=usr/tests/lib/libc/gen/.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/alarm_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/arc4random_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/assert_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/basedirname_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/dir_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/floatunditf_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/fnmatch_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/fpclassify2_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/fpclassify_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/fpsetmask_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/fpsetround_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/ftok_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/getcwd_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/getgrent_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/glob_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/humanize_number_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/isnan_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/nice_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/pause_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/raise_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/realpath_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/setdomainname_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/sethostname_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/sleep_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/syslog_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/time_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/ttyname_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/.debug/vis_test.debug +OLD_DIRS+=usr/tests/lib/libc/gen/execve/.debug +OLD_FILES+=usr/tests/lib/libc/gen/execve/.debug/execve_test.debug +OLD_DIRS+=usr/tests/lib/libc/gen/posix_spawn/.debug +OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/fileactions_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/h_fileactions.debug +OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/h_spawn.debug +OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/h_spawnattr.debug +OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/spawn_test.debug +OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/spawnattr_test.debug +OLD_DIRS+=usr/tests/lib/libc/hash/.debug +OLD_FILES+=usr/tests/lib/libc/hash/.debug/h_hash.debug +OLD_FILES+=usr/tests/lib/libc/hash/.debug/sha2_test.debug +OLD_DIRS+=usr/tests/lib/libc/inet/.debug +OLD_FILES+=usr/tests/lib/libc/inet/.debug/inet_network_test.debug +OLD_DIRS+=usr/tests/lib/libc/locale/.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/io_test.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/mbrtowc_test.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/mbsnrtowcs_test.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/mbstowcs_test.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/mbtowc_test.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/wcscspn_test.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/wcspbrk_test.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/wcsspn_test.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/wcstod_test.debug +OLD_FILES+=usr/tests/lib/libc/locale/.debug/wctomb_test.debug +OLD_DIRS+=usr/tests/lib/libc/net/.debug +OLD_FILES+=usr/tests/lib/libc/net/.debug/ether_aton_test.debug +OLD_FILES+=usr/tests/lib/libc/net/.debug/getprotoent_test.debug +OLD_FILES+=usr/tests/lib/libc/net/.debug/h_dns_server.debug +OLD_FILES+=usr/tests/lib/libc/net/.debug/h_nsd_recurse.debug +OLD_FILES+=usr/tests/lib/libc/net/.debug/h_protoent.debug +OLD_FILES+=usr/tests/lib/libc/net/.debug/h_servent.debug +OLD_DIRS+=usr/tests/lib/libc/regex/.debug +OLD_FILES+=usr/tests/lib/libc/regex/.debug/exhaust_test.debug +OLD_FILES+=usr/tests/lib/libc/regex/.debug/h_regex.debug +OLD_FILES+=usr/tests/lib/libc/regex/.debug/regex_att_test.debug +OLD_DIRS+=usr/tests/lib/libc/ssp/.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_fgets.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_getcwd.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_gets.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_memcpy.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_memmove.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_memset.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_raw.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_read.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_readlink.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_snprintf.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_sprintf.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_stpcpy.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_stpncpy.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_strcat.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_strcpy.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_strncat.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_strncpy.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_vsnprintf.debug +OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_vsprintf.debug +OLD_DIRS+=usr/tests/lib/libc/stdio/.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/clearerr_test.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fflush_test.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fmemopen2_test.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fmemopen_test.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fopen_test.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fputc_test.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/mktemp_test.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/popen_test.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/printf_test.debug +OLD_FILES+=usr/tests/lib/libc/stdio/.debug/scanf_test.debug +OLD_DIRS+=usr/tests/lib/libc/stdlib/.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/abs_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/atoi_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/div_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/exit_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/getenv_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/h_getopt.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/h_getopt_long.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/hsearch_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/posix_memalign_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/random_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/strtod_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/strtol_test.debug +OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/system_test.debug +OLD_DIRS+=usr/tests/lib/libc/string/.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/memchr.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/memcpy.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/memmem.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/memset.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strcat.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strchr.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strcmp.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strcpy.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strcspn.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strerror.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strlen.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strpbrk.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strrchr.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/strspn.debug +OLD_FILES+=usr/tests/lib/libc/string/.debug/swab.debug +OLD_DIRS+=usr/tests/lib/libc/sys/.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/access_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/chroot_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/clock_gettime_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/connect_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/dup_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/fsync_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/getcontext_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/getgroups_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/getitimer_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/getlogin_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/getpid_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/getrusage_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/getsid_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/gettimeofday_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/issetugid_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/kevent_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/kill_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/link_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/listen_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/mincore_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/mkdir_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/mkfifo_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/mknod_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/mlock_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/mmap_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/mprotect_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/msgctl_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/msgget_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/msgrcv_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/msgsnd_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/msync_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/nanosleep_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/pipe2_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/pipe_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/poll_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/revoke_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/select_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/setrlimit_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/setuid_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/sigaction_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/sigqueue_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/sigtimedwait_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/socketpair_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/stat_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/timer_create_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/truncate_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/ucontext_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/umask_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/unlink_test.debug +OLD_FILES+=usr/tests/lib/libc/sys/.debug/write_test.debug +OLD_DIRS+=usr/tests/lib/libc/termios/.debug +OLD_FILES+=usr/tests/lib/libc/termios/.debug/tcsetpgrp_test.debug +OLD_DIRS+=usr/tests/lib/libc/tls/.debug +OLD_FILES+=usr/tests/lib/libc/tls/.debug/h_tls_dlopen.so.debug +OLD_FILES+=usr/tests/lib/libc/tls/.debug/libh_tls_dynamic.so.1.debug +OLD_FILES+=usr/tests/lib/libc/tls/.debug/tls_dlopen_test.debug +OLD_FILES+=usr/tests/lib/libc/tls/.debug/tls_dynamic_test.debug +OLD_DIRS+=usr/tests/lib/libc/ttyio/.debug +OLD_FILES+=usr/tests/lib/libc/ttyio/.debug/ttyio_test.debug +OLD_DIRS+=usr/tests/lib/libcrypt/.debug +OLD_FILES+=usr/tests/lib/libcrypt/.debug/crypt_tests.debug +OLD_DIRS+=usr/tests/lib/libmp/.debug +OLD_FILES+=usr/tests/lib/libmp/.debug/legacy_test.debug +OLD_DIRS+=usr/tests/lib/libnv/.debug +OLD_FILES+=usr/tests/lib/libnv/.debug/dnv_tests.debug +OLD_FILES+=usr/tests/lib/libnv/.debug/nv_array_tests.debug +OLD_FILES+=usr/tests/lib/libnv/.debug/nv_tests.debug +OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_add_test.debug +OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_exists_test.debug +OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_free_test.debug +OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_get_test.debug +OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_move_test.debug +OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_send_recv_test.debug +OLD_DIRS+=usr/tests/lib/libpam/.debug +OLD_FILES+=usr/tests/lib/libpam/.debug/t_openpam_ctype.debug +OLD_FILES+=usr/tests/lib/libpam/.debug/t_openpam_readlinev.debug +OLD_FILES+=usr/tests/lib/libpam/.debug/t_openpam_readword.debug +OLD_DIRS+=usr/tests/lib/libproc/.debug +OLD_FILES+=usr/tests/lib/libproc/.debug/proc_test.debug +OLD_FILES+=usr/tests/lib/libproc/.debug/target_prog.debug +OLD_DIRS+=usr/tests/lib/librt/.debug +OLD_FILES+=usr/tests/lib/librt/.debug/sched_test.debug +OLD_FILES+=usr/tests/lib/librt/.debug/sem_test.debug +OLD_DIRS+=usr/tests/lib/libthr/.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/barrier_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/cond_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/condwait_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/detach_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/equal_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/fork_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/fpu_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/h_atexit.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/h_cancel.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/h_exit.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/h_resolv.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/join_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/kill_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/mutex_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/once_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/preempt_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/rwlock_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/sem_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/siglongjmp_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/sigmask_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/sigsuspend_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/sleep_test.debug +OLD_FILES+=usr/tests/lib/libthr/.debug/swapcontext_test.debug +OLD_DIRS+=usr/tests/lib/libthr/dlopen/.debug +OLD_FILES+=usr/tests/lib/libthr/dlopen/.debug/dlopen_test.debug +OLD_FILES+=usr/tests/lib/libthr/dlopen/.debug/h_pthread_dlopen.so.1.debug +OLD_FILES+=usr/tests/lib/libthr/dlopen/.debug/main_pthread_create_test.debug +OLD_DIRS+=usr/tests/lib/libutil/.debug +OLD_FILES+=usr/tests/lib/libutil/.debug/flopen_test.debug +OLD_FILES+=usr/tests/lib/libutil/.debug/grp_test.debug +OLD_FILES+=usr/tests/lib/libutil/.debug/humanize_number_test.debug +OLD_FILES+=usr/tests/lib/libutil/.debug/pidfile_test.debug +OLD_FILES+=usr/tests/lib/libutil/.debug/trimdomain-nodomain_test.debug +OLD_FILES+=usr/tests/lib/libutil/.debug/trimdomain_test.debug +OLD_DIRS+=usr/tests/lib/libxo/.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/libenc_test.so.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_01.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_02.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_03.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_04.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_05.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_06.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_07.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_08.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_09.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_10.debug +OLD_FILES+=usr/tests/lib/libxo/.debug/test_11.debug +OLD_DIRS+=usr/tests/lib/msun/.debug +OLD_FILES+=usr/tests/lib/msun/.debug/acos_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/asin_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/atan_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/cbrt_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/ceil_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/cos_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/cosh_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/erf_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/exp_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/fmod_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/infinity_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/ldexp_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/log_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/pow_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/precision_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/round_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/scalbn_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/sin_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/sinh_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/sqrt_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/tan_test.debug +OLD_FILES+=usr/tests/lib/msun/.debug/tanh_test.debug +OLD_DIRS+=usr/tests/libexec/rtld-elf/.debug +OLD_FILES+=usr/tests/libexec/rtld-elf/.debug/ld_library_pathfds.debug +OLD_FILES+=usr/tests/libexec/rtld-elf/.debug/libpythagoras.so.0.debug +OLD_FILES+=usr/tests/libexec/rtld-elf/.debug/target.debug +OLD_DIRS+=usr/tests/sbin/devd/.debug +OLD_FILES+=usr/tests/sbin/devd/.debug/client_test.debug +OLD_DIRS+=usr/tests/sbin/dhclient/.debug +OLD_FILES+=usr/tests/sbin/dhclient/.debug/option-domain-search_test.debug +OLD_DIRS+=usr/tests/share/examples/tests/atf/.debug +OLD_FILES+=usr/tests/share/examples/tests/atf/.debug/printf_test.debug +OLD_DIRS+=usr/tests/share/examples/tests/plain/.debug +OLD_FILES+=usr/tests/share/examples/tests/plain/.debug/printf_test.debug +OLD_DIRS+=usr/tests/sys/aio/.debug +OLD_FILES+=usr/tests/sys/aio/.debug/aio_kqueue_test.debug +OLD_FILES+=usr/tests/sys/aio/.debug/aio_test.debug +OLD_FILES+=usr/tests/sys/aio/.debug/lio_kqueue_test.debug +OLD_DIRS+=usr/tests/sys/fifo/.debug +OLD_FILES+=usr/tests/sys/fifo/.debug/fifo_create.debug +OLD_FILES+=usr/tests/sys/fifo/.debug/fifo_io.debug +OLD_FILES+=usr/tests/sys/fifo/.debug/fifo_misc.debug +OLD_FILES+=usr/tests/sys/fifo/.debug/fifo_open.debug +OLD_DIRS+=usr/tests/sys/file/.debug +OLD_FILES+=usr/tests/sys/file/.debug/closefrom_test.debug +OLD_FILES+=usr/tests/sys/file/.debug/dup_test.debug +OLD_FILES+=usr/tests/sys/file/.debug/fcntlflags_test.debug +OLD_FILES+=usr/tests/sys/file/.debug/flock_helper.debug +OLD_FILES+=usr/tests/sys/file/.debug/ftruncate_test.debug +OLD_FILES+=usr/tests/sys/file/.debug/newfileops_on_fork_test.debug +OLD_DIRS+=usr/tests/sys/kern/.debug +OLD_FILES+=usr/tests/sys/kern/.debug/kern_descrip_test.debug +OLD_FILES+=usr/tests/sys/kern/.debug/ptrace_test.debug +OLD_FILES+=usr/tests/sys/kern/.debug/unix_seqpacket_test.debug +OLD_DIRS+=usr/tests/sys/kern/execve/.debug +OLD_FILES+=usr/tests/sys/kern/execve/.debug/execve_helper.debug +OLD_FILES+=usr/tests/sys/kern/execve/.debug/good_aout.debug +OLD_DIRS+=usr/tests/sys/kqueue/.debug +OLD_FILES+=usr/tests/sys/kqueue/.debug/kqtest.debug +OLD_DIRS+=usr/tests/sys/mqueue/.debug +OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest1.debug +OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest2.debug +OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest3.debug +OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest4.debug +OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest5.debug +OLD_DIRS+=usr/tests/sys/netinet/.debug +OLD_FILES+=usr/tests/sys/netinet/.debug/udp_dontroute.debug +OLD_DIRS+=usr/tests/sys/pjdfstest/.debug +OLD_FILES+=usr/tests/sys/pjdfstest/.debug/pjdfstest.debug +OLD_DIRS+=usr/tests/sys/vm/.debug +OLD_FILES+=usr/tests/sys/vm/.debug/mmap_test.debug +# 20151015: Rename files due to file-installed-as-dir bug +OLD_FILES+=usr/share/doc/legal/realtek +OLD_FILES+=usr/share/doc/legal/realtek/LICENSE +OLD_DIRS+=usr/share/doc/legal/realtek +OLD_DIRS+=usr/share/doc/legal/intel_ipw +OLD_FILES+=usr/share/doc/legal/intel_ipw/LICENSE +OLD_FILES+=usr/share/doc/legal/intel_iwn +OLD_FILES+=usr/share/doc/legal/intel_iwn/LICENSE +OLD_DIRS+=usr/share/doc/legal/intel_iwn +OLD_DIRS+=usr/share/doc/legal/intel_iwi +OLD_FILES+=usr/share/doc/legal/intel_iwi/LICENSE +OLD_DIRS+=usr/share/doc/legal/intel_wpi +OLD_FILES+=usr/share/doc/legal/intel_wpi/LICENSE +# 20151006: new libc++ import +OLD_FILES+=usr/include/c++/__tuple_03 +OLD_FILES+=usr/include/c++/v1/__tuple_03 +OLD_FILES+=usr/include/c++/v1/tr1/__tuple_03 +# 20151006: new clang import which bumps version from 3.6.1 to 3.7.0. +OLD_FILES+=usr/lib/clang/3.6.1/include/__stddef_max_align_t.h +OLD_FILES+=usr/lib/clang/3.6.1/include/__wmmintrin_aes.h +OLD_FILES+=usr/lib/clang/3.6.1/include/__wmmintrin_pclmul.h +OLD_FILES+=usr/lib/clang/3.6.1/include/adxintrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/altivec.h +OLD_FILES+=usr/lib/clang/3.6.1/include/ammintrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/arm_acle.h +OLD_FILES+=usr/lib/clang/3.6.1/include/arm_neon.h +OLD_FILES+=usr/lib/clang/3.6.1/include/avx2intrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/avx512bwintrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/avx512erintrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/avx512fintrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/avx512vlbwintrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/avx512vlintrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/avxintrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/bmi2intrin.h +OLD_FILES+=usr/lib/clang/3.6.1/include/bmiintrin.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***