From owner-svn-src-projects@freebsd.org Sun Oct 7 09:06:22 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2069C10B9426 for ; Sun, 7 Oct 2018 09:06:22 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-it1-f194.google.com (mail-it1-f194.google.com [209.85.166.194]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BB15B7B422; Sun, 7 Oct 2018 09:06:21 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by mail-it1-f194.google.com with SMTP id w200-v6so8181335itc.4; Sun, 07 Oct 2018 02:06:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=qRhpRfs3Gi88X7LGBe3mP6utf8vD+EA/7AK5C60vNXY=; b=CWqfPeuxcFZmHrc1rBaHnpATRVMPPcwzxpvATYh4KEHa00+R4na7mnoCq7qwnkB8pN VnCRhGM2/dDpCkqmwoTXQ+WfSrDatCShLzJ7iA4bpGUldpLmXExHFfnbi60Wsu50/nBV 4GVizMz4liJBoyUp1FEovRjU4mMGSk52ahbmZaPqIjeFgK5tbM6PBMA+dw45+1wTZckO rkysu5RPEJJL7WvUxS+kGaptihNCZxDyJegITElcxBAAJ+NJFHAqRUhJgkBeVKgvK6Uu U3BEIH5q7zOw21XgDeehnsBMyMVGqjdpmliscQtlRyKU36HXK7qvKFiqVwhO6uhre8wF em6w== X-Gm-Message-State: ABuFfohAGXYczqnaOppw9EfnLLLtPny+I+WVY3izcYIhSAjGU1T8H9TY i2TpRwCyEWk9C/8PEgm3209YjK630pQ5cXrcysBd0A== X-Google-Smtp-Source: ACcGV60XS1wmiFSC6Ut754KtD5rCmkXAXtffTtwrx1ed0y650IxjvM/fhBlept9Lf+655mdw8AG5PnEI/UBMK5Zh4MU= X-Received: by 2002:a24:5f15:: with SMTP id r21-v6mr13117438itb.6.1538902689057; Sun, 07 Oct 2018 01:58:09 -0700 (PDT) MIME-Version: 1.0 References: <201808171626.w7HGQ0Sp020544@repo.freebsd.org> In-Reply-To: <201808171626.w7HGQ0Sp020544@repo.freebsd.org> From: Antoine Brodin Date: Sun, 7 Oct 2018 10:57:57 +0200 Message-ID: Subject: Re: svn commit: r337979 - projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Targets To: Dimitry Andric Cc: src-committers , svn-src-projects@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2018 09:06:22 -0000 On Fri, Aug 17, 2018 at 6:26 PM Dimitry Andric wrote: > Author: dim > Date: Fri Aug 17 16:25:59 2018 > New Revision: 337979 > URL: https://svnweb.freebsd.org/changeset/base/337979 > > Log: > For now, revert upstream clang r323281 (by Wei Mi): > > Adjust MaxAtomicInlineWidth for i386/i486 targets. > > This is to fix the bug reported in > https://bugs.llvm.org/show_bug.cgi?id=34347#c6. Currently, all > MaxAtomicInlineWidth of x86-32 targets are set to 64. However, i386 > doesn't support any cmpxchg related instructions. i486 only supports > cmpxchg. So in this patch MaxAtomicInlineWidth is reset as follows: > For i386, the MaxAtomicInlineWidth should be 0 because no cmpxchg is > supported. For i486, the MaxAtomicInlineWidth should be 32 because > it supports cmpxchg. For others 32 bits x86 cpu, the > MaxAtomicInlineWidth should be 64 because of cmpxchg8b. > > Differential Revision: https://reviews.llvm.org/D42154 > > This should fix buildworld on i386, because of our system libraries > missing __atomic_load_8, and possibly other 64 bit atomic functions, for > that architecture. > > We should really fix that at some point, but since we have been actually > using cmpxchg8b for years now, it does not seem to matter much... Hi, Is it possible to backport something similar on stable/11 and maybe do an EN for 11.2? Antoine > Modified: > projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Targets/X86.h > > Modified: projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Targets/X86.h > ============================================================================== > --- projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Targets/X86.h Fri Aug 17 16:19:47 2018 (r337978) > +++ projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Targets/X86.h Fri Aug 17 16:25:59 2018 (r337979) > @@ -350,11 +350,9 @@ class LLVM_LIBRARY_VISIBILITY X86_32TargetInfo : publi > (1 << TargetInfo::LongDouble)); > > // x86-32 has atomics up to 8 bytes > - CPUKind Kind = getCPUKind(Opts.CPU); > - if (Kind >= CK_i586 || Kind == CK_Generic) > - MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 64; > - else if (Kind >= CK_i486) > - MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 32; > + // FIXME: Check that we actually have cmpxchg8b before setting > + // MaxAtomicInlineWidth. (cmpxchg8b is an i586 instruction.) > + MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 64; > } > > BuiltinVaListKind getBuiltinVaListKind() const override { > From owner-svn-src-projects@freebsd.org Sun Oct 7 09:21:41 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21EF810B9B95 for ; Sun, 7 Oct 2018 09:21:41 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "tensor.andric.com", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B5C2C7BDD9; Sun, 7 Oct 2018 09:21:40 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from coleburn.home.andric.com (coleburn.home.andric.com [192.168.0.15]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 7CA675B95A; Sun, 7 Oct 2018 11:21:31 +0200 (CEST) From: Dimitry Andric Message-Id: Content-Type: multipart/signed; boundary="Apple-Mail=_8D1B162B-12B0-484C-9C23-AC8514586B97"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 11.5 \(3445.9.1\)) Subject: Re: svn commit: r337979 - projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Targets Date: Sun, 7 Oct 2018 11:21:27 +0200 In-Reply-To: Cc: src-committers , svn-src-projects@freebsd.org To: Antoine Brodin References: <201808171626.w7HGQ0Sp020544@repo.freebsd.org> X-Mailer: Apple Mail (2.3445.9.1) X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2018 09:21:41 -0000 --Apple-Mail=_8D1B162B-12B0-484C-9C23-AC8514586B97 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii On 7 Oct 2018, at 10:57, Antoine Brodin wrote: > > On Fri, Aug 17, 2018 at 6:26 PM Dimitry Andric wrote: >> Author: dim >> Date: Fri Aug 17 16:25:59 2018 >> New Revision: 337979 >> URL: https://svnweb.freebsd.org/changeset/base/337979 >> >> Log: >> For now, revert upstream clang r323281 (by Wei Mi): >> >> Adjust MaxAtomicInlineWidth for i386/i486 targets. >> >> This is to fix the bug reported in >> https://bugs.llvm.org/show_bug.cgi?id=34347#c6. Currently, all >> MaxAtomicInlineWidth of x86-32 targets are set to 64. However, i386 >> doesn't support any cmpxchg related instructions. i486 only supports >> cmpxchg. So in this patch MaxAtomicInlineWidth is reset as follows: >> For i386, the MaxAtomicInlineWidth should be 0 because no cmpxchg is >> supported. For i486, the MaxAtomicInlineWidth should be 32 because >> it supports cmpxchg. For others 32 bits x86 cpu, the >> MaxAtomicInlineWidth should be 64 because of cmpxchg8b. >> >> Differential Revision: https://reviews.llvm.org/D42154 >> >> This should fix buildworld on i386, because of our system libraries >> missing __atomic_load_8, and possibly other 64 bit atomic functions, for >> that architecture. >> >> We should really fix that at some point, but since we have been actually >> using cmpxchg8b for years now, it does not seem to matter much... > > Hi, > > Is it possible to backport something similar on stable/11 and maybe do > an EN for 11.2? The change I reverted here was made after 6.0, so there is no need to revert in stable/11. It doesn't change the fact that we don't have 64 bit atomic support at all for i386, so this is going to keep on being an issue. In my opinion, the best solution would be to stop pretending we support "real" i486 CPUs, and raise the minimum CPU to at least i586 (but going directly towards i386-with-SSE would even be better!). -Dimitry --Apple-Mail=_8D1B162B-12B0-484C-9C23-AC8514586B97 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.2 iF0EARECAB0WIQR6tGLSzjX8bUI5T82wXqMKLiCWowUCW7nQFwAKCRCwXqMKLiCW o0eJAJ45sOYQsc0+BZwjJRhQ+n7WP4GG2gCeNl1RRKOcjsdF0Qs5fiOLfGr/Pxg= =Ry5k -----END PGP SIGNATURE----- --Apple-Mail=_8D1B162B-12B0-484C-9C23-AC8514586B97-- From owner-svn-src-projects@freebsd.org Mon Oct 8 15:16:05 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1891D10C25BC for ; Mon, 8 Oct 2018 15:16:05 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C08A38EAC3; Mon, 8 Oct 2018 15:16:04 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B741624428; Mon, 8 Oct 2018 15:16:04 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w98FG4Dp097052; Mon, 8 Oct 2018 15:16:04 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w98FG4kV097051; Mon, 8 Oct 2018 15:16:04 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201810081516.w98FG4kV097051@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Mon, 8 Oct 2018 15:16:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339236 - projects/openssl111/contrib/serf X-SVN-Group: projects X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: projects/openssl111/contrib/serf X-SVN-Commit-Revision: 339236 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2018 15:16:05 -0000 Author: gjb Date: Mon Oct 8 15:16:04 2018 New Revision: 339236 URL: https://svnweb.freebsd.org/changeset/base/339236 Log: MFV r339226 (peter): Record merge of serf-1.3.9. Sponsored by: The FreeBSD Foundation Added: projects/openssl111/contrib/serf/STATUS - copied unchanged from r339226, vendor/serf/dist/STATUS Modified: Directory Properties: projects/openssl111/contrib/serf/ (props changed) Copied: projects/openssl111/contrib/serf/STATUS (from r339226, vendor/serf/dist/STATUS) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/openssl111/contrib/serf/STATUS Mon Oct 8 15:16:04 2018 (r339236, copy of r339226, vendor/serf/dist/STATUS) @@ -0,0 +1,19 @@ + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * * + * THIS RELEASE STREAM IS OPEN TO BUG FIXES. * + * * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + +This file tracks the status of releases in the 1.3.x line. + +Status of 1.3.9: + +Candidate changes: +================== + +Veto-blocked changes: +===================== + +Approved changes: +================= + From owner-svn-src-projects@freebsd.org Mon Oct 8 18:06:46 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 831CE10C6C2B for ; Mon, 8 Oct 2018 18:06:46 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3394074F94; Mon, 8 Oct 2018 18:06:46 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1443426048; Mon, 8 Oct 2018 18:06:46 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w98I6kbS084652; Mon, 8 Oct 2018 18:06:46 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w98I6ebr084624; Mon, 8 Oct 2018 18:06:40 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201810081806.w98I6ebr084624@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Mon, 8 Oct 2018 18:06:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339240 - in projects/openssl111: . crypto/openssh lib/libc/amd64/string sbin/init stand/defaults stand/lua sys/amd64/conf sys/arm64/conf sys/cddl/contrib/opensolaris/uts/common/fs/zfs ... X-SVN-Group: projects X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in projects/openssl111: . crypto/openssh lib/libc/amd64/string sbin/init stand/defaults stand/lua sys/amd64/conf sys/arm64/conf sys/cddl/contrib/opensolaris/uts/common/fs/zfs sys/dev/e1000 sys/dev/mlx... X-SVN-Commit-Revision: 339240 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2018 18:06:46 -0000 Author: gjb Date: Mon Oct 8 18:06:40 2018 New Revision: 339240 URL: https://svnweb.freebsd.org/changeset/base/339240 Log: MFH r339206-r339212, r339215-r339239 Sponsored by: The FreeBSD Foundation Modified: projects/openssl111/UPDATING projects/openssl111/crypto/openssh/auth2.c projects/openssl111/crypto/openssh/monitor.c projects/openssl111/crypto/openssh/monitor.h projects/openssl111/crypto/openssh/monitor_wrap.c projects/openssl111/crypto/openssh/monitor_wrap.h projects/openssl111/crypto/openssh/sandbox-capsicum.c projects/openssl111/crypto/openssh/sshbuf-getput-basic.c projects/openssl111/crypto/openssh/sshbuf.h projects/openssl111/crypto/openssh/sshd.c projects/openssl111/lib/libc/amd64/string/memset.S projects/openssl111/sbin/init/rc.conf projects/openssl111/stand/defaults/loader.conf projects/openssl111/stand/defaults/loader.conf.5 projects/openssl111/stand/lua/config.lua projects/openssl111/stand/lua/core.lua projects/openssl111/sys/amd64/conf/GENERIC projects/openssl111/sys/amd64/conf/GENERIC-MMCCAM projects/openssl111/sys/arm64/conf/GENERIC projects/openssl111/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/openssl111/sys/dev/e1000/if_em.c projects/openssl111/sys/dev/e1000/igb_txrx.c projects/openssl111/sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c projects/openssl111/sys/i386/conf/GENERIC projects/openssl111/sys/kern/kern_jail.c projects/openssl111/sys/netinet/ip_output.c projects/openssl111/sys/netinet/sctp_output.c projects/openssl111/sys/powerpc/conf/GENERIC projects/openssl111/sys/powerpc/conf/GENERIC64 projects/openssl111/sys/powerpc/powernv/opal_pci.c projects/openssl111/sys/powerpc/pseries/xics.c projects/openssl111/usr.bin/truss/syscalls.c Directory Properties: projects/openssl111/ (props changed) projects/openssl111/crypto/openssh/ (props changed) projects/openssl111/sys/cddl/contrib/opensolaris/ (props changed) Modified: projects/openssl111/UPDATING ============================================================================== --- projects/openssl111/UPDATING Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/UPDATING Mon Oct 8 18:06:40 2018 (r339240) @@ -31,6 +31,13 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 12.x IS SLOW: disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20181006: + The legacy DRM modules and drivers have now been added to the loader's + module blacklist, in favor of loading them with kld_list in rc.conf(5). + The module blacklist may be overridden with the loader.conf(5) + 'module_blacklist' variable, but loading them via rc.conf(5) is strongly + encouraged. + 20181002: The cam(4) based nda(4) driver will be used over nvd(4) by default on powerpc64. You may set 'options NVME_USE_NVD=1' in your kernel conf or Modified: projects/openssl111/crypto/openssh/auth2.c ============================================================================== --- projects/openssl111/crypto/openssh/auth2.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/crypto/openssh/auth2.c Mon Oct 8 18:06:40 2018 (r339240) @@ -316,7 +316,7 @@ input_userauth_request(int type, u_int32_t seq, struct #ifdef HAVE_LOGIN_CAP if (authctxt->pw != NULL && - (lc = login_getpwclass(authctxt->pw)) != NULL) { + (lc = PRIVSEP(login_getpwclass(authctxt->pw))) != NULL) { logit("user %s login class %s", authctxt->pw->pw_name, authctxt->pw->pw_class); from_host = auth_get_canonical_hostname(ssh, options.use_dns); @@ -331,7 +331,7 @@ input_userauth_request(int type, u_int32_t seq, struct authctxt->pw->pw_name, from_host); packet_disconnect("Logins not available right now."); } - login_close(lc); + PRIVSEP(login_close(lc)); } #endif /* HAVE_LOGIN_CAP */ Modified: projects/openssl111/crypto/openssh/monitor.c ============================================================================== --- projects/openssl111/crypto/openssh/monitor.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/crypto/openssh/monitor.c Mon Oct 8 18:06:40 2018 (r339240) @@ -114,6 +114,7 @@ static struct sshbuf *child_state; int mm_answer_moduli(int, struct sshbuf *); int mm_answer_sign(int, struct sshbuf *); +int mm_answer_login_getpwclass(int, struct sshbuf *); int mm_answer_pwnamallow(int, struct sshbuf *); int mm_answer_auth2_read_banner(int, struct sshbuf *); int mm_answer_authserv(int, struct sshbuf *); @@ -189,6 +190,7 @@ struct mon_table mon_dispatch_proto20[] = { {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli}, #endif {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign}, + {MONITOR_REQ_GETPWCLASS, MON_AUTH, mm_answer_login_getpwclass}, {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow}, {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv}, {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner}, @@ -707,6 +709,46 @@ mm_answer_sign(int sock, struct sshbuf *m) return (0); } +int +mm_answer_login_getpwclass(int sock, struct sshbuf *m) +{ + login_cap_t *lc; + struct passwd *pw; + int r; + u_int len; + + debug3("%s", __func__); + + pw = sshbuf_get_passwd(m); + if (pw == NULL) + fatal("%s: receive get struct passwd failed", __func__); + + lc = login_getpwclass(pw); + + sshbuf_reset(m); + + if (lc == NULL) { + if (r = sshbuf_put_u8(m, 0) != 0) + fatal("%s: buffer error: %s", __func__, ssh_err(r)); + goto out; + } + + if ((r = sshbuf_put_u8(m, 1)) != 0 || + (r = sshbuf_put_cstring(m, lc->lc_class)) != 0 || + (r = sshbuf_put_cstring(m, lc->lc_cap)) != 0 || + (r = sshbuf_put_cstring(m, lc->lc_style)) != 0) + fatal("%s: buffer error: %s", __func__, ssh_err(r)); + + login_close(lc); + out: + debug3("%s: sending MONITOR_ANS_GETPWCLASS", __func__); + mm_request_send(sock, MONITOR_ANS_GETPWCLASS, m); + + sshbuf_free_passwd(pw); + + return (0); +} + /* Retrieves the password entry and also checks if the user is permitted */ int @@ -745,19 +787,8 @@ mm_answer_pwnamallow(int sock, struct sshbuf *m) authctxt->pw = pwent; authctxt->valid = 1; - /* XXX don't sent pwent to unpriv; send fake class/dir/shell too */ if ((r = sshbuf_put_u8(m, 1)) != 0 || - (r = sshbuf_put_string(m, pwent, sizeof(*pwent))) != 0 || - (r = sshbuf_put_cstring(m, pwent->pw_name)) != 0 || - (r = sshbuf_put_cstring(m, "*")) != 0 || -#ifdef HAVE_STRUCT_PASSWD_PW_GECOS - (r = sshbuf_put_cstring(m, pwent->pw_gecos)) != 0 || -#endif -#ifdef HAVE_STRUCT_PASSWD_PW_CLASS - (r = sshbuf_put_cstring(m, pwent->pw_class)) != 0 || -#endif - (r = sshbuf_put_cstring(m, pwent->pw_dir)) != 0 || - (r = sshbuf_put_cstring(m, pwent->pw_shell)) != 0) + (r = sshbuf_put_passwd(m, pwent)) != 0) fatal("%s: buffer error: %s", __func__, ssh_err(r)); out: Modified: projects/openssl111/crypto/openssh/monitor.h ============================================================================== --- projects/openssl111/crypto/openssh/monitor.h Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/crypto/openssh/monitor.h Mon Oct 8 18:06:40 2018 (r339240) @@ -53,7 +53,8 @@ enum monitor_reqtype { MONITOR_REQ_GSSSTEP = 44, MONITOR_ANS_GSSSTEP = 45, MONITOR_REQ_GSSUSEROK = 46, MONITOR_ANS_GSSUSEROK = 47, MONITOR_REQ_GSSCHECKMIC = 48, MONITOR_ANS_GSSCHECKMIC = 49, - MONITOR_REQ_TERM = 50, + MONITOR_REQ_GETPWCLASS = 50, MONITOR_ANS_GETPWCLASS = 51, + MONITOR_REQ_TERM = 52, MONITOR_REQ_PAM_START = 100, MONITOR_REQ_PAM_ACCOUNT = 102, MONITOR_ANS_PAM_ACCOUNT = 103, Modified: projects/openssl111/crypto/openssh/monitor_wrap.c ============================================================================== --- projects/openssl111/crypto/openssh/monitor_wrap.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/crypto/openssh/monitor_wrap.c Mon Oct 8 18:06:40 2018 (r339240) @@ -247,6 +247,57 @@ mm_sshkey_sign(struct sshkey *key, u_char **sigp, size return (0); } +login_cap_t * +mm_login_getpwclass(const struct passwd *pwent) +{ + int r; + struct sshbuf *m; + char rc; + login_cap_t *lc; + + debug3("%s entering", __func__); + + if ((m = sshbuf_new()) == NULL) + fatal("%s: sshbuf_new failed", __func__); + if ((r = sshbuf_put_passwd(m, pwent)) != 0) + fatal("%s: buffer error: %s", __func__, ssh_err(r)); + + mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_GETPWCLASS, m); + + debug3("%s: waiting for MONITOR_ANS_GETPWCLASS", __func__); + mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_GETPWCLASS, m); + + if ((r = sshbuf_get_u8(m, &rc)) != 0) + fatal("%s: buffer error: %s", __func__, ssh_err(r)); + + if (rc == 0) { + lc = NULL; + goto out; + } + + lc = xmalloc(sizeof(*lc)); + if ((r = sshbuf_get_cstring(m, &lc->lc_class, NULL)) != 0 || + (r = sshbuf_get_cstring(m, &lc->lc_cap, NULL)) != 0 || + (r = sshbuf_get_cstring(m, &lc->lc_style, NULL)) != 0) + fatal("%s: buffer error: %s", __func__, ssh_err(r)); + + out: + sshbuf_free(m); + + return (lc); +} + +void +mm_login_close(login_cap_t *lc) +{ + if (lc == NULL) + return; + free(lc->lc_style); + free(lc->lc_class); + free(lc->lc_cap); + free(lc); +} + struct passwd * mm_getpwnamallow(const char *username) { @@ -279,25 +330,9 @@ mm_getpwnamallow(const char *username) goto out; } - /* XXX don't like passing struct passwd like this */ - pw = xcalloc(sizeof(*pw), 1); - if ((r = sshbuf_get_string_direct(m, &p, &len)) != 0) - fatal("%s: buffer error: %s", __func__, ssh_err(r)); - if (len != sizeof(*pw)) - fatal("%s: struct passwd size mismatch", __func__); - memcpy(pw, p, sizeof(*pw)); - - if ((r = sshbuf_get_cstring(m, &pw->pw_name, NULL)) != 0 || - (r = sshbuf_get_cstring(m, &pw->pw_passwd, NULL)) != 0 || -#ifdef HAVE_STRUCT_PASSWD_PW_GECOS - (r = sshbuf_get_cstring(m, &pw->pw_gecos, NULL)) != 0 || -#endif -#ifdef HAVE_STRUCT_PASSWD_PW_CLASS - (r = sshbuf_get_cstring(m, &pw->pw_class, NULL)) != 0 || -#endif - (r = sshbuf_get_cstring(m, &pw->pw_dir, NULL)) != 0 || - (r = sshbuf_get_cstring(m, &pw->pw_shell, NULL)) != 0) - fatal("%s: buffer error: %s", __func__, ssh_err(r)); + pw = sshbuf_get_passwd(m); + if (pw == NULL) + fatal("%s: receive get struct passwd failed", __func__); out: /* copy options block as a Match directive may have changed some */ Modified: projects/openssl111/crypto/openssh/monitor_wrap.h ============================================================================== --- projects/openssl111/crypto/openssh/monitor_wrap.h Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/crypto/openssh/monitor_wrap.h Mon Oct 8 18:06:40 2018 (r339240) @@ -28,6 +28,8 @@ #ifndef _MM_WRAP_H_ #define _MM_WRAP_H_ +#include + extern int use_privsep; #define PRIVSEP(x) (use_privsep ? mm_##x : x) @@ -45,6 +47,8 @@ int mm_sshkey_sign(struct sshkey *, u_char **, size_t const char *, u_int compat); void mm_inform_authserv(char *, char *); struct passwd *mm_getpwnamallow(const char *); +login_cap_t *mm_login_getpwclass(const struct passwd *pwd); +void mm_login_close(login_cap_t *lc); char *mm_auth2_read_banner(void); int mm_auth_password(struct ssh *, char *); int mm_key_allowed(enum mm_keytype, const char *, const char *, struct sshkey *, Modified: projects/openssl111/crypto/openssh/sandbox-capsicum.c ============================================================================== --- projects/openssl111/crypto/openssh/sandbox-capsicum.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/crypto/openssh/sandbox-capsicum.c Mon Oct 8 18:06:40 2018 (r339240) @@ -31,6 +31,7 @@ __RCSID("$FreeBSD$"); #include #include #include +#include #include "log.h" #include "monitor.h" @@ -70,6 +71,8 @@ ssh_sandbox_child(struct ssh_sandbox *box) { struct rlimit rl_zero; cap_rights_t rights; + + caph_cache_tzdata(); rl_zero.rlim_cur = rl_zero.rlim_max = 0; Modified: projects/openssl111/crypto/openssh/sshbuf-getput-basic.c ============================================================================== --- projects/openssl111/crypto/openssh/sshbuf-getput-basic.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/crypto/openssh/sshbuf-getput-basic.c Mon Oct 8 18:06:40 2018 (r339240) @@ -25,6 +25,7 @@ #include #include +#include "xmalloc.h" #include "ssherr.h" #include "sshbuf.h" @@ -461,4 +462,96 @@ sshbuf_get_bignum2_bytes_direct(struct sshbuf *buf, return SSH_ERR_INTERNAL_ERROR; } return 0; +} + +/* + * store struct pwd + */ +int +sshbuf_put_passwd(struct sshbuf *buf, const struct passwd *pwent) +{ + int r; + + /* + * We never send pointer values of struct passwd. + * It is safe from wild pointer even if a new pointer member is added. + */ + + if ((r = sshbuf_put_u64(buf, sizeof(*pwent)) != 0) || + (r = sshbuf_put_cstring(buf, pwent->pw_name)) != 0 || + (r = sshbuf_put_cstring(buf, "*")) != 0 || + (r = sshbuf_put_u32(buf, pwent->pw_uid)) != 0 || + (r = sshbuf_put_u32(buf, pwent->pw_gid)) != 0 || + (r = sshbuf_put_u64(buf, pwent->pw_change)) != 0 || +#ifdef HAVE_STRUCT_PASSWD_PW_GECOS + (r = sshbuf_put_cstring(buf, pwent->pw_gecos)) != 0 || +#endif +#ifdef HAVE_STRUCT_PASSWD_PW_CLASS + (r = sshbuf_put_cstring(buf, pwent->pw_class)) != 0 || +#endif + (r = sshbuf_put_cstring(buf, pwent->pw_dir)) != 0 || + (r = sshbuf_put_cstring(buf, pwent->pw_shell)) != 0 || + (r = sshbuf_put_u64(buf, pwent->pw_expire)) != 0 || + (r = sshbuf_put_u32(buf, pwent->pw_fields)) != 0) { + return r; + } + return 0; +} + +/* + * extract struct pwd + */ +struct passwd * +sshbuf_get_passwd(struct sshbuf *buf) +{ + struct passwd *pw; + int r; + size_t len; + + /* check if size of struct passwd is as same as sender's size */ + r = sshbuf_get_u64(buf, &len); + if (r != 0 || len != sizeof(*pw)) + return NULL; + + pw = xcalloc(1, sizeof(*pw)); + if (sshbuf_get_cstring(buf, &pw->pw_name, NULL) != 0 || + sshbuf_get_cstring(buf, &pw->pw_passwd, NULL) != 0 || + sshbuf_get_u32(buf, &pw->pw_uid) != 0 || + sshbuf_get_u32(buf, &pw->pw_gid) != 0 || + sshbuf_get_u64(buf, &pw->pw_change) != 0 || +#ifdef HAVE_STRUCT_PASSWD_PW_GECOS + sshbuf_get_cstring(buf, &pw->pw_gecos, NULL) != 0 || +#endif +#ifdef HAVE_STRUCT_PASSWD_PW_CLASS + sshbuf_get_cstring(buf, &pw->pw_class, NULL) != 0 || +#endif + sshbuf_get_cstring(buf, &pw->pw_dir, NULL) != 0 || + sshbuf_get_cstring(buf, &pw->pw_shell, NULL) != 0 || + sshbuf_get_u64(buf, &pw->pw_expire) != 0 || + sshbuf_get_u32(buf, &pw->pw_fields) != 0) { + sshbuf_free_passwd(pw); + return NULL; + } + return pw; +} + +/* + * free struct passwd obtained from sshbuf_get_passwd. + */ +void +sshbuf_free_passwd(struct passwd *pwent) +{ + if (pwent == NULL) + return; + free(pwent->pw_shell); + free(pwent->pw_dir); +#ifdef HAVE_STRUCT_PASSWD_PW_CLASS + free(pwent->pw_class); +#endif +#ifdef HAVE_STRUCT_PASSWD_PW_GECOS + free(pwent->pw_gecos); +#endif + free(pwent->pw_passwd); + free(pwent->pw_name); + free(pwent); } Modified: projects/openssl111/crypto/openssh/sshbuf.h ============================================================================== --- projects/openssl111/crypto/openssh/sshbuf.h Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/crypto/openssh/sshbuf.h Mon Oct 8 18:06:40 2018 (r339240) @@ -21,6 +21,7 @@ #include #include #include +#include #ifdef WITH_OPENSSL # include # ifdef OPENSSL_HAS_ECC @@ -245,6 +246,21 @@ int sshbuf_b64tod(struct sshbuf *buf, const char *b64) * nul character. */ char *sshbuf_dup_string(struct sshbuf *buf); + +/* + * store struct pwd + */ +int sshbuf_put_passwd(struct sshbuf *buf, const struct passwd *pwent); + +/* + * extract struct pwd + */ +struct passwd *sshbuf_get_passwd(struct sshbuf *buf); + +/* + * free struct passwd obtained from sshbuf_get_passwd. + */ +void sshbuf_free_passwd(struct passwd *pwent); /* Macros for decoding/encoding integers */ #define PEEK_U64(p) \ Modified: projects/openssl111/crypto/openssh/sshd.c ============================================================================== --- projects/openssl111/crypto/openssh/sshd.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/crypto/openssh/sshd.c Mon Oct 8 18:06:40 2018 (r339240) @@ -2143,6 +2143,11 @@ main(int ac, char **av) */ remote_ip = ssh_remote_ipaddr(ssh); +#ifdef HAVE_LOGIN_CAP + /* Also caches remote hostname for sandboxed child. */ + auth_get_canonical_hostname(ssh, options.use_dns); +#endif + #ifdef SSH_AUDIT_EVENTS audit_connection_from(remote_ip, remote_port); #endif Modified: projects/openssl111/lib/libc/amd64/string/memset.S ============================================================================== --- projects/openssl111/lib/libc/amd64/string/memset.S Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/lib/libc/amd64/string/memset.S Mon Oct 8 18:06:40 2018 (r339240) @@ -31,7 +31,7 @@ #include __FBSDID("$FreeBSD$"); -.macro MEMSET bzero +.macro MEMSET bzero erms .if \bzero == 1 movq %rsi,%rcx movq %rsi,%rdx @@ -43,21 +43,75 @@ __FBSDID("$FreeBSD$"); movabs $0x0101010101010101,%rax imulq %r8,%rax .endif - cmpq $15,%rcx - jbe 1f - shrq $3,%rcx - rep - stosq - movq %rdx,%rcx - andq $7,%rcx - jne 1f + + cmpq $32,%rcx + jb 1016f + + cmpq $256,%rcx + ja 1256f + +1032: + movq %rax,(%rdi) + movq %rax,8(%rdi) + movq %rax,16(%rdi) + movq %rax,24(%rdi) + leaq 32(%rdi),%rdi + subq $32,%rcx + cmpq $32,%rcx + jae 1032b + cmpb $0,%cl + je 1000f +1016: + cmpb $16,%cl + jl 1008f + movq %rax,(%rdi) + movq %rax,8(%rdi) + subb $16,%cl + jz 1000f + leaq 16(%rdi),%rdi +1008: + cmpb $8,%cl + jl 1004f + movq %rax,(%rdi) + subb $8,%cl + jz 1000f + leaq 8(%rdi),%rdi +1004: + cmpb $4,%cl + jl 1002f + movl %eax,(%rdi) + subb $4,%cl + jz 1000f + leaq 4(%rdi),%rdi +1002: + cmpb $2,%cl + jl 1001f + movw %ax,(%rdi) + subb $2,%cl + jz 1000f + leaq 2(%rdi),%rdi +1001: + cmpb $1,%cl + jl 1000f + movb %al,(%rdi) +1000: .if \bzero == 0 movq %r9,%rax .endif ret -1: + +1256: +.if \erms == 1 rep stosb +.else + shrq $3,%rcx + rep + stosq + movq %rdx,%rcx + andb $7,%cl + jne 1004b +.endif .if \bzero == 0 movq %r9,%rax .endif @@ -66,11 +120,11 @@ __FBSDID("$FreeBSD$"); #ifndef BZERO ENTRY(memset) - MEMSET bzero=0 + MEMSET bzero=0 erms=0 END(memset) #else ENTRY(bzero) - MEMSET bzero=1 + MEMSET bzero=1 erms=0 END(bzero) #endif Modified: projects/openssl111/sbin/init/rc.conf ============================================================================== --- projects/openssl111/sbin/init/rc.conf Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sbin/init/rc.conf Mon Oct 8 18:06:40 2018 (r339240) @@ -163,7 +163,7 @@ firewall_simple_onet="192.0.2.0/28" # Outside network # firewall. #firewall_simple_onet_ipv6="2001:db8:2:0::/56" # Outside IPv6 network prefix # for "simple" firewall. -firewall_myservices="" # List of TCP ports on which this host +firewall_myservices="" # List of ports/protocols on which this host # offers services for "workstation" firewall. firewall_allowservices="" # List of IPs which have access to # $firewall_myservices for "workstation" Modified: projects/openssl111/stand/defaults/loader.conf ============================================================================== --- projects/openssl111/stand/defaults/loader.conf Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/stand/defaults/loader.conf Mon Oct 8 18:06:40 2018 (r339240) @@ -97,6 +97,7 @@ efi_max_resolution="1x1" # Set the max resolution for #console="vidconsole" # A comma separated list of console(s) #currdev="disk1s1a" # Set the current device module_path="/boot/modules;/boot/dtb;/boot/dtb/overlays" # Set the module search path +module_blacklist="drm drm2 radeonkms i915kms amdgpu" # Loader module blacklist #prompt="\\${interpret}" # Set the command prompt #root_disk_unit="0" # Force the root disk unit number #rootdev="disk1s1a" # Set the root filesystem Modified: projects/openssl111/stand/defaults/loader.conf.5 ============================================================================== --- projects/openssl111/stand/defaults/loader.conf.5 Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/stand/defaults/loader.conf.5 Mon Oct 8 18:06:40 2018 (r339240) @@ -23,7 +23,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD$ -.Dd August 28, 2018 +.Dd October 6, 2018 .Dt LOADER.CONF 5 .Os .Sh NAME @@ -147,6 +147,15 @@ If a password is set, the user must provide specified If set to .Dq YES , module names will be displayed as they are loaded. +.It Ar module_blacklist +Blacklist of modules. +Modules specified in the blacklist may not be loaded automatically with a +.Ar *_load +directive, but they may be loaded directly at the +.Xr loader 8 +prompt. +Blacklisted modules may still be loaded indirectly as dependencies of other +moduled. .It Ar *_load If set to .Dq YES , Modified: projects/openssl111/stand/lua/config.lua ============================================================================== --- projects/openssl111/stand/lua/config.lua Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/stand/lua/config.lua Mon Oct 8 18:06:40 2018 (r339240) @@ -54,6 +54,7 @@ local MSG_XENKERNFAIL = "Failed to load Xen kernel '%s local MSG_XENKERNLOADING = "Loading Xen kernel..." local MSG_KERNLOADING = "Loading kernel..." local MSG_MODLOADING = "Loading configured modules..." +local MSG_MODBLACKLIST = "Not loading blacklisted module '%s'" local MSG_MODLOADFAIL = "Could not load one or more modules!" local MODULEEXPR = '([%w-_]+)' @@ -265,20 +266,37 @@ local function isValidComment(line) return true end +local function getBlacklist() + local blacklist_str = loader.getenv('module_blacklist') + if blacklist_str == nil then + return nil + end + + local blacklist = {} + for mod in blacklist_str:gmatch("[;, ]?([%w-_]+)[;, ]?") do + blacklist[mod] = true + end + return blacklist +end + local function loadModule(mod, silent) local status = true + local blacklist = getBlacklist() local pstatus for k, v in pairs(mod) do if v.load ~= nil and v.load:lower() == "yes" then + local module_name = v.name or k + if blacklist[module_name] ~= nil then + if not silent then + print(MSG_MODBLACKLIST:format(module_name)) + end + goto continue + end local str = "load " if v.type ~= nil then str = str .. "-t " .. v.type .. " " end - if v.name ~= nil then - str = str .. v.name - else - str = str .. k - end + str = str .. module_name if v.flags ~= nil then str = str .. " " .. v.flags end @@ -309,6 +327,7 @@ local function loadModule(mod, silent) end end + ::continue:: end return status Modified: projects/openssl111/stand/lua/core.lua ============================================================================== --- projects/openssl111/stand/lua/core.lua Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/stand/lua/core.lua Mon Oct 8 18:06:40 2018 (r339240) @@ -34,6 +34,10 @@ local hook = require("hook") local core = {} +local default_safe_mode = false +local default_single_user = false +local default_verbose = false + local function composeLoaderCmd(cmd_name, argstr) if argstr ~= nil then cmd_name = cmd_name .. " " .. argstr @@ -41,6 +45,26 @@ local function composeLoaderCmd(cmd_name, argstr) return cmd_name end +local function recordDefaults() + -- On i386, hint.acpi.0.rsdp will be set before we're loaded. On !i386, + -- it will generally be set upon execution of the kernel. Because of + -- this, we can't (or don't really want to) detect/disable ACPI on !i386 + -- reliably. Just set it enabled if we detect it and leave well enough + -- alone if we don't. + local boot_acpi = core.isSystem386() and core.getACPIPresent(false) + local boot_single = loader.getenv("boot_single") or "no" + local boot_verbose = loader.getenv("boot_verbose") or "no" + default_single_user = boot_single:lower() ~= "no" + default_verbose = boot_verbose:lower() ~= "no" + + if boot_acpi then + core.setACPI(true) + end + core.setSingleUser(default_single_user) + core.setVerbose(default_verbose) +end + + -- Globals -- try_include will return the loaded module on success, or nil on failure. -- A message will also be printed on failure, with one exception: non-verbose @@ -268,9 +292,9 @@ end function core.setDefaults() core.setACPI(core.getACPIPresent(true)) - core.setSafeMode(false) - core.setSingleUser(false) - core.setVerbose(false) + core.setSafeMode(default_safe_mode) + core.setSingleUser(default_single_user) + core.setVerbose(default_verbose) end function core.autoboot(argstr) @@ -367,13 +391,6 @@ function core.popFrontTable(tbl) return first_value, new_tbl end --- On i386, hint.acpi.0.rsdp will be set before we're loaded. On !i386, it will --- generally be set upon execution of the kernel. Because of this, we can't (or --- don't really want to) detect/disable ACPI on !i386 reliably. Just set it --- enabled if we detect it and leave well enough alone if we don't. -if core.isSystem386() and core.getACPIPresent(false) then - core.setACPI(true) -end - +recordDefaults() hook.register("config.reloaded", core.clearCachedKernels) return core Modified: projects/openssl111/sys/amd64/conf/GENERIC ============================================================================== --- projects/openssl111/sys/amd64/conf/GENERIC Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/amd64/conf/GENERIC Mon Oct 8 18:06:40 2018 (r339240) @@ -52,7 +52,6 @@ options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework -options GEOM_PART_GPT # GUID Partition Tables. options GEOM_RAID # Soft RAID functionality. options GEOM_LABEL # Provides labelization options EFIRT # EFI Runtime Services support Modified: projects/openssl111/sys/amd64/conf/GENERIC-MMCCAM ============================================================================== --- projects/openssl111/sys/amd64/conf/GENERIC-MMCCAM Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/amd64/conf/GENERIC-MMCCAM Mon Oct 8 18:06:40 2018 (r339240) @@ -7,7 +7,6 @@ include MINIMAL ident GENERIC-MMCCAM # Access GPT-formatted and labeled root volume -options GEOM_PART_GPT options GEOM_LABEL # UART -- for bhyve console Modified: projects/openssl111/sys/arm64/conf/GENERIC ============================================================================== --- projects/openssl111/sys/arm64/conf/GENERIC Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/arm64/conf/GENERIC Mon Oct 8 18:06:40 2018 (r339240) @@ -50,7 +50,6 @@ options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework -options GEOM_PART_GPT # GUID Partition Tables. options GEOM_RAID # Soft RAID functionality. options GEOM_LABEL # Provides labelization options COMPAT_FREEBSD32 # Incomplete, but used by cloudabi32.ko. Modified: projects/openssl111/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c ============================================================================== --- projects/openssl111/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c Mon Oct 8 18:06:40 2018 (r339240) @@ -2964,6 +2964,8 @@ dsl_scan_need_resilver(spa_t *spa, const dva_t *dva, s { vdev_t *vd; + vd = vdev_lookup_top(spa, DVA_GET_VDEV(dva)); + if (vd->vdev_ops == &vdev_indirect_ops) { /* * The indirect vdev can point to multiple @@ -2974,6 +2976,7 @@ dsl_scan_need_resilver(spa_t *spa, const dva_t *dva, s */ return (B_TRUE); } + if (DVA_GET_GANG(dva)) { /* * Gang members may be spread across multiple @@ -2985,8 +2988,6 @@ dsl_scan_need_resilver(spa_t *spa, const dva_t *dva, s */ return (B_TRUE); } - - vd = vdev_lookup_top(spa, DVA_GET_VDEV(dva)); /* * Check if the txg falls within the range which must be Modified: projects/openssl111/sys/dev/e1000/if_em.c ============================================================================== --- projects/openssl111/sys/dev/e1000/if_em.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/dev/e1000/if_em.c Mon Oct 8 18:06:40 2018 (r339240) @@ -1804,13 +1804,11 @@ em_if_update_admin_status(if_ctx_t ctx) } iflib_link_state_change(ctx, LINK_STATE_UP, IF_Mbps(adapter->link_speed)); - printf("Link state changed to up\n"); } else if (!link_check && (adapter->link_active == 1)) { adapter->link_speed = 0; adapter->link_duplex = 0; adapter->link_active = 0; iflib_link_state_change(ctx, LINK_STATE_DOWN, 0); - printf("Link state changed to down\n"); } em_update_stats_counters(adapter); Modified: projects/openssl111/sys/dev/e1000/igb_txrx.c ============================================================================== --- projects/openssl111/sys/dev/e1000/igb_txrx.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/dev/e1000/igb_txrx.c Mon Oct 8 18:06:40 2018 (r339240) @@ -152,7 +152,6 @@ igb_tx_ctx_setup(struct tx_ring *txr, if_pkt_info_t pi u32 vlan_macip_lens, type_tucmd_mlhl; u32 mss_l4len_idx; mss_l4len_idx = vlan_macip_lens = type_tucmd_mlhl = 0; - int offload = TRUE; /* First check if TSO is to be used */ if (pi->ipi_csum_flags & CSUM_TSO) @@ -186,7 +185,6 @@ igb_tx_ctx_setup(struct tx_ring *txr, if_pkt_info_t pi type_tucmd_mlhl |= E1000_ADVTXD_TUCMD_IPV6; break; default: - offload = FALSE; break; } @@ -195,24 +193,26 @@ igb_tx_ctx_setup(struct tx_ring *txr, if_pkt_info_t pi switch (pi->ipi_ipproto) { case IPPROTO_TCP: - if (pi->ipi_csum_flags & (CSUM_IP_TCP | CSUM_IP6_TCP)) + if (pi->ipi_csum_flags & (CSUM_IP_TCP | CSUM_IP6_TCP)) { type_tucmd_mlhl |= E1000_ADVTXD_TUCMD_L4T_TCP; + *olinfo_status |= E1000_TXD_POPTS_TXSM << 8; + } break; case IPPROTO_UDP: - if (pi->ipi_csum_flags & (CSUM_IP_UDP | CSUM_IP6_UDP)) + if (pi->ipi_csum_flags & (CSUM_IP_UDP | CSUM_IP6_UDP)) { type_tucmd_mlhl |= E1000_ADVTXD_TUCMD_L4T_UDP; + *olinfo_status |= E1000_TXD_POPTS_TXSM << 8; + } break; case IPPROTO_SCTP: - if (pi->ipi_csum_flags & (CSUM_IP_SCTP | CSUM_IP6_SCTP)) + if (pi->ipi_csum_flags & (CSUM_IP_SCTP | CSUM_IP6_SCTP)) { type_tucmd_mlhl |= E1000_ADVTXD_TUCMD_L4T_SCTP; + *olinfo_status |= E1000_TXD_POPTS_TXSM << 8; + } break; default: - offload = FALSE; break; } - - if (offload) /* For the TX descriptor setup */ - *olinfo_status |= E1000_TXD_POPTS_TXSM << 8; /* 82575 needs the queue index added */ if (adapter->hw.mac.type == e1000_82575) Modified: projects/openssl111/sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c ============================================================================== --- projects/openssl111/sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c Mon Oct 8 18:06:40 2018 (r339240) @@ -905,28 +905,6 @@ static void mlx4_en_do_multicast(struct mlx4_en_priv * priv->flags &= ~MLX4_EN_FLAG_MC_PROMISC; } - /* Update unicast list */ - mlx4_en_cache_uclist(dev); - - update_addr_list_flags(priv, &priv->curr_uc_list, &priv->uc_list); - - list_for_each_entry_safe(addr_list, tmp, &priv->curr_uc_list, list) { - if (addr_list->action == MLX4_ADDR_LIST_REM) { - mlx4_en_uc_steer_release(priv, addr_list->addr, - priv->rss_map.indir_qp.qpn, - addr_list->reg_id); - /* remove from list */ - list_del(&addr_list->list); - kfree(addr_list); - } else if (addr_list->action == MLX4_ADDR_LIST_ADD) { - err = mlx4_en_uc_steer_add(priv, addr_list->addr, - &priv->rss_map.indir_qp.qpn, - &addr_list->reg_id); - if (err) - en_err(priv, "Fail to add unicast address\n"); - } - } - err = mlx4_SET_MCAST_FLTR(mdev->dev, priv->port, 0, 0, MLX4_MCAST_DISABLE); if (err) @@ -996,6 +974,36 @@ static void mlx4_en_do_multicast(struct mlx4_en_priv * } } +static void mlx4_en_do_unicast(struct mlx4_en_priv *priv, + struct net_device *dev, + struct mlx4_en_dev *mdev) +{ + struct mlx4_en_addr_list *addr_list, *tmp; + int err; + + /* Update unicast list */ + mlx4_en_cache_uclist(dev); + + update_addr_list_flags(priv, &priv->curr_uc_list, &priv->uc_list); + + list_for_each_entry_safe(addr_list, tmp, &priv->curr_uc_list, list) { + if (addr_list->action == MLX4_ADDR_LIST_REM) { + mlx4_en_uc_steer_release(priv, addr_list->addr, + priv->rss_map.indir_qp.qpn, + addr_list->reg_id); + /* remove from list */ + list_del(&addr_list->list); + kfree(addr_list); + } else if (addr_list->action == MLX4_ADDR_LIST_ADD) { + err = mlx4_en_uc_steer_add(priv, addr_list->addr, + &priv->rss_map.indir_qp.qpn, + &addr_list->reg_id); + if (err) + en_err(priv, "Fail to add unicast address\n"); + } + } +} + static void mlx4_en_do_set_rx_mode(struct work_struct *work) { struct mlx4_en_priv *priv = container_of(work, struct mlx4_en_priv, @@ -1026,17 +1034,19 @@ static void mlx4_en_do_set_rx_mode(struct work_struct } } + /* Set unicast rules */ + mlx4_en_do_unicast(priv, dev, mdev); + /* Promsicuous mode: disable all filters */ if ((dev->if_flags & IFF_PROMISC) || (priv->flags & MLX4_EN_FLAG_FORCE_PROMISC)) { mlx4_en_set_promisc_mode(priv, mdev); - goto out; + } else if (priv->flags & MLX4_EN_FLAG_PROMISC) { + /* Not in promiscuous mode */ + mlx4_en_clear_promisc_mode(priv, mdev); } - /* Not in promiscuous mode */ - if (priv->flags & MLX4_EN_FLAG_PROMISC) - mlx4_en_clear_promisc_mode(priv, mdev); - + /* Set multicast rules */ mlx4_en_do_multicast(priv, dev, mdev); out: mutex_unlock(&mdev->state_lock); Modified: projects/openssl111/sys/i386/conf/GENERIC ============================================================================== --- projects/openssl111/sys/i386/conf/GENERIC Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/i386/conf/GENERIC Mon Oct 8 18:06:40 2018 (r339240) @@ -51,7 +51,6 @@ options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework -options GEOM_PART_GPT # GUID Partition Tables. options GEOM_RAID # Soft RAID functionality. options GEOM_LABEL # Provides labelization options COMPAT_FREEBSD4 # Compatible with FreeBSD4 Modified: projects/openssl111/sys/kern/kern_jail.c ============================================================================== --- projects/openssl111/sys/kern/kern_jail.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/kern/kern_jail.c Mon Oct 8 18:06:40 2018 (r339240) @@ -1393,11 +1393,12 @@ kern_jail_set(struct thread *td, struct uio *optuio, i * there is a duplicate on a jail with more than one * IP stop checking and return error. */ - tppr = ppr; #ifdef VIMAGE - for (; tppr != &prison0; tppr = tppr->pr_parent) + for (tppr = ppr; tppr != &prison0; tppr = tppr->pr_parent) if (tppr->pr_flags & PR_VNET) break; +#else + tppr = &prison0; #endif FOREACH_PRISON_DESCENDANT(tppr, tpr, descend) { if (tpr == pr || @@ -1460,11 +1461,12 @@ kern_jail_set(struct thread *td, struct uio *optuio, i } } /* Check for conflicting IP addresses. */ - tppr = ppr; #ifdef VIMAGE - for (; tppr != &prison0; tppr = tppr->pr_parent) + for (tppr = ppr; tppr != &prison0; tppr = tppr->pr_parent) if (tppr->pr_flags & PR_VNET) break; +#else + tppr = &prison0; #endif FOREACH_PRISON_DESCENDANT(tppr, tpr, descend) { if (tpr == pr || Modified: projects/openssl111/sys/netinet/ip_output.c ============================================================================== --- projects/openssl111/sys/netinet/ip_output.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/netinet/ip_output.c Mon Oct 8 18:06:40 2018 (r339240) @@ -262,11 +262,12 @@ ip_output(struct mbuf *m, struct mbuf *opt, struct rou ip->ip_v = IPVERSION; ip->ip_hl = hlen >> 2; ip_fillid(ip); - IPSTAT_INC(ips_localout); } else { /* Header already set, fetch hlen from there */ hlen = ip->ip_hl << 2; } + if ((flags & IP_FORWARDING) == 0) + IPSTAT_INC(ips_localout); /* * dst/gw handling: Modified: projects/openssl111/sys/netinet/sctp_output.c ============================================================================== --- projects/openssl111/sys/netinet/sctp_output.c Mon Oct 8 17:22:27 2018 (r339239) +++ projects/openssl111/sys/netinet/sctp_output.c Mon Oct 8 18:06:40 2018 (r339240) @@ -4983,7 +4983,6 @@ sctp_arethere_unrecognized_parameters(struct mbuf *in_ struct sctp_paramhdr *phdr, params; struct mbuf *mat, *op_err; - char tempbuf[SCTP_PARAM_BUFFER_SIZE]; int at, limit, pad_needed; uint16_t ptype, plen, padded_size; int err_at; @@ -5123,15 +5122,13 @@ sctp_arethere_unrecognized_parameters(struct mbuf *in_ l_len = SCTP_MIN_V4_OVERHEAD; #endif l_len += sizeof(struct sctp_chunkhdr); - l_len += plen; - l_len += sizeof(struct sctp_paramhdr); + l_len += sizeof(struct sctp_gen_error_cause); op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); if (op_err) { SCTP_BUF_LEN(op_err) = 0; /* *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@freebsd.org Mon Oct 8 19:39:06 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 160FE10C9798 for ; Mon, 8 Oct 2018 19:39:06 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B835B79E2F; Mon, 8 Oct 2018 19:39:05 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AC5C126F83; Mon, 8 Oct 2018 19:39:05 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w98Jd5hn031133; Mon, 8 Oct 2018 19:39:05 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w98Jd5SI031131; Mon, 8 Oct 2018 19:39:05 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201810081939.w98Jd5SI031131@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Mon, 8 Oct 2018 19:39:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339243 - in projects/openssl111: sys/amd64/amd64 usr.sbin/nscd X-SVN-Group: projects X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in projects/openssl111: sys/amd64/amd64 usr.sbin/nscd X-SVN-Commit-Revision: 339243 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2018 19:39:06 -0000 Author: gjb Date: Mon Oct 8 19:39:05 2018 New Revision: 339243 URL: https://svnweb.freebsd.org/changeset/base/339243 Log: Fix a mismerge from head to projects/openssl111. r339213 was cherry-picked back to head from the project branch, which caused a conflict. This commit properly records the mergeinfo from head. r339205 was missed, and r339214 is required for reintegration. Sponsored by: The FreeBSD Foundation Modified: projects/openssl111/sys/amd64/amd64/support.S projects/openssl111/usr.sbin/nscd/nscd.conf.5 Directory Properties: projects/openssl111/ (props changed) projects/openssl111/crypto/openssh/ (props changed) Modified: projects/openssl111/sys/amd64/amd64/support.S ============================================================================== --- projects/openssl111/sys/amd64/amd64/support.S Mon Oct 8 19:15:58 2018 (r339242) +++ projects/openssl111/sys/amd64/amd64/support.S Mon Oct 8 19:39:05 2018 (r339243) @@ -320,43 +320,92 @@ END(memcpy_erms) * memset(dst, c, len) * rdi, rsi, rdx */ -ENTRY(memset_std) +.macro MEMSET erms PUSH_FRAME_POINTER movq %rdi,%r9 movq %rdx,%rcx movzbq %sil,%r8 movabs $0x0101010101010101,%rax imulq %r8,%rax - cmpq $15,%rcx - jbe 1f - shrq $3,%rcx - rep - stosq - movq %rdx,%rcx - andq $7,%rcx - jne 1f + + cmpq $32,%rcx + jb 1016f + + cmpq $256,%rcx + ja 1256f + +1032: + movq %rax,(%rdi) + movq %rax,8(%rdi) + movq %rax,16(%rdi) + movq %rax,24(%rdi) + leaq 32(%rdi),%rdi + subq $32,%rcx + cmpq $32,%rcx + jae 1032b + cmpb $0,%cl + je 1000f +1016: + cmpb $16,%cl + jl 1008f + movq %rax,(%rdi) + movq %rax,8(%rdi) + subb $16,%cl + jz 1000f + leaq 16(%rdi),%rdi +1008: + cmpb $8,%cl + jl 1004f + movq %rax,(%rdi) + subb $8,%cl + jz 1000f + leaq 8(%rdi),%rdi +1004: + cmpb $4,%cl + jl 1002f + movl %eax,(%rdi) + subb $4,%cl + jz 1000f + leaq 4(%rdi),%rdi +1002: + cmpb $2,%cl + jl 1001f + movw %ax,(%rdi) + subb $2,%cl + jz 1000f + leaq 2(%rdi),%rdi +1001: + cmpb $1,%cl + jl 1000f + movb %al,(%rdi) +1000: movq %r9,%rax POP_FRAME_POINTER ret ALIGN_TEXT -1: +1256: +.if \erms == 1 rep stosb +.else + shrq $3,%rcx + rep + stosq + movq %rdx,%rcx + andb $7,%cl + jne 1004b +.endif movq %r9,%rax POP_FRAME_POINTER ret +.endm + +ENTRY(memset_std) + MEMSET erms=0 END(memset_std) ENTRY(memset_erms) - PUSH_FRAME_POINTER - movq %rdi,%r9 - movq %rdx,%rcx - movb %sil,%al - rep - stosb - movq %r9,%rax - POP_FRAME_POINTER - ret + MEMSET erms=1 END(memset_erms) /* fillw(pat, base, cnt) */ Modified: projects/openssl111/usr.sbin/nscd/nscd.conf.5 ============================================================================== --- projects/openssl111/usr.sbin/nscd/nscd.conf.5 Mon Oct 8 19:15:58 2018 (r339242) +++ projects/openssl111/usr.sbin/nscd/nscd.conf.5 Mon Oct 8 19:39:05 2018 (r339243) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd April 30, 2006 +.Dd October 6, 2018 .Dt NSCD.CONF 5 .Os .Sh NAME @@ -153,6 +153,3 @@ symbol at the beginning of the line for comments. .Xr nscd 8 .Sh AUTHORS .An Michael Bushkov Aq Mt bushman@FreeBSD.org -.Sh BUGS -Please send bug reports and suggestions to -.Aq Mt bushman@FreeBSD.org . From owner-svn-src-projects@freebsd.org Tue Oct 9 14:26:47 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7ECDA10ABA20 for ; Tue, 9 Oct 2018 14:26:47 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 352E08B55A; Tue, 9 Oct 2018 14:26:47 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 16A3D13493; Tue, 9 Oct 2018 14:26:47 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w99EQkdV014719; Tue, 9 Oct 2018 14:26:46 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w99EQkrL014718; Tue, 9 Oct 2018 14:26:46 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201810091426.w99EQkrL014718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 9 Oct 2018 14:26:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339253 - in projects/openssl111: . contrib/libevent X-SVN-Group: projects X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in projects/openssl111: . contrib/libevent X-SVN-Commit-Revision: 339253 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 14:26:47 -0000 Author: gjb Date: Tue Oct 9 14:26:46 2018 New Revision: 339253 URL: https://svnweb.freebsd.org/changeset/base/339253 Log: MFH r339252 (record-only) Sponsored by: The FreeBSD Foundation Modified: Directory Properties: projects/openssl111/ (props changed) projects/openssl111/contrib/libevent/ (props changed) From owner-svn-src-projects@freebsd.org Tue Oct 9 14:27:58 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CD8A10ABADD for ; Tue, 9 Oct 2018 14:27:58 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C4FE68B884; Tue, 9 Oct 2018 14:27:57 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BFC8713496; Tue, 9 Oct 2018 14:27:57 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w99ERvLh014989; Tue, 9 Oct 2018 14:27:57 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w99ERtRp014979; Tue, 9 Oct 2018 14:27:55 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201810091427.w99ERtRp014979@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 9 Oct 2018 14:27:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339255 - in projects/openssl111: crypto/openssh lib/libc/stdtime share/misc sys/fs/nfsserver sys/net sys/netinet sys/netinet6 usr.bin/calendar/calendars usr.sbin/bsdinstall/scripts usr... X-SVN-Group: projects X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in projects/openssl111: crypto/openssh lib/libc/stdtime share/misc sys/fs/nfsserver sys/net sys/netinet sys/netinet6 usr.bin/calendar/calendars usr.sbin/bsdinstall/scripts usr.sbin/kldxref X-SVN-Commit-Revision: 339255 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 14:27:58 -0000 Author: gjb Date: Tue Oct 9 14:27:55 2018 New Revision: 339255 URL: https://svnweb.freebsd.org/changeset/base/339255 Log: MFH r338661 through r339253. Sponsored by: The FreeBSD Foundation Added: projects/openssl111/usr.sbin/kldxref/ef_riscv.c - copied unchanged from r339242, head/usr.sbin/kldxref/ef_riscv.c Modified: projects/openssl111/crypto/openssh/ssh_namespace.h projects/openssl111/lib/libc/stdtime/strptime.c projects/openssl111/share/misc/committers-ports.dot projects/openssl111/sys/fs/nfsserver/nfs_nfsdport.c projects/openssl111/sys/net/if_lagg.c projects/openssl111/sys/netinet/ip_options.c projects/openssl111/sys/netinet6/udp6_usrreq.c projects/openssl111/usr.bin/calendar/calendars/calendar.freebsd projects/openssl111/usr.sbin/bsdinstall/scripts/mirrorselect Directory Properties: projects/openssl111/ (props changed) projects/openssl111/crypto/openssh/ (props changed) Modified: projects/openssl111/crypto/openssh/ssh_namespace.h ============================================================================== --- projects/openssl111/crypto/openssh/ssh_namespace.h Tue Oct 9 14:27:40 2018 (r339254) +++ projects/openssl111/crypto/openssh/ssh_namespace.h Tue Oct 9 14:27:55 2018 (r339255) @@ -8,6 +8,37 @@ #define Blowfish_expandstate Fssh_Blowfish_expandstate #define Blowfish_initstate Fssh_Blowfish_initstate #define Blowfish_stream2word Fssh_Blowfish_stream2word +#define DH_get0_key Fssh_DH_get0_key +#define DH_get0_pqg Fssh_DH_get0_pqg +#define DH_set0_key Fssh_DH_set0_key +#define DH_set0_pqg Fssh_DH_set0_pqg +#define DH_set_length Fssh_DH_set_length +#define DSA_SIG_get0 Fssh_DSA_SIG_get0 +#define DSA_SIG_set0 Fssh_DSA_SIG_set0 +#define DSA_get0_key Fssh_DSA_get0_key +#define DSA_get0_pqg Fssh_DSA_get0_pqg +#define DSA_set0_key Fssh_DSA_set0_key +#define DSA_set0_pqg Fssh_DSA_set0_pqg +#define ECDSA_SIG_get0 Fssh_ECDSA_SIG_get0 +#define ECDSA_SIG_set0 Fssh_ECDSA_SIG_set0 +#define EVP_CIPHER_CTX_get_iv Fssh_EVP_CIPHER_CTX_get_iv +#define EVP_CIPHER_CTX_set_iv Fssh_EVP_CIPHER_CTX_set_iv +#define EVP_MD_CTX_free Fssh_EVP_MD_CTX_free +#define EVP_MD_CTX_new Fssh_EVP_MD_CTX_new +#define EVP_PKEY_get0_RSA Fssh_EVP_PKEY_get0_RSA +#define RSA_get0_crt_params Fssh_RSA_get0_crt_params +#define RSA_get0_factors Fssh_RSA_get0_factors +#define RSA_get0_key Fssh_RSA_get0_key +#define RSA_meth_dup Fssh_RSA_meth_dup +#define RSA_meth_free Fssh_RSA_meth_free +#define RSA_meth_get_finish Fssh_RSA_meth_get_finish +#define RSA_meth_set1_name Fssh_RSA_meth_set1_name +#define RSA_meth_set_finish Fssh_RSA_meth_set_finish +#define RSA_meth_set_priv_dec Fssh_RSA_meth_set_priv_dec +#define RSA_meth_set_priv_enc Fssh_RSA_meth_set_priv_enc +#define RSA_set0_crt_params Fssh_RSA_set0_crt_params +#define RSA_set0_factors Fssh_RSA_set0_factors +#define RSA_set0_key Fssh_RSA_set0_key #define _ssh__compat_glob Fssh__ssh__compat_glob #define _ssh__compat_globfree Fssh__ssh__compat_globfree #define _ssh_compat_realpath Fssh__ssh_compat_realpath @@ -166,7 +197,6 @@ #define cipher_crypt Fssh_cipher_crypt #define cipher_ctx_is_plaintext Fssh_cipher_ctx_is_plaintext #define cipher_free Fssh_cipher_free -#define cipher_get_keycontext Fssh_cipher_get_keycontext #define cipher_get_keyiv Fssh_cipher_get_keyiv #define cipher_get_keyiv_len Fssh_cipher_get_keyiv_len #define cipher_get_length Fssh_cipher_get_length @@ -175,7 +205,6 @@ #define cipher_ivlen Fssh_cipher_ivlen #define cipher_keylen Fssh_cipher_keylen #define cipher_seclen Fssh_cipher_seclen -#define cipher_set_keycontext Fssh_cipher_set_keycontext #define cipher_set_keyiv Fssh_cipher_set_keyiv #define cipher_warning_message Fssh_cipher_warning_message #define ciphers_valid Fssh_ciphers_valid @@ -630,7 +659,7 @@ #define ssh_remove_all_identities Fssh_ssh_remove_all_identities #define ssh_remove_identity Fssh_ssh_remove_identity #define ssh_request_reply Fssh_ssh_request_reply -#define ssh_rsa_generate_additional_parameters Fssh_ssh_rsa_generate_additional_parameters +#define ssh_rsa_complete_crt_parameters Fssh_ssh_rsa_complete_crt_parameters #define ssh_rsa_sign Fssh_ssh_rsa_sign #define ssh_rsa_verify Fssh_ssh_rsa_verify #define ssh_set_app_data Fssh_ssh_set_app_data @@ -652,6 +681,7 @@ #define sshbuf_dump_data Fssh_sshbuf_dump_data #define sshbuf_dup_string Fssh_sshbuf_dup_string #define sshbuf_free Fssh_sshbuf_free +#define sshbuf_free_passwd Fssh_sshbuf_free_passwd #define sshbuf_from Fssh_sshbuf_from #define sshbuf_fromb Fssh_sshbuf_fromb #define sshbuf_froms Fssh_sshbuf_froms @@ -662,6 +692,7 @@ #define sshbuf_get_cstring Fssh_sshbuf_get_cstring #define sshbuf_get_ec Fssh_sshbuf_get_ec #define sshbuf_get_eckey Fssh_sshbuf_get_eckey +#define sshbuf_get_passwd Fssh_sshbuf_get_passwd #define sshbuf_get_string Fssh_sshbuf_get_string #define sshbuf_get_string_direct Fssh_sshbuf_get_string_direct #define sshbuf_get_stringb Fssh_sshbuf_get_stringb @@ -683,6 +714,7 @@ #define sshbuf_put_cstring Fssh_sshbuf_put_cstring #define sshbuf_put_ec Fssh_sshbuf_put_ec #define sshbuf_put_eckey Fssh_sshbuf_put_eckey +#define sshbuf_put_passwd Fssh_sshbuf_put_passwd #define sshbuf_put_string Fssh_sshbuf_put_string #define sshbuf_put_stringb Fssh_sshbuf_put_stringb #define sshbuf_put_u16 Fssh_sshbuf_put_u16 @@ -697,7 +729,6 @@ #define sshbuf_reset Fssh_sshbuf_reset #define sshbuf_set_max_size Fssh_sshbuf_set_max_size #define sshbuf_set_parent Fssh_sshbuf_set_parent -#define sshkey_add_private Fssh_sshkey_add_private #define sshkey_alg_list Fssh_sshkey_alg_list #define sshkey_cert_check_authority Fssh_sshkey_cert_check_authority #define sshkey_cert_copy Fssh_sshkey_cert_copy @@ -709,7 +740,6 @@ #define sshkey_curve_name_to_nid Fssh_sshkey_curve_name_to_nid #define sshkey_curve_nid_to_bits Fssh_sshkey_curve_nid_to_bits #define sshkey_curve_nid_to_name Fssh_sshkey_curve_nid_to_name -#define sshkey_demote Fssh_sshkey_demote #define sshkey_drop_cert Fssh_sshkey_drop_cert #define sshkey_dump_ec_key Fssh_sshkey_dump_ec_key #define sshkey_dump_ec_point Fssh_sshkey_dump_ec_point Modified: projects/openssl111/lib/libc/stdtime/strptime.c ============================================================================== --- projects/openssl111/lib/libc/stdtime/strptime.c Tue Oct 9 14:27:40 2018 (r339254) +++ projects/openssl111/lib/libc/stdtime/strptime.c Tue Oct 9 14:27:55 2018 (r339255) @@ -419,7 +419,7 @@ label: i += *buf - '0'; len--; } - if (i > 31) + if (i == 0 || i > 31) return (NULL); tm->tm_mday = i; Modified: projects/openssl111/share/misc/committers-ports.dot ============================================================================== --- projects/openssl111/share/misc/committers-ports.dot Tue Oct 9 14:27:40 2018 (r339254) +++ projects/openssl111/share/misc/committers-ports.dot Tue Oct 9 14:27:55 2018 (r339255) @@ -100,6 +100,7 @@ dumbbell [label="Jean-Sebastien Pedron\ndumbbell@FreeB dvl [label="Dan Langille\ndvl@FreeBSD.org\n2014/08/10"] eadler [label="Eitan Adler\neadler@FreeBSD.org\n2011/08/17"] edwin [label="Edwin Groothuis\nedwin@FreeBSD.org\n2002/10/22"] +egypcio [label="Vinícius Zavam\negypcio@FreeBSD.org\n2018/10/04"] ehaupt [label="Emanuel Haupt\nehaupt@FreeBSD.org\n2005/10/03"] eik [label="Oliver Eikemeier\neik@FreeBSD.org\n2003/11/12"] ericbsd [label="Eric Turgeon\nericbsd@FreeBSD.org\n2018/03/17"] @@ -297,6 +298,7 @@ amdmi3 -> arrowd antoine -> dumbbell +araujo -> egypcio araujo -> jhixson araujo -> lippe araujo -> pclin @@ -332,6 +334,7 @@ bapt -> rpaulo bapt -> sbruno beat -> decke +beat -> egypcio beat -> marius beat -> sperber beat -> uqs @@ -633,6 +636,7 @@ rakuco -> tcberner rene -> bar rene -> cmt rene -> crees +rene -> egypcio rene -> jgh rene -> jmd rene -> joneum Modified: projects/openssl111/sys/fs/nfsserver/nfs_nfsdport.c ============================================================================== --- projects/openssl111/sys/fs/nfsserver/nfs_nfsdport.c Tue Oct 9 14:27:40 2018 (r339254) +++ projects/openssl111/sys/fs/nfsserver/nfs_nfsdport.c Tue Oct 9 14:27:55 2018 (r339255) @@ -133,7 +133,7 @@ static void nfsrv_pnfssetfh(struct vnode *, struct pnf static int nfsrv_dsremove(struct vnode *, char *, struct ucred *, NFSPROC_T *); static int nfsrv_dssetacl(struct vnode *, struct acl *, struct ucred *, NFSPROC_T *); -static int nfsrv_pnfsstatfs(struct statfs *); +static int nfsrv_pnfsstatfs(struct statfs *, struct mount *); int nfs_pnfsio(task_fn_t *, void *); @@ -1593,7 +1593,7 @@ nfsvno_statfs(struct vnode *vp, struct statfs *sf) if (nfsrv_devidcnt > 0) { /* For a pNFS service, get the DS numbers. */ tsf = malloc(sizeof(*tsf), M_TEMP, M_WAITOK | M_ZERO); - error = nfsrv_pnfsstatfs(tsf); + error = nfsrv_pnfsstatfs(tsf, vp->v_mount); if (error != 0) { free(tsf, M_TEMP); tsf = NULL; @@ -1774,7 +1774,7 @@ nfsvno_fillattr(struct nfsrv_descript *nd, struct moun NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_SPACEFREE) || NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_SPACETOTAL))) { sf = malloc(sizeof(*sf), M_TEMP, M_WAITOK | M_ZERO); - error = nfsrv_pnfsstatfs(sf); + error = nfsrv_pnfsstatfs(sf, mp); if (error != 0) { free(sf, M_TEMP); sf = NULL; @@ -5578,7 +5578,7 @@ nfsrv_killrpcs(struct nfsmount *nmp) * receive the total for all DSs. */ static int -nfsrv_pnfsstatfs(struct statfs *sf) +nfsrv_pnfsstatfs(struct statfs *sf, struct mount *mp) { struct statfs *tsf; struct nfsdevice *ds; @@ -5595,11 +5595,28 @@ nfsrv_pnfsstatfs(struct statfs *sf) tdvpp = dvpp; i = 0; NFSDDSLOCK(); + /* First, search for matches for same file system. */ TAILQ_FOREACH(ds, &nfsrv_devidhead, nfsdev_list) { - if (ds->nfsdev_nmp != NULL) { + if (ds->nfsdev_nmp != NULL && ds->nfsdev_mdsisset != 0 && + ds->nfsdev_mdsfsid.val[0] == mp->mnt_stat.f_fsid.val[0] && + ds->nfsdev_mdsfsid.val[1] == mp->mnt_stat.f_fsid.val[1]) { if (++i > nfsrv_devidcnt) break; *tdvpp++ = ds->nfsdev_dvp; + } + } + /* + * If no matches for same file system, total all servers not assigned + * to a file system. + */ + if (i == 0) { + TAILQ_FOREACH(ds, &nfsrv_devidhead, nfsdev_list) { + if (ds->nfsdev_nmp != NULL && + ds->nfsdev_mdsisset == 0) { + if (++i > nfsrv_devidcnt) + break; + *tdvpp++ = ds->nfsdev_dvp; + } } } NFSDDSUNLOCK(); Modified: projects/openssl111/sys/net/if_lagg.c ============================================================================== --- projects/openssl111/sys/net/if_lagg.c Tue Oct 9 14:27:40 2018 (r339254) +++ projects/openssl111/sys/net/if_lagg.c Tue Oct 9 14:27:55 2018 (r339255) @@ -2033,15 +2033,18 @@ lagg_lb_porttable(struct lagg_softc *sc, struct lagg_p { struct lagg_lb *lb = (struct lagg_lb *)sc->sc_psc; struct lagg_port *lp_next; - int i = 0; + int i = 0, rv; + rv = 0; bzero(&lb->lb_ports, sizeof(lb->lb_ports)); LAGG_RLOCK(); CK_SLIST_FOREACH(lp_next, &sc->sc_ports, lp_entries) { if (lp_next == lp) continue; - if (i >= LAGG_MAX_PORTS) - return (EINVAL); + if (i >= LAGG_MAX_PORTS) { + rv = EINVAL; + break; + } if (sc->sc_ifflags & IFF_DEBUG) printf("%s: port %s at index %d\n", sc->sc_ifname, lp_next->lp_ifp->if_xname, i); @@ -2049,7 +2052,7 @@ lagg_lb_porttable(struct lagg_softc *sc, struct lagg_p } LAGG_RUNLOCK(); - return (0); + return (rv); } static int Modified: projects/openssl111/sys/netinet/ip_options.c ============================================================================== --- projects/openssl111/sys/netinet/ip_options.c Tue Oct 9 14:27:40 2018 (r339254) +++ projects/openssl111/sys/netinet/ip_options.c Tue Oct 9 14:27:55 2018 (r339255) @@ -110,16 +110,16 @@ ip_dooptions(struct mbuf *m, int pass) struct nhop4_extended nh_ext; struct sockaddr_in ipaddr = { sizeof(ipaddr), AF_INET }; - NET_EPOCH_ENTER(); /* Ignore or reject packets with IP options. */ if (V_ip_doopts == 0) return 0; else if (V_ip_doopts == 2) { type = ICMP_UNREACH; code = ICMP_UNREACH_FILTER_PROHIB; - goto bad; + goto bad_unlocked; } + NET_EPOCH_ENTER(); dst = ip->ip_dst; cp = (u_char *)(ip + 1); cnt = (ip->ip_hl << 2) - sizeof (struct ip); @@ -388,6 +388,7 @@ dropit: return (0); bad: NET_EPOCH_EXIT(); +bad_unlocked: icmp_error(m, type, code, 0, 0); IPSTAT_INC(ips_badoptions); return (1); Modified: projects/openssl111/sys/netinet6/udp6_usrreq.c ============================================================================== --- projects/openssl111/sys/netinet6/udp6_usrreq.c Tue Oct 9 14:27:40 2018 (r339254) +++ projects/openssl111/sys/netinet6/udp6_usrreq.c Tue Oct 9 14:27:55 2018 (r339255) @@ -434,8 +434,8 @@ udp6_input(struct mbuf **mp, int *offp, int proto) INP_RUNLOCK(last); } else INP_RUNLOCK(last); - INP_INFO_RUNLOCK_ET(pcbinfo, et); inp_lost: + INP_INFO_RUNLOCK_ET(pcbinfo, et); return (IPPROTO_DONE); } /* Modified: projects/openssl111/usr.bin/calendar/calendars/calendar.freebsd ============================================================================== --- projects/openssl111/usr.bin/calendar/calendars/calendar.freebsd Tue Oct 9 14:27:40 2018 (r339254) +++ projects/openssl111/usr.bin/calendar/calendars/calendar.freebsd Tue Oct 9 14:27:55 2018 (r339255) @@ -85,6 +85,7 @@ 02/22 Jake Burkholder born in Maynooth, Ontario, Canada, 1979 02/23 Peter Wemm born in Perth, Western Australia, Australia, 1971 02/23 Mathieu Arnold born in Champigny sur Marne, Val de Marne, France, 1978 +02/23 Vinícius Zavam born in Fortaleza, Ceará, Brazil, 1986 02/24 Johan Karlsson born in Mariannelund, Sweden, 1974 02/24 Colin Percival born in Burnaby, Canada, 1981 02/24 Kevin Bowling born in Scottsdale, Arizona, United States, 1989 Modified: projects/openssl111/usr.sbin/bsdinstall/scripts/mirrorselect ============================================================================== --- projects/openssl111/usr.sbin/bsdinstall/scripts/mirrorselect Tue Oct 9 14:27:40 2018 (r339254) +++ projects/openssl111/usr.sbin/bsdinstall/scripts/mirrorselect Tue Oct 9 14:27:55 2018 (r339255) @@ -161,7 +161,7 @@ _UNAME_R=`uname -r` _UNAME_R=${_UNAME_R%-p*} case ${_UNAME_R} in - *-CURRENT|*-STABLE|*-PRERELEASE) + *-ALPHA*|*-CURRENT|*-STABLE|*-PRERELEASE) RELDIR="snapshots" ;; *) Copied: projects/openssl111/usr.sbin/kldxref/ef_riscv.c (from r339242, head/usr.sbin/kldxref/ef_riscv.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/openssl111/usr.sbin/kldxref/ef_riscv.c Tue Oct 9 14:27:55 2018 (r339255, copy of r339242, head/usr.sbin/kldxref/ef_riscv.c) @@ -0,0 +1,78 @@ +/*- + * SPDX-License-Identifier: BSD-2-Clause + * + * Copyright (c) 2018 John Baldwin + * + * This software was developed by SRI International and the University of + * Cambridge Computer Laboratory (Department of Computer Science and + * Technology) under DARPA contract HR0011-18-C-0016 ("ECATS"), as part of the + * DARPA SSITH research programme. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD$"); + +#include +#include + +#include +#include + +#include "ef.h" + +int +ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase, + Elf_Off dataoff, size_t len, void *dest) +{ + Elf_Addr *where, val; + const Elf_Rela *rela; + Elf_Addr addend, addr; + Elf_Size rtype; + + switch (reltype) { + case EF_RELOC_RELA: + rela = (const Elf_Rela *)reldata; + where = (Elf_Addr *)((char *)dest + relbase + rela->r_offset - + dataoff); + addend = rela->r_addend; + rtype = ELF_R_TYPE(rela->r_info); + break; + default: + return (EINVAL); + } + + if ((char *)where < (char *)dest || (char *)where >= (char *)dest + len) + return (0); + + switch (rtype) { + case R_RISCV_RELATIVE: /* B + A */ + addr = addend + relbase; + val = addr; + *where = val; + break; + default: + warnx("unhandled relocation type %d", (int)rtype); + } + return (0); +} From owner-svn-src-projects@freebsd.org Tue Oct 9 15:48:35 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF7F210B0ECB for ; Tue, 9 Oct 2018 15:48:34 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6FD928EE6C; Tue, 9 Oct 2018 15:48:34 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 51D5F141C7; Tue, 9 Oct 2018 15:48:34 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w99FmYtw056337; Tue, 9 Oct 2018 15:48:34 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w99FmYSG056336; Tue, 9 Oct 2018 15:48:34 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201810091548.w99FmYSG056336@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 9 Oct 2018 15:48:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339257 - in projects/openssl111: . contrib/serf X-SVN-Group: projects X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in projects/openssl111: . contrib/serf X-SVN-Commit-Revision: 339257 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 15:48:35 -0000 Author: gjb Date: Tue Oct 9 15:48:33 2018 New Revision: 339257 URL: https://svnweb.freebsd.org/changeset/base/339257 Log: MFH: record svn:mergeinfo for r339256 Sponsored by: The FreeBSD Foundation Modified: Directory Properties: projects/openssl111/ (props changed) projects/openssl111/contrib/serf/ (props changed) From owner-svn-src-projects@freebsd.org Tue Oct 9 15:52:15 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB87D10B1574 for ; Tue, 9 Oct 2018 15:52:15 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B301F8F9A1; Tue, 9 Oct 2018 15:52:15 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 94240143E1; Tue, 9 Oct 2018 15:52:15 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w99FqEcK060290; Tue, 9 Oct 2018 15:52:14 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w99FqEUx060289; Tue, 9 Oct 2018 15:52:14 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201810091552.w99FqEUx060289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 9 Oct 2018 15:52:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339258 - in projects/openssl111/contrib: dma libevent X-SVN-Group: projects X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in projects/openssl111/contrib: dma libevent X-SVN-Commit-Revision: 339258 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 15:52:16 -0000 Author: gjb Date: Tue Oct 9 15:52:14 2018 New Revision: 339258 URL: https://svnweb.freebsd.org/changeset/base/339258 Log: MFH: record svn:mergeinfo for r339246, r339254 Sponsored by: The FreeBSD Foundation Modified: Directory Properties: projects/openssl111/contrib/dma/ (props changed) projects/openssl111/contrib/libevent/ (props changed) From owner-svn-src-projects@freebsd.org Tue Oct 9 17:29:32 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1799D10B543F for ; Tue, 9 Oct 2018 17:29:32 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C19A57370A; Tue, 9 Oct 2018 17:29:31 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BC91115390; Tue, 9 Oct 2018 17:29:31 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w99HTVlU008630; Tue, 9 Oct 2018 17:29:31 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w99HTV5M008629; Tue, 9 Oct 2018 17:29:31 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201810091729.w99HTV5M008629@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Tue, 9 Oct 2018 17:29:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339259 - projects/openssl111/crypto/openssh X-SVN-Group: projects X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: projects/openssl111/crypto/openssh X-SVN-Commit-Revision: 339259 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 17:29:32 -0000 Author: emaste Date: Tue Oct 9 17:29:31 2018 New Revision: 339259 URL: https://svnweb.freebsd.org/changeset/base/339259 Log: Regenerate ssh_namespace.h for OpenSSL 1.1.1 update Modified: projects/openssl111/crypto/openssh/ssh_namespace.h Modified: projects/openssl111/crypto/openssh/ssh_namespace.h ============================================================================== --- projects/openssl111/crypto/openssh/ssh_namespace.h Tue Oct 9 15:52:14 2018 (r339258) +++ projects/openssl111/crypto/openssh/ssh_namespace.h Tue Oct 9 17:29:31 2018 (r339259) @@ -8,37 +8,8 @@ #define Blowfish_expandstate Fssh_Blowfish_expandstate #define Blowfish_initstate Fssh_Blowfish_initstate #define Blowfish_stream2word Fssh_Blowfish_stream2word -#define DH_get0_key Fssh_DH_get0_key -#define DH_get0_pqg Fssh_DH_get0_pqg -#define DH_set0_key Fssh_DH_set0_key -#define DH_set0_pqg Fssh_DH_set0_pqg -#define DH_set_length Fssh_DH_set_length -#define DSA_SIG_get0 Fssh_DSA_SIG_get0 -#define DSA_SIG_set0 Fssh_DSA_SIG_set0 -#define DSA_get0_key Fssh_DSA_get0_key -#define DSA_get0_pqg Fssh_DSA_get0_pqg -#define DSA_set0_key Fssh_DSA_set0_key -#define DSA_set0_pqg Fssh_DSA_set0_pqg -#define ECDSA_SIG_get0 Fssh_ECDSA_SIG_get0 -#define ECDSA_SIG_set0 Fssh_ECDSA_SIG_set0 #define EVP_CIPHER_CTX_get_iv Fssh_EVP_CIPHER_CTX_get_iv #define EVP_CIPHER_CTX_set_iv Fssh_EVP_CIPHER_CTX_set_iv -#define EVP_MD_CTX_free Fssh_EVP_MD_CTX_free -#define EVP_MD_CTX_new Fssh_EVP_MD_CTX_new -#define EVP_PKEY_get0_RSA Fssh_EVP_PKEY_get0_RSA -#define RSA_get0_crt_params Fssh_RSA_get0_crt_params -#define RSA_get0_factors Fssh_RSA_get0_factors -#define RSA_get0_key Fssh_RSA_get0_key -#define RSA_meth_dup Fssh_RSA_meth_dup -#define RSA_meth_free Fssh_RSA_meth_free -#define RSA_meth_get_finish Fssh_RSA_meth_get_finish -#define RSA_meth_set1_name Fssh_RSA_meth_set1_name -#define RSA_meth_set_finish Fssh_RSA_meth_set_finish -#define RSA_meth_set_priv_dec Fssh_RSA_meth_set_priv_dec -#define RSA_meth_set_priv_enc Fssh_RSA_meth_set_priv_enc -#define RSA_set0_crt_params Fssh_RSA_set0_crt_params -#define RSA_set0_factors Fssh_RSA_set0_factors -#define RSA_set0_key Fssh_RSA_set0_key #define _ssh__compat_glob Fssh__ssh__compat_glob #define _ssh__compat_globfree Fssh__ssh__compat_globfree #define _ssh_compat_realpath Fssh__ssh_compat_realpath From owner-svn-src-projects@freebsd.org Thu Oct 11 19:07:05 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08A3A10C4723 for ; Thu, 11 Oct 2018 19:07:04 +0000 (UTC) (envelope-from luporl@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8FD8B7D75B; Thu, 11 Oct 2018 19:07:03 +0000 (UTC) (envelope-from luporl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3858F14888; Thu, 11 Oct 2018 19:07:02 +0000 (UTC) (envelope-from luporl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9BJ72xL061831; Thu, 11 Oct 2018 19:07:02 GMT (envelope-from luporl@FreeBSD.org) Received: (from luporl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9BJ6uBY061797; Thu, 11 Oct 2018 19:06:56 GMT (envelope-from luporl@FreeBSD.org) Message-Id: <201810111906.w9BJ6uBY061797@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: luporl set sender to luporl@FreeBSD.org using -f From: Leandro Lupori Date: Thu, 11 Oct 2018 19:06:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339314 - in projects/power8_bringup_hacks: . contrib/blacklist/bin contrib/bmake contrib/bsnmp/lib contrib/dma contrib/elftoolchain/libelf contrib/ldns contrib/ldns/ldns contrib/libarc... X-SVN-Group: projects X-SVN-Commit-Author: luporl X-SVN-Commit-Paths: in projects/power8_bringup_hacks: . contrib/blacklist/bin contrib/bmake contrib/bsnmp/lib contrib/dma contrib/elftoolchain/libelf contrib/ldns contrib/ldns/ldns contrib/libarchive contrib/libarchive/l... X-SVN-Commit-Revision: 339314 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2018 19:07:05 -0000 Author: luporl Date: Thu Oct 11 19:06:54 2018 New Revision: 339314 URL: https://svnweb.freebsd.org/changeset/base/339314 Log: Merged with HEAD Added: projects/power8_bringup_hacks/contrib/libevent/ - copied from r339313, head/contrib/libevent/ - copied from r339313, head/contrib/mandoc/ projects/power8_bringup_hacks/contrib/serf/STATUS - copied unchanged from r339313, head/contrib/serf/STATUS projects/power8_bringup_hacks/contrib/unbound/util/edns.c - copied unchanged from r339313, head/contrib/unbound/util/edns.c projects/power8_bringup_hacks/contrib/unbound/util/edns.h - copied unchanged from r339313, head/contrib/unbound/util/edns.h projects/power8_bringup_hacks/contrib/unbound/util/tcp_conn_limit.c - copied unchanged from r339313, head/contrib/unbound/util/tcp_conn_limit.c projects/power8_bringup_hacks/contrib/unbound/util/tcp_conn_limit.h - copied unchanged from r339313, head/contrib/unbound/util/tcp_conn_limit.h projects/power8_bringup_hacks/crypto/openssh/openbsd-compat/libressl-api-compat.c - copied unchanged from r339313, head/crypto/openssh/openbsd-compat/libressl-api-compat.c projects/power8_bringup_hacks/crypto/openssl/ACKNOWLEDGEMENTS - copied unchanged from r339313, head/crypto/openssl/ACKNOWLEDGEMENTS projects/power8_bringup_hacks/crypto/openssl/AUTHORS - copied unchanged from r339313, head/crypto/openssl/AUTHORS projects/power8_bringup_hacks/crypto/openssl/NOTES.PERL - copied unchanged from r339313, head/crypto/openssl/NOTES.PERL projects/power8_bringup_hacks/crypto/openssl/NOTES.UNIX - copied unchanged from r339313, head/crypto/openssl/NOTES.UNIX projects/power8_bringup_hacks/crypto/openssl/README.FIPS - copied unchanged from r339313, head/crypto/openssl/README.FIPS projects/power8_bringup_hacks/crypto/openssl/apps/bf_prefix.c - copied unchanged from r339313, head/crypto/openssl/apps/bf_prefix.c projects/power8_bringup_hacks/crypto/openssl/apps/build.info - copied unchanged from r339313, head/crypto/openssl/apps/build.info projects/power8_bringup_hacks/crypto/openssl/apps/ct_log_list.cnf - copied unchanged from r339313, head/crypto/openssl/apps/ct_log_list.cnf projects/power8_bringup_hacks/crypto/openssl/apps/opt.c - copied unchanged from r339313, head/crypto/openssl/apps/opt.c projects/power8_bringup_hacks/crypto/openssl/apps/rehash.c - copied unchanged from r339313, head/crypto/openssl/apps/rehash.c projects/power8_bringup_hacks/crypto/openssl/apps/storeutl.c - copied unchanged from r339313, head/crypto/openssl/apps/storeutl.c projects/power8_bringup_hacks/crypto/openssl/apps/tsget.in - copied unchanged from r339313, head/crypto/openssl/apps/tsget.in projects/power8_bringup_hacks/crypto/openssl/build.info - copied unchanged from r339313, head/crypto/openssl/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-c64xplus.pl - copied unchanged from r339313, head/crypto/openssl/crypto/aes/asm/aes-c64xplus.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aesfx-sparcv9.pl - copied unchanged from r339313, head/crypto/openssl/crypto/aes/asm/aesfx-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/vpaes-armv8.pl - copied unchanged from r339313, head/crypto/openssl/crypto/aes/asm/vpaes-armv8.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/aes/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/aria/ - copied from r339313, head/crypto/openssl/crypto/aria/ projects/power8_bringup_hacks/crypto/openssl/crypto/arm64cpuid.pl - copied unchanged from r339313, head/crypto/openssl/crypto/arm64cpuid.pl projects/power8_bringup_hacks/crypto/openssl/crypto/armv4cpuid.pl - copied unchanged from r339313, head/crypto/openssl/crypto/armv4cpuid.pl projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1_item_list.c - copied unchanged from r339313, head/crypto/openssl/crypto/asn1/asn1_item_list.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1_item_list.h - copied unchanged from r339313, head/crypto/openssl/crypto/asn1/asn1_item_list.h projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn_mstbl.c - copied unchanged from r339313, head/crypto/openssl/crypto/asn1/asn_mstbl.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/asn1/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/p5_scrypt.c - copied unchanged from r339313, head/crypto/openssl/crypto/asn1/p5_scrypt.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/standard_methods.h - copied unchanged from r339313, head/crypto/openssl/crypto/asn1/standard_methods.h projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/tasn_scn.c - copied unchanged from r339313, head/crypto/openssl/crypto/asn1/tasn_scn.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/tbl_standard.h - copied unchanged from r339313, head/crypto/openssl/crypto/asn1/tbl_standard.h projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_int64.c - copied unchanged from r339313, head/crypto/openssl/crypto/asn1/x_int64.c projects/power8_bringup_hacks/crypto/openssl/crypto/async/ - copied from r339313, head/crypto/openssl/crypto/async/ projects/power8_bringup_hacks/crypto/openssl/crypto/bf/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/bf/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/bio/b_addr.c - copied unchanged from r339313, head/crypto/openssl/crypto/bio/b_addr.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/b_sock2.c - copied unchanged from r339313, head/crypto/openssl/crypto/bio/b_sock2.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bio_meth.c - copied unchanged from r339313, head/crypto/openssl/crypto/bio/bio_meth.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/bio/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/blake2/ - copied from r339313, head/crypto/openssl/crypto/blake2/ projects/power8_bringup_hacks/crypto/openssl/crypto/bn/README.pod - copied unchanged from r339313, head/crypto/openssl/crypto/bn/README.pod projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/armv8-mont.pl - copied unchanged from r339313, head/crypto/openssl/crypto/bn/asm/armv8-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/bn-c64xplus.asm - copied unchanged from r339313, head/crypto/openssl/crypto/bn/asm/bn-c64xplus.asm projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/c64xplus-gf2m.pl - copied unchanged from r339313, head/crypto/openssl/crypto/bn/asm/c64xplus-gf2m.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_dh.c - copied unchanged from r339313, head/crypto/openssl/crypto/bn/bn_dh.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_intern.c - copied unchanged from r339313, head/crypto/openssl/crypto/bn/bn_intern.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_srp.c - copied unchanged from r339313, head/crypto/openssl/crypto/bn/bn_srp.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/bn/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/buffer/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/buffer/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/c64xpluscpuid.pl - copied unchanged from r339313, head/crypto/openssl/crypto/c64xpluscpuid.pl projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/camellia/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/cast/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/cast/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/chacha/ - copied from r339313, head/crypto/openssl/crypto/chacha/ projects/power8_bringup_hacks/crypto/openssl/crypto/cmac/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/cmac/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/cms/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/cms/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/comp/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/comp/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/comp/comp_lcl.h - copied unchanged from r339313, head/crypto/openssl/crypto/comp/comp_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/conf/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/conf/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_lcl.h - copied unchanged from r339313, head/crypto/openssl/crypto/conf/conf_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_ssl.c - copied unchanged from r339313, head/crypto/openssl/crypto/conf/conf_ssl.c projects/power8_bringup_hacks/crypto/openssl/crypto/ct/ - copied from r339313, head/crypto/openssl/crypto/ct/ projects/power8_bringup_hacks/crypto/openssl/crypto/ctype.c - copied unchanged from r339313, head/crypto/openssl/crypto/ctype.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/des/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/dh/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/dh/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_locl.h - copied unchanged from r339313, head/crypto/openssl/crypto/dh/dh_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_meth.c - copied unchanged from r339313, head/crypto/openssl/crypto/dh/dh_meth.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_rfc7919.c - copied unchanged from r339313, head/crypto/openssl/crypto/dh/dh_rfc7919.c projects/power8_bringup_hacks/crypto/openssl/crypto/dllmain.c - copied unchanged from r339313, head/crypto/openssl/crypto/dllmain.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/dsa/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_meth.c - copied unchanged from r339313, head/crypto/openssl/crypto/dsa/dsa_meth.c projects/power8_bringup_hacks/crypto/openssl/crypto/dso/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/dso/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/dso/dso_locl.h - copied unchanged from r339313, head/crypto/openssl/crypto/dso/dso_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/ec/asm/ecp_nistz256-armv4.pl - copied unchanged from r339313, head/crypto/openssl/crypto/ec/asm/ecp_nistz256-armv4.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ec/asm/ecp_nistz256-armv8.pl - copied unchanged from r339313, head/crypto/openssl/crypto/ec/asm/ecp_nistz256-armv8.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ec/asm/ecp_nistz256-ppc64.pl - copied unchanged from r339313, head/crypto/openssl/crypto/ec/asm/ecp_nistz256-ppc64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ec/asm/ecp_nistz256-sparcv9.pl - copied unchanged from r339313, head/crypto/openssl/crypto/ec/asm/ecp_nistz256-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ec/asm/ecp_nistz256-x86.pl - copied unchanged from r339313, head/crypto/openssl/crypto/ec/asm/ecp_nistz256-x86.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ec/asm/x25519-ppc64.pl - copied unchanged from r339313, head/crypto/openssl/crypto/ec/asm/x25519-ppc64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ec/asm/x25519-x86_64.pl - copied unchanged from r339313, head/crypto/openssl/crypto/ec/asm/x25519-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ec/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/ec/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/ec/curve25519.c - copied unchanged from r339313, head/crypto/openssl/crypto/ec/curve25519.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/curve448/ - copied from r339313, head/crypto/openssl/crypto/ec/curve448/ projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_kmeth.c - copied unchanged from r339313, head/crypto/openssl/crypto/ec/ec_kmeth.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecdh_kdf.c - copied unchanged from r339313, head/crypto/openssl/crypto/ec/ecdh_kdf.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecdh_ossl.c - copied unchanged from r339313, head/crypto/openssl/crypto/ec/ecdh_ossl.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecdsa_ossl.c - copied unchanged from r339313, head/crypto/openssl/crypto/ec/ecdsa_ossl.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecdsa_sign.c - copied unchanged from r339313, head/crypto/openssl/crypto/ec/ecdsa_sign.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecdsa_vrf.c - copied unchanged from r339313, head/crypto/openssl/crypto/ec/ecdsa_vrf.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecx_meth.c - copied unchanged from r339313, head/crypto/openssl/crypto/ec/ecx_meth.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/engine/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_devcrypto.c - copied unchanged from r339313, head/crypto/openssl/crypto/engine/eng_devcrypto.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_eckey.c - copied unchanged from r339313, head/crypto/openssl/crypto/engine/tb_eckey.c projects/power8_bringup_hacks/crypto/openssl/crypto/err/README - copied unchanged from r339313, head/crypto/openssl/crypto/err/README projects/power8_bringup_hacks/crypto/openssl/crypto/err/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/err/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/err/openssl.txt - copied unchanged from r339313, head/crypto/openssl/crypto/err/openssl.txt projects/power8_bringup_hacks/crypto/openssl/crypto/evp/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/evp/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/evp/cmeth_lib.c - copied unchanged from r339313, head/crypto/openssl/crypto/evp/cmeth_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_aria.c - copied unchanged from r339313, head/crypto/openssl/crypto/evp/e_aria.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_chacha20_poly1305.c - copied unchanged from r339313, head/crypto/openssl/crypto/evp/e_chacha20_poly1305.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_sm4.c - copied unchanged from r339313, head/crypto/openssl/crypto/evp/e_sm4.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_md5_sha1.c - copied unchanged from r339313, head/crypto/openssl/crypto/evp/m_md5_sha1.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_sha3.c - copied unchanged from r339313, head/crypto/openssl/crypto/evp/m_sha3.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/pbe_scrypt.c - copied unchanged from r339313, head/crypto/openssl/crypto/evp/pbe_scrypt.c projects/power8_bringup_hacks/crypto/openssl/crypto/hmac/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/hmac/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/hmac/hmac_lcl.h - copied unchanged from r339313, head/crypto/openssl/crypto/hmac/hmac_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/idea/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/idea/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/include/ - copied from r339313, head/crypto/openssl/crypto/include/ projects/power8_bringup_hacks/crypto/openssl/crypto/init.c - copied unchanged from r339313, head/crypto/openssl/crypto/init.c projects/power8_bringup_hacks/crypto/openssl/crypto/kdf/ - copied from r339313, head/crypto/openssl/crypto/kdf/ projects/power8_bringup_hacks/crypto/openssl/crypto/lhash/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/lhash/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/lhash/lhash_lcl.h - copied unchanged from r339313, head/crypto/openssl/crypto/lhash/lhash_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/md2/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/md2/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/md4/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/md4/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/md5/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/md5/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/mdc2/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/mdc2/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/mem_sec.c - copied unchanged from r339313, head/crypto/openssl/crypto/mem_sec.c projects/power8_bringup_hacks/crypto/openssl/crypto/mips_arch.h - copied unchanged from r339313, head/crypto/openssl/crypto/mips_arch.h projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghash-c64xplus.pl - copied unchanged from r339313, head/crypto/openssl/crypto/modes/asm/ghash-c64xplus.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/modes/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/modes/ocb128.c - copied unchanged from r339313, head/crypto/openssl/crypto/modes/ocb128.c projects/power8_bringup_hacks/crypto/openssl/crypto/o_fopen.c - copied unchanged from r339313, head/crypto/openssl/crypto/o_fopen.c projects/power8_bringup_hacks/crypto/openssl/crypto/objects/README - copied unchanged from r339313, head/crypto/openssl/crypto/objects/README projects/power8_bringup_hacks/crypto/openssl/crypto/objects/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/objects/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_lcl.h - copied unchanged from r339313, head/crypto/openssl/crypto/objects/obj_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/ocsp/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_lcl.h - copied unchanged from r339313, head/crypto/openssl/crypto/ocsp/ocsp_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/v3_ocsp.c - copied unchanged from r339313, head/crypto/openssl/crypto/ocsp/v3_ocsp.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/pem/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/README - copied unchanged from r339313, head/crypto/openssl/crypto/perlasm/README projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/arm-xlate.pl - copied unchanged from r339313, head/crypto/openssl/crypto/perlasm/arm-xlate.pl projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/pkcs12/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_lcl.h - copied unchanged from r339313, head/crypto/openssl/crypto/pkcs12/p12_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_sbag.c - copied unchanged from r339313, head/crypto/openssl/crypto/pkcs12/p12_sbag.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/pkcs7/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/poly1305/ - copied from r339313, head/crypto/openssl/crypto/poly1305/ projects/power8_bringup_hacks/crypto/openssl/crypto/rand/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/rand/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/rand/drbg_ctr.c - copied unchanged from r339313, head/crypto/openssl/crypto/rand/drbg_ctr.c projects/power8_bringup_hacks/crypto/openssl/crypto/rand/drbg_lib.c - copied unchanged from r339313, head/crypto/openssl/crypto/rand/drbg_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/rc2/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/asm/rc4-c64xplus.pl - copied unchanged from r339313, head/crypto/openssl/crypto/rc4/asm/rc4-c64xplus.pl projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/rc4/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/rc5/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/ripemd/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/rsa/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_meth.c - copied unchanged from r339313, head/crypto/openssl/crypto/rsa/rsa_meth.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_mp.c - copied unchanged from r339313, head/crypto/openssl/crypto/rsa/rsa_mp.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_ossl.c - copied unchanged from r339313, head/crypto/openssl/crypto/rsa/rsa_ossl.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_x931g.c - copied unchanged from r339313, head/crypto/openssl/crypto/rsa/rsa_x931g.c projects/power8_bringup_hacks/crypto/openssl/crypto/s390x_arch.h - copied unchanged from r339313, head/crypto/openssl/crypto/s390x_arch.h projects/power8_bringup_hacks/crypto/openssl/crypto/s390xcpuid.pl - copied unchanged from r339313, head/crypto/openssl/crypto/s390xcpuid.pl projects/power8_bringup_hacks/crypto/openssl/crypto/seed/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/seed/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-armv4.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-armv4.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-armv8.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-armv8.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-avx2.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-avx2.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-avx512.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-avx512.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-avx512vl.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-avx512vl.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-c64x.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-c64x.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-mmx.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-mmx.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-ppc64.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-ppc64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-s390x.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-s390x.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600-x86_64.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/keccak1600p8-ppc.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/keccak1600p8-ppc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-c64xplus.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/sha1-c64xplus.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha256-c64xplus.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/sha256-c64xplus.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-c64xplus.pl - copied unchanged from r339313, head/crypto/openssl/crypto/sha/asm/sha512-c64xplus.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/sha/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/sha/keccak1600.c - copied unchanged from r339313, head/crypto/openssl/crypto/sha/keccak1600.c projects/power8_bringup_hacks/crypto/openssl/crypto/siphash/ - copied from r339313, head/crypto/openssl/crypto/siphash/ projects/power8_bringup_hacks/crypto/openssl/crypto/sm2/ - copied from r339313, head/crypto/openssl/crypto/sm2/ projects/power8_bringup_hacks/crypto/openssl/crypto/sm3/ - copied from r339313, head/crypto/openssl/crypto/sm3/ projects/power8_bringup_hacks/crypto/openssl/crypto/sm4/ - copied from r339313, head/crypto/openssl/crypto/sm4/ projects/power8_bringup_hacks/crypto/openssl/crypto/srp/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/srp/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/stack/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/stack/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/store/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/store/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/store/loader_file.c - copied unchanged from r339313, head/crypto/openssl/crypto/store/loader_file.c projects/power8_bringup_hacks/crypto/openssl/crypto/store/store_err.c - copied unchanged from r339313, head/crypto/openssl/crypto/store/store_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/store/store_init.c - copied unchanged from r339313, head/crypto/openssl/crypto/store/store_init.c projects/power8_bringup_hacks/crypto/openssl/crypto/store/store_lib.c - copied unchanged from r339313, head/crypto/openssl/crypto/store/store_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/store/store_locl.h - copied unchanged from r339313, head/crypto/openssl/crypto/store/store_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/store/store_register.c - copied unchanged from r339313, head/crypto/openssl/crypto/store/store_register.c projects/power8_bringup_hacks/crypto/openssl/crypto/store/store_strings.c - copied unchanged from r339313, head/crypto/openssl/crypto/store/store_strings.c projects/power8_bringup_hacks/crypto/openssl/crypto/threads_none.c - copied unchanged from r339313, head/crypto/openssl/crypto/threads_none.c projects/power8_bringup_hacks/crypto/openssl/crypto/threads_pthread.c - copied unchanged from r339313, head/crypto/openssl/crypto/threads_pthread.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/ts/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_lcl.h - copied unchanged from r339313, head/crypto/openssl/crypto/ts/ts_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/txt_db/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/txt_db/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/ui/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/ui/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/ui/ui_null.c - copied unchanged from r339313, head/crypto/openssl/crypto/ui/ui_null.c projects/power8_bringup_hacks/crypto/openssl/crypto/whrlpool/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/whrlpool/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/x509/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/x509/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/x509/t_crl.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/t_crl.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/t_req.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/t_req.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/t_x509.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/t_x509.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_lcl.h - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x509_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_meth.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x509_meth.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x_attrib.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x_attrib.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x_crl.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x_crl.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x_exten.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x_exten.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x_name.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x_name.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x_pubkey.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x_pubkey.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x_req.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x_req.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x_x509.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x_x509.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x_x509a.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509/x_x509a.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/build.info - copied unchanged from r339313, head/crypto/openssl/crypto/x509v3/build.info projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/standard_exts.h - copied unchanged from r339313, head/crypto/openssl/crypto/x509v3/standard_exts.h projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_admis.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509v3/v3_admis.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_admis.h - copied unchanged from r339313, head/crypto/openssl/crypto/x509v3/v3_admis.h projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_tlsf.c - copied unchanged from r339313, head/crypto/openssl/crypto/x509v3/v3_tlsf.c projects/power8_bringup_hacks/crypto/openssl/doc/man1/ - copied from r339313, head/crypto/openssl/doc/man1/ projects/power8_bringup_hacks/crypto/openssl/doc/man5/ - copied from r339313, head/crypto/openssl/doc/man5/ projects/power8_bringup_hacks/crypto/openssl/doc/man7/ - copied from r339313, head/crypto/openssl/doc/man7/ projects/power8_bringup_hacks/crypto/openssl/engines/asm/ - copied from r339313, head/crypto/openssl/engines/asm/ projects/power8_bringup_hacks/crypto/openssl/engines/build.info - copied unchanged from r339313, head/crypto/openssl/engines/build.info projects/power8_bringup_hacks/crypto/openssl/engines/e_afalg.c - copied unchanged from r339313, head/crypto/openssl/engines/e_afalg.c projects/power8_bringup_hacks/crypto/openssl/engines/e_afalg.h - copied unchanged from r339313, head/crypto/openssl/engines/e_afalg.h projects/power8_bringup_hacks/crypto/openssl/engines/e_afalg.txt - copied unchanged from r339313, head/crypto/openssl/engines/e_afalg.txt projects/power8_bringup_hacks/crypto/openssl/engines/e_afalg_err.c - copied unchanged from r339313, head/crypto/openssl/engines/e_afalg_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_afalg_err.h - copied unchanged from r339313, head/crypto/openssl/engines/e_afalg_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_capi.txt - copied unchanged from r339313, head/crypto/openssl/engines/e_capi.txt projects/power8_bringup_hacks/crypto/openssl/engines/e_dasync.c - copied unchanged from r339313, head/crypto/openssl/engines/e_dasync.c projects/power8_bringup_hacks/crypto/openssl/engines/e_dasync.txt - copied unchanged from r339313, head/crypto/openssl/engines/e_dasync.txt projects/power8_bringup_hacks/crypto/openssl/engines/e_dasync_err.c - copied unchanged from r339313, head/crypto/openssl/engines/e_dasync_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_dasync_err.h - copied unchanged from r339313, head/crypto/openssl/engines/e_dasync_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_ossltest.c - copied unchanged from r339313, head/crypto/openssl/engines/e_ossltest.c projects/power8_bringup_hacks/crypto/openssl/engines/e_ossltest.txt - copied unchanged from r339313, head/crypto/openssl/engines/e_ossltest.txt projects/power8_bringup_hacks/crypto/openssl/engines/e_ossltest_err.c - copied unchanged from r339313, head/crypto/openssl/engines/e_ossltest_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_ossltest_err.h - copied unchanged from r339313, head/crypto/openssl/engines/e_ossltest_err.h projects/power8_bringup_hacks/crypto/openssl/include/ - copied from r339313, head/crypto/openssl/include/ projects/power8_bringup_hacks/crypto/openssl/ssl/build.info - copied unchanged from r339313, head/crypto/openssl/ssl/build.info projects/power8_bringup_hacks/crypto/openssl/ssl/d1_msg.c - copied unchanged from r339313, head/crypto/openssl/ssl/d1_msg.c projects/power8_bringup_hacks/crypto/openssl/ssl/methods.c - copied unchanged from r339313, head/crypto/openssl/ssl/methods.c projects/power8_bringup_hacks/crypto/openssl/ssl/packet.c - copied unchanged from r339313, head/crypto/openssl/ssl/packet.c projects/power8_bringup_hacks/crypto/openssl/ssl/packet_locl.h - copied unchanged from r339313, head/crypto/openssl/ssl/packet_locl.h projects/power8_bringup_hacks/crypto/openssl/ssl/pqueue.c - copied unchanged from r339313, head/crypto/openssl/ssl/pqueue.c projects/power8_bringup_hacks/crypto/openssl/ssl/record/ - copied from r339313, head/crypto/openssl/ssl/record/ projects/power8_bringup_hacks/crypto/openssl/ssl/s3_msg.c - copied unchanged from r339313, head/crypto/openssl/ssl/s3_msg.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_cert_table.h - copied unchanged from r339313, head/crypto/openssl/ssl/ssl_cert_table.h projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_init.c - copied unchanged from r339313, head/crypto/openssl/ssl/ssl_init.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_mcnf.c - copied unchanged from r339313, head/crypto/openssl/ssl/ssl_mcnf.c projects/power8_bringup_hacks/crypto/openssl/ssl/statem/ - copied from r339313, head/crypto/openssl/ssl/statem/ projects/power8_bringup_hacks/crypto/openssl/ssl/tls13_enc.c - copied unchanged from r339313, head/crypto/openssl/ssl/tls13_enc.c projects/power8_bringup_hacks/lib/lib80211/regdomain.xml - copied unchanged from r339313, head/lib/lib80211/regdomain.xml projects/power8_bringup_hacks/lib/libalias/libalias/libalias.conf - copied unchanged from r339313, head/lib/libalias/libalias/libalias.conf projects/power8_bringup_hacks/lib/libc/net/hosts - copied unchanged from r339313, head/lib/libc/net/hosts projects/power8_bringup_hacks/lib/libc/net/hosts.equiv - copied unchanged from r339313, head/lib/libc/net/hosts.equiv projects/power8_bringup_hacks/lib/libc/net/networks - copied unchanged from r339313, head/lib/libc/net/networks projects/power8_bringup_hacks/lib/libc/net/nsswitch.conf - copied unchanged from r339313, head/lib/libc/net/nsswitch.conf projects/power8_bringup_hacks/lib/libc/net/protocols - copied unchanged from r339313, head/lib/libc/net/protocols projects/power8_bringup_hacks/lib/libc/posix1e/mac.conf - copied unchanged from r339313, head/lib/libc/posix1e/mac.conf projects/power8_bringup_hacks/lib/libc/rpc/netconfig - copied unchanged from r339313, head/lib/libc/rpc/netconfig projects/power8_bringup_hacks/lib/libc/rpc/rpc - copied unchanged from r339313, head/lib/libc/rpc/rpc projects/power8_bringup_hacks/lib/libopie/opieaccess - copied unchanged from r339313, head/lib/libopie/opieaccess projects/power8_bringup_hacks/lib/libsmb/nsmb.conf - copied unchanged from r339313, head/lib/libsmb/nsmb.conf projects/power8_bringup_hacks/lib/libwrap/hosts.allow - copied unchanged from r339313, head/lib/libwrap/hosts.allow projects/power8_bringup_hacks/libexec/rtld-elf/libmap.conf - copied unchanged from r339313, head/libexec/rtld-elf/libmap.conf projects/power8_bringup_hacks/sbin/bsdlabel/disktab - copied unchanged from r339313, head/sbin/bsdlabel/disktab projects/power8_bringup_hacks/secure/lib/libcrypto/Version.map - copied unchanged from r339313, head/secure/lib/libcrypto/Version.map projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/arm64cpuid.S - copied unchanged from r339313, head/secure/lib/libcrypto/aarch64/arm64cpuid.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/armv8-mont.S - copied unchanged from r339313, head/secure/lib/libcrypto/aarch64/armv8-mont.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/chacha-armv8.S - copied unchanged from r339313, head/secure/lib/libcrypto/aarch64/chacha-armv8.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/ecp_nistz256-armv8.S - copied unchanged from r339313, head/secure/lib/libcrypto/aarch64/ecp_nistz256-armv8.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/keccak1600-armv8.S - copied unchanged from r339313, head/secure/lib/libcrypto/aarch64/keccak1600-armv8.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/poly1305-armv8.S - copied unchanged from r339313, head/secure/lib/libcrypto/aarch64/poly1305-armv8.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/vpaes-armv8.S - copied unchanged from r339313, head/secure/lib/libcrypto/aarch64/vpaes-armv8.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/chacha-x86_64.S - copied unchanged from r339313, head/secure/lib/libcrypto/amd64/chacha-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/e_padlock-x86_64.S - copied unchanged from r339313, head/secure/lib/libcrypto/amd64/e_padlock-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/keccak1600-x86_64.S - copied unchanged from r339313, head/secure/lib/libcrypto/amd64/keccak1600-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/poly1305-x86_64.S - copied unchanged from r339313, head/secure/lib/libcrypto/amd64/poly1305-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/x25519-x86_64.S - copied unchanged from r339313, head/secure/lib/libcrypto/amd64/x25519-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/armv4cpuid.S - copied unchanged from r339313, head/secure/lib/libcrypto/arm/armv4cpuid.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/chacha-armv4.S - copied unchanged from r339313, head/secure/lib/libcrypto/arm/chacha-armv4.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/ecp_nistz256-armv4.S - copied unchanged from r339313, head/secure/lib/libcrypto/arm/ecp_nistz256-armv4.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/keccak1600-armv4.S - copied unchanged from r339313, head/secure/lib/libcrypto/arm/keccak1600-armv4.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/poly1305-armv4.S - copied unchanged from r339313, head/secure/lib/libcrypto/arm/poly1305-armv4.S projects/power8_bringup_hacks/secure/lib/libcrypto/engines/capi/ - copied from r339313, head/secure/lib/libcrypto/engines/capi/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/padlock/ - copied from r339313, head/secure/lib/libcrypto/engines/padlock/ projects/power8_bringup_hacks/secure/lib/libcrypto/i386/cast-586.S - copied unchanged from r339313, head/secure/lib/libcrypto/i386/cast-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/chacha-x86.S - copied unchanged from r339313, head/secure/lib/libcrypto/i386/chacha-x86.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/e_padlock-x86.S - copied unchanged from r339313, head/secure/lib/libcrypto/i386/e_padlock-x86.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/ecp_nistz256-x86.S - copied unchanged from r339313, head/secure/lib/libcrypto/i386/ecp_nistz256-x86.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/poly1305-x86.S - copied unchanged from r339313, head/secure/lib/libcrypto/i386/poly1305-x86.S projects/power8_bringup_hacks/secure/lib/libcrypto/man/ADMISSIONS.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ADMISSIONS.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_INTEGER_get_int64.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ASN1_INTEGER_get_int64.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_ITEM_lookup.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ASN1_ITEM_lookup.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_STRING_TABLE_add.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ASN1_STRING_TABLE_add.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_TYPE_get.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ASN1_TYPE_get.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASYNC_WAIT_CTX_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ASYNC_WAIT_CTX_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASYNC_start_job.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ASYNC_start_job.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BF_encrypt.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BF_encrypt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_ADDR.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BIO_ADDR.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_ADDRINFO.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BIO_ADDRINFO.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_connect.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BIO_connect.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_get_data.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BIO_get_data.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_get_ex_new_index.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BIO_get_ex_new_index.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_meth_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BIO_meth_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_parse_hostserv.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BIO_parse_hostserv.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_printf.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BIO_printf.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_security_bits.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BN_security_bits.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BUF_MEM_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/BUF_MEM_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CRYPTO_THREAD_run_once.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/CRYPTO_THREAD_run_once.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CRYPTO_get_ex_new_index.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/CRYPTO_get_ex_new_index.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CTLOG_STORE_get0_log_by_id.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/CTLOG_STORE_get0_log_by_id.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CTLOG_STORE_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/CTLOG_STORE_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CTLOG_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/CTLOG_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CT_POLICY_EVAL_CTX_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/CT_POLICY_EVAL_CTX_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DEFINE_STACK_OF.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DEFINE_STACK_OF.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DES_random_key.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DES_random_key.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_get0_pqg.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DH_get0_pqg.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_get_1024_160.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DH_get_1024_160.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_meth_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DH_meth_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_new_by_nid.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DH_new_by_nid.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_get0_pqg.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DSA_get0_pqg.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_meth_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DSA_meth_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DTLS_get_data_mtu.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DTLS_get_data_mtu.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DTLS_set_timer_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DTLS_set_timer_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DTLSv1_listen.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/DTLSv1_listen.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ECDSA_SIG_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ECDSA_SIG_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ECPKParameters_print.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ECPKParameters_print.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EC_KEY_get_enc_flags.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EC_KEY_get_enc_flags.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ENGINE_add.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/ENGINE_add.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_CIPHER_CTX_get_cipher_data.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_CIPHER_CTX_get_cipher_data.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_CIPHER_meth_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_CIPHER_meth_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_MD_meth_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_MD_meth_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_ASN1_METHOD.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_PKEY_ASN1_METHOD.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_CTX_set1_pbe_pass.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_PKEY_CTX_set1_pbe_pass.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_PKEY_CTX_set_hkdf_md.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_CTX_set_rsa_pss_keygen_md.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_PKEY_CTX_set_rsa_pss_keygen_md.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_CTX_set_scrypt_N.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_PKEY_CTX_set_scrypt_N.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_CTX_set_tls1_prf_md.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_PKEY_CTX_set_tls1_prf_md.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_asn1_get_count.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_PKEY_asn1_get_count.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest_nid.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest_nid.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_meth_get_count.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_PKEY_meth_get_count.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_aes.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_aes.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_aria.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_aria.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_bf_cbc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_bf_cbc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_blake2b512.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_blake2b512.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_camellia.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_camellia.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_cast5_cbc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_cast5_cbc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_chacha20.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_chacha20.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_des.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_des.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_desx_cbc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_desx_cbc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_idea_cbc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_idea_cbc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_md2.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_md2.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_md4.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_md4.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_md5.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_md5.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_mdc2.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_mdc2.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_rc2_cbc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_rc2_cbc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_rc4.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_rc4.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_rc5_32_12_16_cbc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_rc5_32_12_16_cbc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_ripemd160.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_ripemd160.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_seed_cbc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_seed_cbc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_sha1.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_sha1.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_sha224.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_sha224.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_sha3_224.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_sha3_224.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_sm3.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_sm3.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_sm4_cbc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_sm4_cbc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_whirlpool.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/EVP_whirlpool.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/HMAC.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/HMAC.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/MD5.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/MD5.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/MDC2_Init.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/MDC2_Init.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OCSP_REQUEST_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OCSP_REQUEST_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OCSP_cert_to_id.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OCSP_cert_to_id.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OCSP_request_add1_nonce.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OCSP_request_add1_nonce.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OCSP_resp_find_status.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OCSP_resp_find_status.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OCSP_response_status.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OCSP_response_status.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OCSP_sendreq_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OCSP_sendreq_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_LH_COMPFUNC.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OPENSSL_LH_COMPFUNC.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_LH_stats.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OPENSSL_LH_stats.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_fork_prepare.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OPENSSL_fork_prepare.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_init_crypto.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OPENSSL_init_crypto.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_init_ssl.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OPENSSL_init_ssl.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_malloc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OPENSSL_malloc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_secure_malloc.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OPENSSL_secure_malloc.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OSSL_STORE_INFO.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OSSL_STORE_INFO.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OSSL_STORE_LOADER.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OSSL_STORE_LOADER.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OSSL_STORE_SEARCH.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OSSL_STORE_SEARCH.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OSSL_STORE_expect.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OSSL_STORE_expect.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OSSL_STORE_open.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/OSSL_STORE_open.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PEM_bytes_read_bio.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/PEM_bytes_read_bio.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PEM_read.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/PEM_read.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PEM_read_CMS.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/PEM_read_CMS.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PEM_read_bio_PrivateKey.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/PEM_read_bio_PrivateKey.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PEM_read_bio_ex.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/PEM_read_bio_ex.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PKCS12_newpass.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/PKCS12_newpass.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PKCS5_PBKDF2_HMAC.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/PKCS5_PBKDF2_HMAC.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_DRBG_generate.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RAND_DRBG_generate.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_DRBG_get0_master.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RAND_DRBG_get0_master.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_DRBG_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RAND_DRBG_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_DRBG_reseed.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RAND_DRBG_reseed.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_DRBG_set_callbacks.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RAND_DRBG_set_callbacks.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_DRBG_set_ex_data.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RAND_DRBG_set_ex_data.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RC4_set_key.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RC4_set_key.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RIPEMD160_Init.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RIPEMD160_Init.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_get0_key.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RSA_get0_key.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_meth_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/RSA_meth_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SCT_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SCT_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SCT_print.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SCT_print.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SCT_validate.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SCT_validate.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SHA256_Init.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SHA256_Init.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CIPHER_get_name.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CIPHER_get_name.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_COMP_add_compression_method.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_COMP_add_compression_method.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CONF_CTX_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CONF_CTX_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CONF_CTX_set1_prefix.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CONF_CTX_set1_prefix.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CONF_CTX_set_flags.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CONF_CTX_set_flags.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CONF_CTX_set_ssl_ctx.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CONF_CTX_set_ssl_ctx.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CONF_cmd.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CONF_cmd.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CONF_cmd_argv.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CONF_cmd_argv.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_add1_chain_cert.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_add1_chain_cert.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_add_extra_chain_cert.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_add_extra_chain_cert.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_add_session.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_add_session.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_config.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_config.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_ctrl.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_ctrl.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_dane_enable.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_dane_enable.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_flush_sessions.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_flush_sessions.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_free.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_free.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_get0_param.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_get0_param.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_get_verify_mode.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_get_verify_mode.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_has_client_custom_ext.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_has_client_custom_ext.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_load_verify_locations.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_load_verify_locations.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_sess_number.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_sess_number.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_sess_set_cache_size.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_sess_set_cache_size.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_sess_set_get_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_sess_set_get_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_sessions.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_sessions.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set0_CA_list.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set0_CA_list.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set1_curves.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set1_curves.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set1_sigalgs.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set1_sigalgs.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set1_verify_cert_store.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set1_verify_cert_store.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_alpn_select_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_alpn_select_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_cert_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_cert_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_cert_store.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_cert_store.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_cert_verify_callback.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_cert_verify_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_cipher_list.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_cipher_list.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_client_CA_list.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_client_CA_list.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_client_cert_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_client_cert_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_client_hello_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_client_hello_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_ct_validation_callback.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_ct_validation_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_ctlog_list_file.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_ctlog_list_file.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_default_passwd_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_default_passwd_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_ex_data.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_ex_data.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_generate_session_id.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_generate_session_id.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_info_callback.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_info_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_keylog_callback.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_keylog_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_max_cert_list.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_max_cert_list.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_min_proto_version.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_min_proto_version.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_mode.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_mode.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_msg_callback.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_msg_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_num_tickets.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_num_tickets.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_options.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_options.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_psk_client_callback.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_psk_client_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_quiet_shutdown.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_quiet_shutdown.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_read_ahead.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_read_ahead.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_record_padding_callback.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_record_padding_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_security_level.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_security_level.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_session_cache_mode.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_session_cache_mode.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_session_id_context.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_session_id_context.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_session_ticket_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_session_ticket_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_split_send_fragment.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_split_send_fragment.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_ssl_version.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_ssl_version.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_stateless_cookie_generate_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_stateless_cookie_generate_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_timeout.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_timeout.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_tlsext_servername_callback.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_tlsext_servername_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_tlsext_status_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_tlsext_status_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_tlsext_ticket_key_cb.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_tlsext_ticket_key_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_tlsext_use_srtp.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_tlsext_use_srtp.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_tmp_dh_callback.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_tmp_dh_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_set_verify.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_set_verify.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_use_certificate.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_use_certificate.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_use_psk_identity_hint.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_use_psk_identity_hint.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_CTX_use_serverinfo.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_CTX_use_serverinfo.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_free.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_free.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_get0_cipher.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_get0_cipher.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_get0_hostname.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_get0_hostname.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_get0_id_context.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_get0_id_context.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_get0_peer.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_get0_peer.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_get_compress_id.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_get_compress_id.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_get_ex_data.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_get_ex_data.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_get_protocol_version.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_get_protocol_version.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_get_time.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_get_time.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_has_ticket.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_has_ticket.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_is_resumable.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_is_resumable.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_print.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_print.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_SESSION_set1_id.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_SESSION_set1_id.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_accept.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_accept.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_alert_type_string.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_alert_type_string.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_alloc_buffers.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_alloc_buffers.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_check_chain.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_check_chain.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_clear.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_clear.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_connect.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_connect.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_do_handshake.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_do_handshake.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_export_keying_material.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_export_keying_material.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_extension_supported.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_extension_supported.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_free.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_free.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get0_peer_scts.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get0_peer_scts.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_SSL_CTX.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_SSL_CTX.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_all_async_fds.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_all_async_fds.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_ciphers.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_ciphers.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_client_CA_list.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_client_CA_list.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_client_random.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_client_random.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_current_cipher.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_current_cipher.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_default_timeout.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_default_timeout.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_error.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_error.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_extms_support.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_extms_support.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_fd.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_fd.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_peer_cert_chain.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_peer_cert_chain.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_peer_certificate.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_peer_certificate.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_peer_signature_nid.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_peer_signature_nid.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_psk_identity.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_psk_identity.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_rbio.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_rbio.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_server_tmp_key.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_server_tmp_key.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_session.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_session.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_shared_sigalgs.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_shared_sigalgs.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_verify_result.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_verify_result.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_get_version.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_get_version.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_in_init.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_in_init.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_key_update.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_key_update.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_library_init.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_library_init.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_load_client_CA_file.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_load_client_CA_file.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_pending.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_pending.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_read.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_read.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_read_early_data.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_read_early_data.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_rstate_string.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_rstate_string.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_session_reused.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_session_reused.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_set1_host.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_set1_host.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_set_bio.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_set_bio.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_set_connect_state.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_set_connect_state.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_set_fd.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_set_fd.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_set_session.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_set_session.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_set_shutdown.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_set_shutdown.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_set_verify_result.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_set_verify_result.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_shutdown.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_shutdown.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_state_string.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_state_string.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_want.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_want.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SSL_write.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/SSL_write.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/UI_STRING.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/UI_STRING.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/UI_UTIL_read_pw.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/UI_UTIL_read_pw.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/UI_create_method.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/UI_create_method.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/UI_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/UI_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509V3_get_d2i.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509V3_get_d2i.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_ALGOR_dup.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_ALGOR_dup.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_CRL_get0_by_serial.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_CRL_get0_by_serial.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_EXTENSION_set_object.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_EXTENSION_set_object.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_LOOKUP_hash_dir.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_LOOKUP_hash_dir.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_LOOKUP_meth_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_LOOKUP_meth_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_NAME_get0_der.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_NAME_get0_der.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_PUBKEY_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_PUBKEY_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_SIG_get0.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_SIG_get0.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_STORE_add_cert.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_STORE_add_cert.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_STORE_get0_param.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_STORE_get0_param.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_STORE_new.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_STORE_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_check_ca.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_check_ca.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_check_issued.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_check_issued.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_digest.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_digest.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_dup.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_dup.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_get0_notBefore.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_get0_notBefore.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_get0_signature.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_get0_signature.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_get0_uids.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_get0_uids.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_get_extension_flags.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_get_extension_flags.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_get_pubkey.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_get_pubkey.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_get_serialNumber.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_get_serialNumber.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_get_subject_name.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_get_subject_name.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_get_version.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_get_version.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_sign.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509_sign.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509v3_get_ext_by_NID.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/X509v3_get_ext_by_NID.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey_bio.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey_bio.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_SSL_SESSION.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/d2i_SSL_SESSION.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/i2d_re_X509_tbs.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/i2d_re_X509_tbs.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/o2i_SCT_LIST.3 - copied unchanged from r339313, head/secure/lib/libcrypto/man/o2i_SCT_LIST.3 projects/power8_bringup_hacks/secure/lib/libcrypto/opensslconf.h.in - copied unchanged from r339313, head/secure/lib/libcrypto/opensslconf.h.in projects/power8_bringup_hacks/secure/lib/libssl/Version.map - copied unchanged from r339313, head/secure/lib/libssl/Version.map projects/power8_bringup_hacks/secure/usr.bin/openssl/man/engine.1 - copied unchanged from r339313, head/secure/usr.bin/openssl/man/engine.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/list.1 - copied unchanged from r339313, head/secure/usr.bin/openssl/man/list.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/prime.1 - copied unchanged from r339313, head/secure/usr.bin/openssl/man/prime.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/srp.1 - copied unchanged from r339313, head/secure/usr.bin/openssl/man/srp.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/storeutl.1 - copied unchanged from r339313, head/secure/usr.bin/openssl/man/storeutl.1 projects/power8_bringup_hacks/share/man/man4/iflib.4 - copied unchanged from r339313, head/share/man/man4/iflib.4 projects/power8_bringup_hacks/sys/arm64/include/ifunc.h - copied unchanged from r339313, head/sys/arm64/include/ifunc.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/components/executer/exserial.c - copied unchanged from r339313, head/sys/contrib/dev/acpica/components/executer/exserial.c projects/power8_bringup_hacks/tools/build/options/WITH_HYPERV - copied unchanged from r339313, head/tools/build/options/WITH_HYPERV projects/power8_bringup_hacks/usr.bin/tip/tip/phones - copied unchanged from r339313, head/usr.bin/tip/tip/phones projects/power8_bringup_hacks/usr.bin/tip/tip/remote - copied unchanged from r339313, head/usr.bin/tip/tip/remote projects/power8_bringup_hacks/usr.sbin/amd/amd/amd.map - copied unchanged from r339313, head/usr.sbin/amd/amd/amd.map projects/power8_bringup_hacks/usr.sbin/kldxref/ef_riscv.c - copied unchanged from r339313, head/usr.sbin/kldxref/ef_riscv.c projects/power8_bringup_hacks/usr.sbin/lpr/lpd/hosts.lpd - copied unchanged from r339313, head/usr.sbin/lpr/lpd/hosts.lpd projects/power8_bringup_hacks/usr.sbin/lpr/lpd/printcap - copied unchanged from r339313, head/usr.sbin/lpr/lpd/printcap Directory Properties: projects/power8_bringup_hacks/contrib/mandoc/ (props changed) Replaced: projects/power8_bringup_hacks/crypto/openssl/apps/progs.h - copied unchanged from r339313, head/crypto/openssl/apps/progs.h projects/power8_bringup_hacks/crypto/openssl/doc/man3/ - copied from r339313, head/crypto/openssl/doc/man3/ projects/power8_bringup_hacks/sbin/dhclient/dhclient.conf - copied unchanged from r339313, head/sbin/dhclient/dhclient.conf Deleted: projects/power8_bringup_hacks/contrib/mdocml/ projects/power8_bringup_hacks/crypto/openssl/ACKNOWLEDGMENTS projects/power8_bringup_hacks/crypto/openssl/CHANGES.SSLeay projects/power8_bringup_hacks/crypto/openssl/Makefile projects/power8_bringup_hacks/crypto/openssl/Makefile.org projects/power8_bringup_hacks/crypto/openssl/Makefile.shared projects/power8_bringup_hacks/crypto/openssl/PROBLEMS projects/power8_bringup_hacks/crypto/openssl/README.ASN1 projects/power8_bringup_hacks/crypto/openssl/apps/CA.pl projects/power8_bringup_hacks/crypto/openssl/apps/CA.sh projects/power8_bringup_hacks/crypto/openssl/apps/Makefile projects/power8_bringup_hacks/crypto/openssl/apps/dh.c projects/power8_bringup_hacks/crypto/openssl/apps/dh512.pem projects/power8_bringup_hacks/crypto/openssl/apps/gendh.c projects/power8_bringup_hacks/crypto/openssl/apps/oid.cnf projects/power8_bringup_hacks/crypto/openssl/apps/set/ projects/power8_bringup_hacks/crypto/openssl/apps/tsget projects/power8_bringup_hacks/crypto/openssl/certs/ projects/power8_bringup_hacks/crypto/openssl/crypto/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/aes/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/aes/README projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes.h projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_ctr.c projects/power8_bringup_hacks/crypto/openssl/crypto/arm64cpuid.S projects/power8_bringup_hacks/crypto/openssl/crypto/armv4cpuid.S projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_bool.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_bytes.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_enum.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_set.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1.h projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1_int.h projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1_mac.h projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1t.h projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/f_enum.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/t_crl.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/t_req.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/t_x509.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/t_x509a.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_attrib.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_crl.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_exten.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_name.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_nx509.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_pubkey.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_req.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_x509.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_x509a.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/COPYRIGHT projects/power8_bringup_hacks/crypto/openssl/crypto/bf/INSTALL projects/power8_bringup_hacks/crypto/openssl/crypto/bf/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/bf/README projects/power8_bringup_hacks/crypto/openssl/crypto/bf/VERSION projects/power8_bringup_hacks/crypto/openssl/crypto/bf/asm/bf-686.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bf/asm/readme projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bf_cbc.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bf_opts.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bfspeed.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bftest.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/blowfish.h projects/power8_bringup_hacks/crypto/openssl/crypto/bio/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bio.h projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_rtcp.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/README projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/mips3-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/mips3.s projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/pa-risc2.s projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/pa-risc2W.s projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/x86/ projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/x86.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn.h projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn.mul projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bnspeed.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bntest.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/divtest.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/exp.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/expspeed.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/exptest.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/todo projects/power8_bringup_hacks/crypto/openssl/crypto/bn_int.h projects/power8_bringup_hacks/crypto/openssl/crypto/buffer/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/buffer/buf_str.c projects/power8_bringup_hacks/crypto/openssl/crypto/buffer/buffer.h projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/camellia.h projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/cmll_utl.c projects/power8_bringup_hacks/crypto/openssl/crypto/cast/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/cast/asm/readme projects/power8_bringup_hacks/crypto/openssl/crypto/cast/cast.h projects/power8_bringup_hacks/crypto/openssl/crypto/cast/cast_spd.c projects/power8_bringup_hacks/crypto/openssl/crypto/cast/castopts.c projects/power8_bringup_hacks/crypto/openssl/crypto/cast/casttest.c projects/power8_bringup_hacks/crypto/openssl/crypto/cmac/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/cmac/cmac.h projects/power8_bringup_hacks/crypto/openssl/crypto/cms/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms.h projects/power8_bringup_hacks/crypto/openssl/crypto/comp/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/comp/c_rle.c projects/power8_bringup_hacks/crypto/openssl/crypto/comp/comp.h projects/power8_bringup_hacks/crypto/openssl/crypto/conf/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/conf/README projects/power8_bringup_hacks/crypto/openssl/crypto/conf/cnf_save.c projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf.h projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_api.h projects/power8_bringup_hacks/crypto/openssl/crypto/conf/ssleay.cnf projects/power8_bringup_hacks/crypto/openssl/crypto/conf/test.c projects/power8_bringup_hacks/crypto/openssl/crypto/constant_time_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/constant_time_test.c projects/power8_bringup_hacks/crypto/openssl/crypto/cryptlib.h projects/power8_bringup_hacks/crypto/openssl/crypto/crypto.h projects/power8_bringup_hacks/crypto/openssl/crypto/des/COPYRIGHT projects/power8_bringup_hacks/crypto/openssl/crypto/des/DES.pm projects/power8_bringup_hacks/crypto/openssl/crypto/des/DES.xs projects/power8_bringup_hacks/crypto/openssl/crypto/des/FILES0 projects/power8_bringup_hacks/crypto/openssl/crypto/des/INSTALL projects/power8_bringup_hacks/crypto/openssl/crypto/des/Imakefile projects/power8_bringup_hacks/crypto/openssl/crypto/des/KERBEROS projects/power8_bringup_hacks/crypto/openssl/crypto/des/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/des/README projects/power8_bringup_hacks/crypto/openssl/crypto/des/VERSION projects/power8_bringup_hacks/crypto/openssl/crypto/des/asm/readme projects/power8_bringup_hacks/crypto/openssl/crypto/des/cbc3_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/des.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/des.h projects/power8_bringup_hacks/crypto/openssl/crypto/des/des.pod projects/power8_bringup_hacks/crypto/openssl/crypto/des/des_old.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/des_old.h projects/power8_bringup_hacks/crypto/openssl/crypto/des/des_old2.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/des_opts.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/des_ver.h projects/power8_bringup_hacks/crypto/openssl/crypto/des/destest.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/ede_cbcm_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/enc_read.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/enc_writ.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/makefile.bc projects/power8_bringup_hacks/crypto/openssl/crypto/des/options.txt projects/power8_bringup_hacks/crypto/openssl/crypto/des/read2pwd.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/read_pwd.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/rpc_des.h projects/power8_bringup_hacks/crypto/openssl/crypto/des/rpc_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/rpw.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/speed.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/typemap projects/power8_bringup_hacks/crypto/openssl/crypto/dh/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh.h projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dhtest.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/example projects/power8_bringup_hacks/crypto/openssl/crypto/dh/generate projects/power8_bringup_hacks/crypto/openssl/crypto/dh/p1024.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/p192.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/p512.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/README projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa.h projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsagen.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsatest.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/fips186a.txt projects/power8_bringup_hacks/crypto/openssl/crypto/dso/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/dso/README projects/power8_bringup_hacks/crypto/openssl/crypto/dso/dso.h projects/power8_bringup_hacks/crypto/openssl/crypto/dso/dso_beos.c projects/power8_bringup_hacks/crypto/openssl/crypto/dso/dso_null.c projects/power8_bringup_hacks/crypto/openssl/crypto/ebcdic.h projects/power8_bringup_hacks/crypto/openssl/crypto/ec/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec.h projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec2_mult.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ectest.c projects/power8_bringup_hacks/crypto/openssl/crypto/ecdh/ projects/power8_bringup_hacks/crypto/openssl/crypto/ecdsa/ projects/power8_bringup_hacks/crypto/openssl/crypto/engine/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_cryptodev.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/engine.h projects/power8_bringup_hacks/crypto/openssl/crypto/engine/enginetest.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_ecdh.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_ecdsa.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_store.c projects/power8_bringup_hacks/crypto/openssl/crypto/err/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/err/err.h projects/power8_bringup_hacks/crypto/openssl/crypto/evp/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/evp/c_all.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_dsa.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp.h projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_acnf.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_extra_test.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_test.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evptests.txt projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_dss.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_dss1.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_ecdsa.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_sha.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/openbsd_hw.c projects/power8_bringup_hacks/crypto/openssl/crypto/fips_err.h projects/power8_bringup_hacks/crypto/openssl/crypto/fips_ers.c projects/power8_bringup_hacks/crypto/openssl/crypto/hmac/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/hmac/hmac.h projects/power8_bringup_hacks/crypto/openssl/crypto/hmac/hmactest.c projects/power8_bringup_hacks/crypto/openssl/crypto/idea/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/idea/idea.h projects/power8_bringup_hacks/crypto/openssl/crypto/idea/idea_spd.c projects/power8_bringup_hacks/crypto/openssl/crypto/idea/ideatest.c projects/power8_bringup_hacks/crypto/openssl/crypto/idea/version projects/power8_bringup_hacks/crypto/openssl/crypto/jpake/ projects/power8_bringup_hacks/crypto/openssl/crypto/krb5/ projects/power8_bringup_hacks/crypto/openssl/crypto/lhash/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/lhash/lh_test.c projects/power8_bringup_hacks/crypto/openssl/crypto/lhash/lhash.h projects/power8_bringup_hacks/crypto/openssl/crypto/lhash/num.pl projects/power8_bringup_hacks/crypto/openssl/crypto/md2/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/md2/md2.c projects/power8_bringup_hacks/crypto/openssl/crypto/md2/md2.h projects/power8_bringup_hacks/crypto/openssl/crypto/md2/md2test.c projects/power8_bringup_hacks/crypto/openssl/crypto/md32_common.h projects/power8_bringup_hacks/crypto/openssl/crypto/md4/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/md4/md4.c projects/power8_bringup_hacks/crypto/openssl/crypto/md4/md4.h projects/power8_bringup_hacks/crypto/openssl/crypto/md4/md4test.c projects/power8_bringup_hacks/crypto/openssl/crypto/md5/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/md5/asm/md5-ia64.S projects/power8_bringup_hacks/crypto/openssl/crypto/md5/md5.c projects/power8_bringup_hacks/crypto/openssl/crypto/md5/md5.h projects/power8_bringup_hacks/crypto/openssl/crypto/md5/md5test.c projects/power8_bringup_hacks/crypto/openssl/crypto/mdc2/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/mdc2/mdc2.h projects/power8_bringup_hacks/crypto/openssl/crypto/mdc2/mdc2test.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/modes/modes.h projects/power8_bringup_hacks/crypto/openssl/crypto/o_dir.h projects/power8_bringup_hacks/crypto/openssl/crypto/o_dir_test.c projects/power8_bringup_hacks/crypto/openssl/crypto/o_str.h projects/power8_bringup_hacks/crypto/openssl/crypto/o_time.h projects/power8_bringup_hacks/crypto/openssl/crypto/objects/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_mac.h projects/power8_bringup_hacks/crypto/openssl/crypto/objects/objects.README projects/power8_bringup_hacks/crypto/openssl/crypto/objects/objects.h projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp.h projects/power8_bringup_hacks/crypto/openssl/crypto/opensslconf.h projects/power8_bringup_hacks/crypto/openssl/crypto/opensslconf.h.in projects/power8_bringup_hacks/crypto/openssl/crypto/opensslv.h projects/power8_bringup_hacks/crypto/openssl/crypto/ossl_typ.h projects/power8_bringup_hacks/crypto/openssl/crypto/pem/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/pem/message projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem.h projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem2.h projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_seal.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pkcs7.lis projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/readme projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/pkcs12.h projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pk7_dgst.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pk7_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pkcs7.h projects/power8_bringup_hacks/crypto/openssl/crypto/pqueue/ projects/power8_bringup_hacks/crypto/openssl/crypto/rand/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/rand/md_rand.c projects/power8_bringup_hacks/crypto/openssl/crypto/rand/rand.h projects/power8_bringup_hacks/crypto/openssl/crypto/rand/randtest.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rc2.h projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rc2speed.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rc2test.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rrc2.doc projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/tab.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/version projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/asm/rc4-ia64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/rc4.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/rc4.h projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/rc4_utl.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/rc4speed.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/rc4test.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/rrc4.doc projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/rc5.h projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/rc5speed.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/rc5test.c projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/README projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/ripemd.h projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/rmd160.c projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/rmdtest.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa.h projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_eay.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_null.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_test.c projects/power8_bringup_hacks/crypto/openssl/crypto/s390xcpuid.S projects/power8_bringup_hacks/crypto/openssl/crypto/seed/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/seed/seed.h projects/power8_bringup_hacks/crypto/openssl/crypto/sha/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/README projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha.h projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha1.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha1test.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha256t.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha512t.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha_dgst.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha_one.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/shatest.c projects/power8_bringup_hacks/crypto/openssl/crypto/srp/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/srp/srp.h projects/power8_bringup_hacks/crypto/openssl/crypto/srp/srp_grps.h projects/power8_bringup_hacks/crypto/openssl/crypto/srp/srp_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/srp/srptest.c projects/power8_bringup_hacks/crypto/openssl/crypto/stack/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/stack/safestack.h projects/power8_bringup_hacks/crypto/openssl/crypto/stack/stack.h projects/power8_bringup_hacks/crypto/openssl/crypto/store/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/store/README projects/power8_bringup_hacks/crypto/openssl/crypto/store/store.h projects/power8_bringup_hacks/crypto/openssl/crypto/store/str_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/store/str_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/store/str_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/store/str_mem.c projects/power8_bringup_hacks/crypto/openssl/crypto/store/str_meth.c projects/power8_bringup_hacks/crypto/openssl/crypto/symhacks.h projects/power8_bringup_hacks/crypto/openssl/crypto/threads/ projects/power8_bringup_hacks/crypto/openssl/crypto/ts/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts.h projects/power8_bringup_hacks/crypto/openssl/crypto/txt_db/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/txt_db/txt_db.h projects/power8_bringup_hacks/crypto/openssl/crypto/ui/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/ui/ui.h projects/power8_bringup_hacks/crypto/openssl/crypto/ui/ui_compat.c projects/power8_bringup_hacks/crypto/openssl/crypto/ui/ui_compat.h projects/power8_bringup_hacks/crypto/openssl/crypto/whrlpool/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/whrlpool/whrlpool.h projects/power8_bringup_hacks/crypto/openssl/crypto/whrlpool/wp_test.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/x509/verify_extra_test.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/vpm_int.h projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509.h projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_vfy.h projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/Makefile projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/tabtest.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_ocsp.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_scts.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3conf.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3nametest.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3prin.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/x509v3.h projects/power8_bringup_hacks/crypto/openssl/doc/apps/ projects/power8_bringup_hacks/crypto/openssl/doc/c-indentation.el projects/power8_bringup_hacks/crypto/openssl/doc/crypto/ projects/power8_bringup_hacks/crypto/openssl/doc/openssl-shared.txt projects/power8_bringup_hacks/crypto/openssl/doc/openssl.txt projects/power8_bringup_hacks/crypto/openssl/doc/ssl/ projects/power8_bringup_hacks/crypto/openssl/doc/ssleay.txt projects/power8_bringup_hacks/crypto/openssl/doc/standards.txt projects/power8_bringup_hacks/crypto/openssl/e_os2.h projects/power8_bringup_hacks/crypto/openssl/engines/Makefile projects/power8_bringup_hacks/crypto/openssl/engines/ccgost/ projects/power8_bringup_hacks/crypto/openssl/engines/e_4758cca.c projects/power8_bringup_hacks/crypto/openssl/engines/e_4758cca_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_4758cca_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_aep.c projects/power8_bringup_hacks/crypto/openssl/engines/e_aep_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_aep_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_atalla.c projects/power8_bringup_hacks/crypto/openssl/engines/e_atalla_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_atalla_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_chil.c projects/power8_bringup_hacks/crypto/openssl/engines/e_chil_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_chil_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_cswift.c projects/power8_bringup_hacks/crypto/openssl/engines/e_cswift_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_cswift_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_gmp.c projects/power8_bringup_hacks/crypto/openssl/engines/e_gmp_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_gmp_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_nuron.c projects/power8_bringup_hacks/crypto/openssl/engines/e_nuron_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_nuron_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_sureware.c projects/power8_bringup_hacks/crypto/openssl/engines/e_sureware_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_sureware_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_ubsec.c projects/power8_bringup_hacks/crypto/openssl/engines/e_ubsec_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_ubsec_err.h projects/power8_bringup_hacks/crypto/openssl/engines/engine_vector.mar projects/power8_bringup_hacks/crypto/openssl/engines/vendor_defns/ projects/power8_bringup_hacks/crypto/openssl/shlib/ projects/power8_bringup_hacks/crypto/openssl/ssl/Makefile projects/power8_bringup_hacks/crypto/openssl/ssl/bad_dtls_test.c projects/power8_bringup_hacks/crypto/openssl/ssl/clienthellotest.c projects/power8_bringup_hacks/crypto/openssl/ssl/d1_both.c projects/power8_bringup_hacks/crypto/openssl/ssl/d1_clnt.c projects/power8_bringup_hacks/crypto/openssl/ssl/d1_meth.c projects/power8_bringup_hacks/crypto/openssl/ssl/d1_pkt.c projects/power8_bringup_hacks/crypto/openssl/ssl/d1_srvr.c projects/power8_bringup_hacks/crypto/openssl/ssl/dtls1.h projects/power8_bringup_hacks/crypto/openssl/ssl/dtlstest.c projects/power8_bringup_hacks/crypto/openssl/ssl/fatalerrtest.c projects/power8_bringup_hacks/crypto/openssl/ssl/heartbeat_test.c projects/power8_bringup_hacks/crypto/openssl/ssl/kssl.c projects/power8_bringup_hacks/crypto/openssl/ssl/kssl.h projects/power8_bringup_hacks/crypto/openssl/ssl/kssl_lcl.h projects/power8_bringup_hacks/crypto/openssl/ssl/s23_clnt.c projects/power8_bringup_hacks/crypto/openssl/ssl/s23_lib.c projects/power8_bringup_hacks/crypto/openssl/ssl/s23_meth.c projects/power8_bringup_hacks/crypto/openssl/ssl/s23_pkt.c projects/power8_bringup_hacks/crypto/openssl/ssl/s23_srvr.c projects/power8_bringup_hacks/crypto/openssl/ssl/s2_clnt.c projects/power8_bringup_hacks/crypto/openssl/ssl/s2_enc.c projects/power8_bringup_hacks/crypto/openssl/ssl/s2_lib.c projects/power8_bringup_hacks/crypto/openssl/ssl/s2_meth.c projects/power8_bringup_hacks/crypto/openssl/ssl/s2_pkt.c projects/power8_bringup_hacks/crypto/openssl/ssl/s2_srvr.c projects/power8_bringup_hacks/crypto/openssl/ssl/s3_both.c projects/power8_bringup_hacks/crypto/openssl/ssl/s3_clnt.c projects/power8_bringup_hacks/crypto/openssl/ssl/s3_meth.c projects/power8_bringup_hacks/crypto/openssl/ssl/s3_pkt.c projects/power8_bringup_hacks/crypto/openssl/ssl/s3_srvr.c projects/power8_bringup_hacks/crypto/openssl/ssl/srtp.h projects/power8_bringup_hacks/crypto/openssl/ssl/ssl.h projects/power8_bringup_hacks/crypto/openssl/ssl/ssl2.h projects/power8_bringup_hacks/crypto/openssl/ssl/ssl23.h projects/power8_bringup_hacks/crypto/openssl/ssl/ssl3.h projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_algs.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_err2.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_task.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssltest.c projects/power8_bringup_hacks/crypto/openssl/ssl/sslv2conftest.c projects/power8_bringup_hacks/crypto/openssl/ssl/t1_clnt.c projects/power8_bringup_hacks/crypto/openssl/ssl/t1_ext.c projects/power8_bringup_hacks/crypto/openssl/ssl/t1_meth.c projects/power8_bringup_hacks/crypto/openssl/ssl/t1_reneg.c projects/power8_bringup_hacks/crypto/openssl/ssl/t1_srvr.c projects/power8_bringup_hacks/crypto/openssl/ssl/tls1.h projects/power8_bringup_hacks/crypto/openssl/util/ projects/power8_bringup_hacks/etc/amd.map projects/power8_bringup_hacks/etc/dhclient.conf projects/power8_bringup_hacks/etc/disktab projects/power8_bringup_hacks/etc/hosts projects/power8_bringup_hacks/etc/hosts.allow projects/power8_bringup_hacks/etc/hosts.equiv projects/power8_bringup_hacks/etc/hosts.lpd projects/power8_bringup_hacks/etc/libalias.conf projects/power8_bringup_hacks/etc/libmap.conf projects/power8_bringup_hacks/etc/mac.conf projects/power8_bringup_hacks/etc/netconfig projects/power8_bringup_hacks/etc/networks projects/power8_bringup_hacks/etc/nsmb.conf projects/power8_bringup_hacks/etc/nsswitch.conf projects/power8_bringup_hacks/etc/opieaccess projects/power8_bringup_hacks/etc/phones projects/power8_bringup_hacks/etc/printcap projects/power8_bringup_hacks/etc/protocols projects/power8_bringup_hacks/etc/regdomain.xml projects/power8_bringup_hacks/etc/remote projects/power8_bringup_hacks/etc/rpc projects/power8_bringup_hacks/secure/lib/libcrypto/engines/lib4758cca/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/libaep/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/libatalla/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/libcapi/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/libchil/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/libcswift/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/libgost/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/libnuron/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/libsureware/ projects/power8_bringup_hacks/secure/lib/libcrypto/engines/libubsec/ projects/power8_bringup_hacks/secure/lib/libcrypto/i386/bf-686.S projects/power8_bringup_hacks/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_get_ex_new_index.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/bio.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/blowfish.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/bn.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/bn_internal.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/buffer.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/crypto.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_ECPKParameters.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_ECPrivateKey.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_X509_CRL.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_X509_NAME.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_X509_REQ.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_X509_SIG.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/des.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/dh.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/dsa.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ec.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ecdsa.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/engine.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/err.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/evp.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/hmac.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/lh_stats.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/lhash.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/md5.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/mdc2.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/pem.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/rand.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/rc4.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ripemd.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/rsa.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/sha.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/threads.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ui.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ui_compat.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/x509.3 projects/power8_bringup_hacks/secure/lib/libcrypto/opensslconf-aarch64.h.in projects/power8_bringup_hacks/secure/lib/libcrypto/opensslconf-arm.h.in projects/power8_bringup_hacks/secure/lib/libcrypto/opensslconf-mips.h.in projects/power8_bringup_hacks/secure/lib/libcrypto/opensslconf-powerpc.h.in projects/power8_bringup_hacks/secure/lib/libcrypto/opensslconf-riscv.h.in projects/power8_bringup_hacks/secure/lib/libcrypto/opensslconf-sparc64.h.in projects/power8_bringup_hacks/secure/lib/libcrypto/opensslconf-x86.h.in projects/power8_bringup_hacks/secure/lib/libssl/Makefile.man projects/power8_bringup_hacks/secure/lib/libssl/man/ projects/power8_bringup_hacks/secure/usr.bin/openssl/man/x509v3_config.1 Modified: projects/power8_bringup_hacks/Makefile projects/power8_bringup_hacks/Makefile.inc1 projects/power8_bringup_hacks/ObsoleteFiles.inc projects/power8_bringup_hacks/UPDATING projects/power8_bringup_hacks/contrib/blacklist/bin/blacklistd.8 projects/power8_bringup_hacks/contrib/bmake/make.1 projects/power8_bringup_hacks/contrib/bsnmp/lib/snmpcrypto.c projects/power8_bringup_hacks/contrib/dma/crypto.c projects/power8_bringup_hacks/contrib/dma/dma-mbox-create.c projects/power8_bringup_hacks/contrib/dma/local.c projects/power8_bringup_hacks/contrib/dma/mail.c projects/power8_bringup_hacks/contrib/dma/net.c projects/power8_bringup_hacks/contrib/dma/spool.c projects/power8_bringup_hacks/contrib/dma/util.c projects/power8_bringup_hacks/contrib/elftoolchain/libelf/gelf_mips64el.c projects/power8_bringup_hacks/contrib/ldns/freebsd-configure.sh projects/power8_bringup_hacks/contrib/ldns/ldns/config.h projects/power8_bringup_hacks/contrib/libarchive/README.md projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_acl.c projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_cryptor.c projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_read_support_format_ar.c projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_read_support_format_zip.c projects/power8_bringup_hacks/contrib/libarchive/libarchive/test/test_sparse_basic.c projects/power8_bringup_hacks/contrib/libarchive/test_utils/test_main.c projects/power8_bringup_hacks/contrib/llvm/lib/CodeGen/BranchFolding.cpp projects/power8_bringup_hacks/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp projects/power8_bringup_hacks/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/power8_bringup_hacks/contrib/llvm/tools/lld/ELF/Config.h projects/power8_bringup_hacks/contrib/llvm/tools/lld/ELF/Driver.cpp projects/power8_bringup_hacks/contrib/llvm/tools/lld/ELF/SyntheticSections.cpp projects/power8_bringup_hacks/contrib/llvm/tools/lld/ELF/Writer.cpp projects/power8_bringup_hacks/contrib/openbsm/bin/auditdistd/auditdistd.h projects/power8_bringup_hacks/contrib/openbsm/bin/auditdistd/proto_tls.c projects/power8_bringup_hacks/contrib/openbsm/bin/auditdistd/receiver.c projects/power8_bringup_hacks/contrib/openbsm/bin/auditdistd/sender.c projects/power8_bringup_hacks/contrib/openbsm/bin/auditdistd/trail.c projects/power8_bringup_hacks/contrib/sendmail/src/tls.c projects/power8_bringup_hacks/contrib/serf/CHANGES projects/power8_bringup_hacks/contrib/serf/NOTICE projects/power8_bringup_hacks/contrib/serf/README projects/power8_bringup_hacks/contrib/serf/SConstruct projects/power8_bringup_hacks/contrib/serf/auth/auth.c projects/power8_bringup_hacks/contrib/serf/auth/auth.h projects/power8_bringup_hacks/contrib/serf/auth/auth_basic.c projects/power8_bringup_hacks/contrib/serf/auth/auth_digest.c projects/power8_bringup_hacks/contrib/serf/auth/auth_spnego.c projects/power8_bringup_hacks/contrib/serf/auth/auth_spnego.h projects/power8_bringup_hacks/contrib/serf/auth/auth_spnego_gss.c projects/power8_bringup_hacks/contrib/serf/auth/auth_spnego_sspi.c projects/power8_bringup_hacks/contrib/serf/buckets/aggregate_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/allocator.c projects/power8_bringup_hacks/contrib/serf/buckets/barrier_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/bwtp_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/chunk_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/dechunk_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/deflate_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/file_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/headers_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/iovec_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/limit_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/mmap_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/request_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/response_body_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/response_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/simple_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/socket_buckets.c projects/power8_bringup_hacks/contrib/serf/buckets/ssl_buckets.c projects/power8_bringup_hacks/contrib/serf/build/check.py projects/power8_bringup_hacks/contrib/serf/build/gen_def.py projects/power8_bringup_hacks/contrib/serf/context.c projects/power8_bringup_hacks/contrib/serf/incoming.c projects/power8_bringup_hacks/contrib/serf/outgoing.c projects/power8_bringup_hacks/contrib/serf/serf.h projects/power8_bringup_hacks/contrib/serf/serf_bucket_types.h projects/power8_bringup_hacks/contrib/serf/serf_bucket_util.h projects/power8_bringup_hacks/contrib/serf/serf_private.h projects/power8_bringup_hacks/contrib/serf/ssltunnel.c projects/power8_bringup_hacks/contrib/telnet/libtelnet/enc_des.c projects/power8_bringup_hacks/contrib/telnet/libtelnet/encrypt.h projects/power8_bringup_hacks/contrib/telnet/libtelnet/kerberos.c projects/power8_bringup_hacks/contrib/telnet/libtelnet/pk.c projects/power8_bringup_hacks/contrib/telnet/libtelnet/pk.h projects/power8_bringup_hacks/contrib/unbound/Makefile.in projects/power8_bringup_hacks/contrib/unbound/cachedb/cachedb.c projects/power8_bringup_hacks/contrib/unbound/config.h projects/power8_bringup_hacks/contrib/unbound/config.h.in projects/power8_bringup_hacks/contrib/unbound/configure projects/power8_bringup_hacks/contrib/unbound/configure.ac projects/power8_bringup_hacks/contrib/unbound/contrib/fastrpz.patch projects/power8_bringup_hacks/contrib/unbound/contrib/libunbound.pc.in projects/power8_bringup_hacks/contrib/unbound/contrib/unbound.service.in projects/power8_bringup_hacks/contrib/unbound/daemon/cachedump.c projects/power8_bringup_hacks/contrib/unbound/daemon/daemon.c projects/power8_bringup_hacks/contrib/unbound/daemon/daemon.h projects/power8_bringup_hacks/contrib/unbound/daemon/remote.c projects/power8_bringup_hacks/contrib/unbound/daemon/stats.c projects/power8_bringup_hacks/contrib/unbound/daemon/unbound.c projects/power8_bringup_hacks/contrib/unbound/daemon/worker.c projects/power8_bringup_hacks/contrib/unbound/dns64/dns64.c projects/power8_bringup_hacks/contrib/unbound/doc/Changelog projects/power8_bringup_hacks/contrib/unbound/doc/README projects/power8_bringup_hacks/contrib/unbound/doc/example.conf projects/power8_bringup_hacks/contrib/unbound/doc/example.conf.in projects/power8_bringup_hacks/contrib/unbound/doc/libunbound.3 projects/power8_bringup_hacks/contrib/unbound/doc/libunbound.3.in projects/power8_bringup_hacks/contrib/unbound/doc/unbound-anchor.8 projects/power8_bringup_hacks/contrib/unbound/doc/unbound-anchor.8.in projects/power8_bringup_hacks/contrib/unbound/doc/unbound-checkconf.8 projects/power8_bringup_hacks/contrib/unbound/doc/unbound-checkconf.8.in projects/power8_bringup_hacks/contrib/unbound/doc/unbound-control.8 projects/power8_bringup_hacks/contrib/unbound/doc/unbound-control.8.in projects/power8_bringup_hacks/contrib/unbound/doc/unbound-host.1 projects/power8_bringup_hacks/contrib/unbound/doc/unbound-host.1.in projects/power8_bringup_hacks/contrib/unbound/doc/unbound.8 projects/power8_bringup_hacks/contrib/unbound/doc/unbound.8.in projects/power8_bringup_hacks/contrib/unbound/doc/unbound.conf.5 projects/power8_bringup_hacks/contrib/unbound/doc/unbound.conf.5.in projects/power8_bringup_hacks/contrib/unbound/edns-subnet/subnetmod.c projects/power8_bringup_hacks/contrib/unbound/edns-subnet/subnetmod.h projects/power8_bringup_hacks/contrib/unbound/freebsd-configure.sh projects/power8_bringup_hacks/contrib/unbound/ipsecmod/ipsecmod.c projects/power8_bringup_hacks/contrib/unbound/iterator/iter_delegpt.h projects/power8_bringup_hacks/contrib/unbound/iterator/iter_fwd.c projects/power8_bringup_hacks/contrib/unbound/iterator/iter_hints.c projects/power8_bringup_hacks/contrib/unbound/iterator/iter_scrub.c projects/power8_bringup_hacks/contrib/unbound/iterator/iter_utils.c projects/power8_bringup_hacks/contrib/unbound/iterator/iterator.c projects/power8_bringup_hacks/contrib/unbound/iterator/iterator.h projects/power8_bringup_hacks/contrib/unbound/libunbound/context.c projects/power8_bringup_hacks/contrib/unbound/libunbound/libunbound.c projects/power8_bringup_hacks/contrib/unbound/libunbound/libworker.c projects/power8_bringup_hacks/contrib/unbound/libunbound/unbound-event.h projects/power8_bringup_hacks/contrib/unbound/libunbound/unbound.h projects/power8_bringup_hacks/contrib/unbound/libunbound/worker.h projects/power8_bringup_hacks/contrib/unbound/respip/respip.c projects/power8_bringup_hacks/contrib/unbound/services/authzone.c projects/power8_bringup_hacks/contrib/unbound/services/authzone.h projects/power8_bringup_hacks/contrib/unbound/services/cache/dns.c projects/power8_bringup_hacks/contrib/unbound/services/cache/dns.h projects/power8_bringup_hacks/contrib/unbound/services/cache/infra.c projects/power8_bringup_hacks/contrib/unbound/services/cache/rrset.c projects/power8_bringup_hacks/contrib/unbound/services/listen_dnsport.c projects/power8_bringup_hacks/contrib/unbound/services/listen_dnsport.h projects/power8_bringup_hacks/contrib/unbound/services/localzone.c projects/power8_bringup_hacks/contrib/unbound/services/mesh.c projects/power8_bringup_hacks/contrib/unbound/services/mesh.h projects/power8_bringup_hacks/contrib/unbound/services/outside_network.c projects/power8_bringup_hacks/contrib/unbound/sldns/rrdef.c projects/power8_bringup_hacks/contrib/unbound/sldns/rrdef.h projects/power8_bringup_hacks/contrib/unbound/sldns/sbuffer.h projects/power8_bringup_hacks/contrib/unbound/smallapp/unbound-anchor.c projects/power8_bringup_hacks/contrib/unbound/smallapp/unbound-checkconf.c projects/power8_bringup_hacks/contrib/unbound/smallapp/unbound-control.c projects/power8_bringup_hacks/contrib/unbound/smallapp/unbound-host.c projects/power8_bringup_hacks/contrib/unbound/smallapp/worker_cb.c projects/power8_bringup_hacks/contrib/unbound/util/config_file.c projects/power8_bringup_hacks/contrib/unbound/util/config_file.h projects/power8_bringup_hacks/contrib/unbound/util/configlexer.lex projects/power8_bringup_hacks/contrib/unbound/util/configparser.y projects/power8_bringup_hacks/contrib/unbound/util/data/msgencode.c projects/power8_bringup_hacks/contrib/unbound/util/data/msgparse.h projects/power8_bringup_hacks/contrib/unbound/util/data/msgreply.c projects/power8_bringup_hacks/contrib/unbound/util/data/msgreply.h projects/power8_bringup_hacks/contrib/unbound/util/iana_ports.inc projects/power8_bringup_hacks/contrib/unbound/util/log.h projects/power8_bringup_hacks/contrib/unbound/util/module.c projects/power8_bringup_hacks/contrib/unbound/util/module.h projects/power8_bringup_hacks/contrib/unbound/util/net_help.c projects/power8_bringup_hacks/contrib/unbound/util/netevent.c projects/power8_bringup_hacks/contrib/unbound/util/netevent.h projects/power8_bringup_hacks/contrib/unbound/util/rtt.c projects/power8_bringup_hacks/contrib/unbound/util/storage/slabhash.c projects/power8_bringup_hacks/contrib/unbound/util/storage/slabhash.h projects/power8_bringup_hacks/contrib/unbound/validator/autotrust.c projects/power8_bringup_hacks/contrib/unbound/validator/autotrust.h projects/power8_bringup_hacks/contrib/unbound/validator/val_kcache.c projects/power8_bringup_hacks/contrib/unbound/validator/val_nsec3.c projects/power8_bringup_hacks/contrib/unbound/validator/val_secalgo.c projects/power8_bringup_hacks/contrib/unbound/validator/validator.c projects/power8_bringup_hacks/crypto/heimdal/kdc/digest.c projects/power8_bringup_hacks/crypto/heimdal/kdc/kx509.c projects/power8_bringup_hacks/crypto/heimdal/kdc/pkinit.c projects/power8_bringup_hacks/crypto/heimdal/lib/gssapi/krb5/arcfour.c projects/power8_bringup_hacks/crypto/heimdal/lib/gssapi/krb5/get_mic.c projects/power8_bringup_hacks/crypto/heimdal/lib/gssapi/krb5/unwrap.c projects/power8_bringup_hacks/crypto/heimdal/lib/gssapi/krb5/verify_mic.c projects/power8_bringup_hacks/crypto/heimdal/lib/gssapi/krb5/wrap.c projects/power8_bringup_hacks/crypto/heimdal/lib/gssapi/ntlm/crypto.c projects/power8_bringup_hacks/crypto/heimdal/lib/hx509/crypto.c projects/power8_bringup_hacks/crypto/heimdal/lib/hx509/hxtool.c projects/power8_bringup_hacks/crypto/heimdal/lib/hx509/ks_file.c projects/power8_bringup_hacks/crypto/heimdal/lib/hx509/ks_p11.c projects/power8_bringup_hacks/crypto/heimdal/lib/krb5/crypto-aes.c projects/power8_bringup_hacks/crypto/heimdal/lib/krb5/crypto-arcfour.c projects/power8_bringup_hacks/crypto/heimdal/lib/krb5/crypto-des-common.c projects/power8_bringup_hacks/crypto/heimdal/lib/krb5/crypto-des.c projects/power8_bringup_hacks/crypto/heimdal/lib/krb5/crypto-evp.c projects/power8_bringup_hacks/crypto/heimdal/lib/krb5/crypto-rand.c projects/power8_bringup_hacks/crypto/heimdal/lib/krb5/crypto.h projects/power8_bringup_hacks/crypto/heimdal/lib/krb5/pkinit.c projects/power8_bringup_hacks/crypto/heimdal/lib/ntlm/heimntlm-protos.h projects/power8_bringup_hacks/crypto/heimdal/lib/ntlm/ntlm.c projects/power8_bringup_hacks/crypto/heimdal/lib/roken/snprintf.c projects/power8_bringup_hacks/crypto/openssh/auth-pam.c projects/power8_bringup_hacks/crypto/openssh/auth2.c projects/power8_bringup_hacks/crypto/openssh/cipher.c projects/power8_bringup_hacks/crypto/openssh/cipher.h projects/power8_bringup_hacks/crypto/openssh/config.h projects/power8_bringup_hacks/crypto/openssh/configure.ac projects/power8_bringup_hacks/crypto/openssh/dh.c projects/power8_bringup_hacks/crypto/openssh/dh.h projects/power8_bringup_hacks/crypto/openssh/digest-openssl.c projects/power8_bringup_hacks/crypto/openssh/freebsd-configure.sh projects/power8_bringup_hacks/crypto/openssh/kexdh.c projects/power8_bringup_hacks/crypto/openssh/kexdhc.c projects/power8_bringup_hacks/crypto/openssh/kexdhs.c projects/power8_bringup_hacks/crypto/openssh/kexgex.c projects/power8_bringup_hacks/crypto/openssh/kexgexc.c projects/power8_bringup_hacks/crypto/openssh/kexgexs.c projects/power8_bringup_hacks/crypto/openssh/monitor.c projects/power8_bringup_hacks/crypto/openssh/monitor.h projects/power8_bringup_hacks/crypto/openssh/monitor_wrap.c projects/power8_bringup_hacks/crypto/openssh/monitor_wrap.h projects/power8_bringup_hacks/crypto/openssh/openbsd-compat/Makefile.in projects/power8_bringup_hacks/crypto/openssh/openbsd-compat/openssl-compat.h projects/power8_bringup_hacks/crypto/openssh/regress/unittests/sshkey/common.c projects/power8_bringup_hacks/crypto/openssh/regress/unittests/sshkey/common.h projects/power8_bringup_hacks/crypto/openssh/regress/unittests/sshkey/test_file.c projects/power8_bringup_hacks/crypto/openssh/regress/unittests/sshkey/test_sshkey.c projects/power8_bringup_hacks/crypto/openssh/sandbox-capsicum.c projects/power8_bringup_hacks/crypto/openssh/ssh-dss.c projects/power8_bringup_hacks/crypto/openssh/ssh-ecdsa.c projects/power8_bringup_hacks/crypto/openssh/ssh-keygen.c projects/power8_bringup_hacks/crypto/openssh/ssh-pkcs11-client.c projects/power8_bringup_hacks/crypto/openssh/ssh-pkcs11.c projects/power8_bringup_hacks/crypto/openssh/ssh-rsa.c projects/power8_bringup_hacks/crypto/openssh/ssh.c projects/power8_bringup_hacks/crypto/openssh/ssh_namespace.h projects/power8_bringup_hacks/crypto/openssh/sshbuf-getput-basic.c projects/power8_bringup_hacks/crypto/openssh/sshbuf.h projects/power8_bringup_hacks/crypto/openssh/sshd.c projects/power8_bringup_hacks/crypto/openssh/sshkey.c projects/power8_bringup_hacks/crypto/openssh/sshkey.h projects/power8_bringup_hacks/crypto/openssh/version.h projects/power8_bringup_hacks/crypto/openssl/CHANGES projects/power8_bringup_hacks/crypto/openssl/CONTRIBUTING projects/power8_bringup_hacks/crypto/openssl/Configure projects/power8_bringup_hacks/crypto/openssl/INSTALL projects/power8_bringup_hacks/crypto/openssl/LICENSE projects/power8_bringup_hacks/crypto/openssl/NEWS projects/power8_bringup_hacks/crypto/openssl/README projects/power8_bringup_hacks/crypto/openssl/README.ENGINE projects/power8_bringup_hacks/crypto/openssl/apps/CA.pl.in projects/power8_bringup_hacks/crypto/openssl/apps/app_rand.c projects/power8_bringup_hacks/crypto/openssl/apps/apps.c projects/power8_bringup_hacks/crypto/openssl/apps/apps.h projects/power8_bringup_hacks/crypto/openssl/apps/asn1pars.c projects/power8_bringup_hacks/crypto/openssl/apps/ca-key.pem projects/power8_bringup_hacks/crypto/openssl/apps/ca-req.pem projects/power8_bringup_hacks/crypto/openssl/apps/ca.c projects/power8_bringup_hacks/crypto/openssl/apps/ciphers.c projects/power8_bringup_hacks/crypto/openssl/apps/cms.c projects/power8_bringup_hacks/crypto/openssl/apps/crl.c projects/power8_bringup_hacks/crypto/openssl/apps/crl2p7.c projects/power8_bringup_hacks/crypto/openssl/apps/dgst.c projects/power8_bringup_hacks/crypto/openssl/apps/dh1024.pem projects/power8_bringup_hacks/crypto/openssl/apps/dh2048.pem projects/power8_bringup_hacks/crypto/openssl/apps/dh4096.pem projects/power8_bringup_hacks/crypto/openssl/apps/dhparam.c projects/power8_bringup_hacks/crypto/openssl/apps/dsa-ca.pem projects/power8_bringup_hacks/crypto/openssl/apps/dsa-pca.pem projects/power8_bringup_hacks/crypto/openssl/apps/dsa.c projects/power8_bringup_hacks/crypto/openssl/apps/dsaparam.c projects/power8_bringup_hacks/crypto/openssl/apps/ec.c projects/power8_bringup_hacks/crypto/openssl/apps/ecparam.c projects/power8_bringup_hacks/crypto/openssl/apps/enc.c projects/power8_bringup_hacks/crypto/openssl/apps/engine.c projects/power8_bringup_hacks/crypto/openssl/apps/errstr.c projects/power8_bringup_hacks/crypto/openssl/apps/gendsa.c projects/power8_bringup_hacks/crypto/openssl/apps/genpkey.c projects/power8_bringup_hacks/crypto/openssl/apps/genrsa.c projects/power8_bringup_hacks/crypto/openssl/apps/nseq.c projects/power8_bringup_hacks/crypto/openssl/apps/ocsp.c projects/power8_bringup_hacks/crypto/openssl/apps/openssl.c projects/power8_bringup_hacks/crypto/openssl/apps/openssl.cnf projects/power8_bringup_hacks/crypto/openssl/apps/passwd.c projects/power8_bringup_hacks/crypto/openssl/apps/pca-key.pem projects/power8_bringup_hacks/crypto/openssl/apps/pca-req.pem projects/power8_bringup_hacks/crypto/openssl/apps/pkcs12.c projects/power8_bringup_hacks/crypto/openssl/apps/pkcs7.c projects/power8_bringup_hacks/crypto/openssl/apps/pkcs8.c projects/power8_bringup_hacks/crypto/openssl/apps/pkey.c projects/power8_bringup_hacks/crypto/openssl/apps/pkeyparam.c projects/power8_bringup_hacks/crypto/openssl/apps/pkeyutl.c projects/power8_bringup_hacks/crypto/openssl/apps/prime.c projects/power8_bringup_hacks/crypto/openssl/apps/privkey.pem projects/power8_bringup_hacks/crypto/openssl/apps/progs.pl projects/power8_bringup_hacks/crypto/openssl/apps/rand.c projects/power8_bringup_hacks/crypto/openssl/apps/req.c projects/power8_bringup_hacks/crypto/openssl/apps/rsa.c projects/power8_bringup_hacks/crypto/openssl/apps/rsautl.c projects/power8_bringup_hacks/crypto/openssl/apps/s_apps.h projects/power8_bringup_hacks/crypto/openssl/apps/s_cb.c projects/power8_bringup_hacks/crypto/openssl/apps/s_client.c projects/power8_bringup_hacks/crypto/openssl/apps/s_server.c projects/power8_bringup_hacks/crypto/openssl/apps/s_socket.c projects/power8_bringup_hacks/crypto/openssl/apps/s_time.c projects/power8_bringup_hacks/crypto/openssl/apps/sess_id.c projects/power8_bringup_hacks/crypto/openssl/apps/smime.c projects/power8_bringup_hacks/crypto/openssl/apps/speed.c projects/power8_bringup_hacks/crypto/openssl/apps/spkac.c projects/power8_bringup_hacks/crypto/openssl/apps/srp.c projects/power8_bringup_hacks/crypto/openssl/apps/testdsa.h projects/power8_bringup_hacks/crypto/openssl/apps/testrsa.h projects/power8_bringup_hacks/crypto/openssl/apps/timeouts.h projects/power8_bringup_hacks/crypto/openssl/apps/ts.c projects/power8_bringup_hacks/crypto/openssl/apps/verify.c projects/power8_bringup_hacks/crypto/openssl/apps/version.c projects/power8_bringup_hacks/crypto/openssl/apps/x509.c projects/power8_bringup_hacks/crypto/openssl/appveyor.yml projects/power8_bringup_hacks/crypto/openssl/config projects/power8_bringup_hacks/crypto/openssl/crypto/LPdir_unix.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_cbc.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_cfb.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_core.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_ecb.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_ige.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_misc.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_ofb.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_wrap.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/aes_x86core.c projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-armv4.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-ia64.S projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-mips.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-parisc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-ppc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-s390x.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aes-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aesni-mb-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aesni-sha1-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aesni-sha256-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aesni-x86.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aesni-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aesp8-ppc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aest4-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/aesv8-armx.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/bsaes-armv7.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/bsaes-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/vpaes-ppc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/vpaes-x86.pl projects/power8_bringup_hacks/crypto/openssl/crypto/aes/asm/vpaes-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/arm_arch.h projects/power8_bringup_hacks/crypto/openssl/crypto/armcap.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_bitstr.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_d2i_fp.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_digest.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_dup.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_gentm.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_i2d_fp.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_int.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_mbstr.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_object.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_octet.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_print.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_sign.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_strex.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_strnid.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_time.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_type.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_utctm.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_utf8.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/a_verify.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/ameth_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1_gen.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn1_par.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn_mime.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn_moid.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/asn_pack.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/bio_asn1.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/bio_ndef.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/charmap.h projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/charmap.pl projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/d2i_pr.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/d2i_pu.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/evp_asn1.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/f_int.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/f_string.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/i2d_pr.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/i2d_pu.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/n_pkey.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/nsseq.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/p5_pbe.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/p5_pbev2.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/p8_pkey.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/t_bitst.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/t_pkey.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/t_spki.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/tasn_dec.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/tasn_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/tasn_fre.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/tasn_new.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/tasn_prn.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/tasn_typ.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/tasn_utl.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_algor.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_bignum.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_info.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_long.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_pkey.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_sig.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_spki.c projects/power8_bringup_hacks/crypto/openssl/crypto/asn1/x_val.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/asm/bf-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bf_cfb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bf_ecb.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bf_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bf_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bf_ofb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bf_pi.h projects/power8_bringup_hacks/crypto/openssl/crypto/bf/bf_skey.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/b_dump.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/b_print.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/b_sock.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bf_buff.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bf_lbuf.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bf_nbio.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bf_null.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bio_cb.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bio_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bio_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bio_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_acpt.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_bio.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_conn.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_dgram.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_fd.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_file.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_log.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_mem.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_null.c projects/power8_bringup_hacks/crypto/openssl/crypto/bio/bss_sock.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/armv4-gf2m.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/armv4-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/bn-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/co-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/ia64-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/ia64.S projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/mips-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/mips.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/parisc-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/ppc-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/ppc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/ppc64-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/rsaz-avx2.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/rsaz-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/s390x-gf2m.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/s390x-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/s390x.S projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/sparct4-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/sparcv8.S projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/sparcv8plus.S projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/sparcv9-gf2m.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/sparcv9-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/sparcv9a-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/via-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/vis3-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/x86-gf2m.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/x86-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/x86_64-gcc.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/x86_64-gf2m.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/x86_64-mont.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/asm/x86_64-mont5.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_add.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_asm.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_blind.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_const.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_ctx.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_depr.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_div.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_exp.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_exp2.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_gcd.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_gf2m.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_kron.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_mod.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_mont.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_mpi.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_mul.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_nist.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_prime.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_prime.h projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_prime.pl projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_print.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_rand.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_recp.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_shift.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_sqr.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_sqrt.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_word.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/bn_x931p.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/rsaz_exp.c projects/power8_bringup_hacks/crypto/openssl/crypto/bn/rsaz_exp.h projects/power8_bringup_hacks/crypto/openssl/crypto/buffer/buf_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/buffer/buffer.c projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/asm/cmll-x86.pl projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/asm/cmll-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/asm/cmllt4-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/camellia.c projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/cmll_cbc.c projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/cmll_cfb.c projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/cmll_ctr.c projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/cmll_ecb.c projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/cmll_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/cmll_misc.c projects/power8_bringup_hacks/crypto/openssl/crypto/camellia/cmll_ofb.c projects/power8_bringup_hacks/crypto/openssl/crypto/cast/asm/cast-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/cast/c_cfb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/cast/c_ecb.c projects/power8_bringup_hacks/crypto/openssl/crypto/cast/c_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/cast/c_ofb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/cast/c_skey.c projects/power8_bringup_hacks/crypto/openssl/crypto/cast/cast_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/cast/cast_s.h projects/power8_bringup_hacks/crypto/openssl/crypto/cmac/cm_ameth.c projects/power8_bringup_hacks/crypto/openssl/crypto/cmac/cm_pmeth.c projects/power8_bringup_hacks/crypto/openssl/crypto/cmac/cmac.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_asn1.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_att.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_cd.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_dd.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_env.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_ess.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_io.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_kari.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_pwri.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_sd.c projects/power8_bringup_hacks/crypto/openssl/crypto/cms/cms_smime.c projects/power8_bringup_hacks/crypto/openssl/crypto/comp/c_zlib.c projects/power8_bringup_hacks/crypto/openssl/crypto/comp/comp_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/comp/comp_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_api.c projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_def.c projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_def.h projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_mall.c projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_mod.c projects/power8_bringup_hacks/crypto/openssl/crypto/conf/conf_sap.c projects/power8_bringup_hacks/crypto/openssl/crypto/conf/keysets.pl projects/power8_bringup_hacks/crypto/openssl/crypto/cpt_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/cryptlib.c projects/power8_bringup_hacks/crypto/openssl/crypto/cversion.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/asm/crypt586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/des/asm/des-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/des/asm/des_enc.m4 projects/power8_bringup_hacks/crypto/openssl/crypto/des/asm/desboth.pl projects/power8_bringup_hacks/crypto/openssl/crypto/des/asm/dest4-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/des/cbc_cksm.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/cbc_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/cfb64ede.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/cfb64enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/cfb_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/des_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/des_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/des/ecb3_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/ecb_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/fcrypt.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/fcrypt_b.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/ncbc_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/ofb64ede.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/ofb64enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/ofb_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/pcbc_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/qud_cksm.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/rand_key.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/set_key.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/spr.h projects/power8_bringup_hacks/crypto/openssl/crypto/des/str2key.c projects/power8_bringup_hacks/crypto/openssl/crypto/des/xcbc_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_ameth.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_asn1.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_check.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_depr.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_gen.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_kdf.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_key.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_pmeth.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_prn.c projects/power8_bringup_hacks/crypto/openssl/crypto/dh/dh_rfc5114.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_ameth.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_asn1.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_depr.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_gen.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_key.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_ossl.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_pmeth.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_prn.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_sign.c projects/power8_bringup_hacks/crypto/openssl/crypto/dsa/dsa_vrf.c projects/power8_bringup_hacks/crypto/openssl/crypto/dso/dso_dl.c projects/power8_bringup_hacks/crypto/openssl/crypto/dso/dso_dlfcn.c projects/power8_bringup_hacks/crypto/openssl/crypto/dso/dso_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/dso/dso_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/dso/dso_openssl.c projects/power8_bringup_hacks/crypto/openssl/crypto/ebcdic.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/asm/ecp_nistz256-avx2.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ec/asm/ecp_nistz256-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec2_oct.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec2_smpl.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_ameth.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_asn1.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_check.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_curve.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_cvt.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_key.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_mult.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_oct.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_pmeth.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ec_print.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/eck_prn.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_mont.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_nist.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_nistp224.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_nistp256.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_nistp521.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_nistputil.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_nistz256.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_nistz256_table.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_oct.c projects/power8_bringup_hacks/crypto/openssl/crypto/ec/ecp_smpl.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/README projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_all.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_cnf.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_ctrl.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_dyn.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_fat.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_init.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_int.h projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_list.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_openssl.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_pkey.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_rdrand.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/eng_table.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_asnmth.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_cipher.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_dh.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_digest.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_dsa.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_pkmeth.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_rand.c projects/power8_bringup_hacks/crypto/openssl/crypto/engine/tb_rsa.c projects/power8_bringup_hacks/crypto/openssl/crypto/err/err.c projects/power8_bringup_hacks/crypto/openssl/crypto/err/err_all.c projects/power8_bringup_hacks/crypto/openssl/crypto/err/err_prn.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/bio_b64.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/bio_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/bio_md.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/bio_ok.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/c_allc.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/c_alld.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/digest.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_aes.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_bf.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_camellia.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_cast.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_des.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_des3.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_idea.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_null.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_old.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_rc2.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_rc4.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_rc4_hmac_md5.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_rc5.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_seed.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/e_xcbc_d.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/encode.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_cnf.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_key.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_pbe.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/evp_pkey.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_md2.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_md4.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_md5.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_mdc2.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_null.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_ripemd.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_sha1.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_sigver.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/m_wp.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/names.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/p5_crpt.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/p5_crpt2.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/p_dec.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/p_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/p_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/p_open.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/p_seal.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/p_sign.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/p_verify.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/pmeth_fn.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/pmeth_gn.c projects/power8_bringup_hacks/crypto/openssl/crypto/evp/pmeth_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/ex_data.c projects/power8_bringup_hacks/crypto/openssl/crypto/hmac/hm_ameth.c projects/power8_bringup_hacks/crypto/openssl/crypto/hmac/hm_pmeth.c projects/power8_bringup_hacks/crypto/openssl/crypto/hmac/hmac.c projects/power8_bringup_hacks/crypto/openssl/crypto/ia64cpuid.S projects/power8_bringup_hacks/crypto/openssl/crypto/idea/i_cbc.c projects/power8_bringup_hacks/crypto/openssl/crypto/idea/i_cfb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/idea/i_ecb.c projects/power8_bringup_hacks/crypto/openssl/crypto/idea/i_ofb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/idea/i_skey.c projects/power8_bringup_hacks/crypto/openssl/crypto/idea/idea_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/lhash/lh_stats.c projects/power8_bringup_hacks/crypto/openssl/crypto/lhash/lhash.c projects/power8_bringup_hacks/crypto/openssl/crypto/md2/md2_dgst.c projects/power8_bringup_hacks/crypto/openssl/crypto/md2/md2_one.c projects/power8_bringup_hacks/crypto/openssl/crypto/md4/md4_dgst.c projects/power8_bringup_hacks/crypto/openssl/crypto/md4/md4_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/md4/md4_one.c projects/power8_bringup_hacks/crypto/openssl/crypto/md5/asm/md5-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/md5/asm/md5-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/md5/asm/md5-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/md5/md5_dgst.c projects/power8_bringup_hacks/crypto/openssl/crypto/md5/md5_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/md5/md5_one.c projects/power8_bringup_hacks/crypto/openssl/crypto/mdc2/mdc2_one.c projects/power8_bringup_hacks/crypto/openssl/crypto/mdc2/mdc2dgst.c projects/power8_bringup_hacks/crypto/openssl/crypto/mem.c projects/power8_bringup_hacks/crypto/openssl/crypto/mem_clr.c projects/power8_bringup_hacks/crypto/openssl/crypto/mem_dbg.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/aesni-gcm-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghash-armv4.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghash-ia64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghash-parisc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghash-s390x.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghash-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghash-x86.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghash-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghashp8-ppc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl projects/power8_bringup_hacks/crypto/openssl/crypto/modes/cbc128.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/ccm128.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/cfb128.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/ctr128.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/cts128.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/gcm128.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/modes_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/modes/ofb128.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/wrap128.c projects/power8_bringup_hacks/crypto/openssl/crypto/modes/xts128.c projects/power8_bringup_hacks/crypto/openssl/crypto/o_dir.c projects/power8_bringup_hacks/crypto/openssl/crypto/o_fips.c projects/power8_bringup_hacks/crypto/openssl/crypto/o_init.c projects/power8_bringup_hacks/crypto/openssl/crypto/o_str.c projects/power8_bringup_hacks/crypto/openssl/crypto/o_time.c projects/power8_bringup_hacks/crypto/openssl/crypto/objects/o_names.c projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_dat.c projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_dat.h projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_dat.pl projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_mac.num projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_xref.c projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_xref.h projects/power8_bringup_hacks/crypto/openssl/crypto/objects/obj_xref.txt projects/power8_bringup_hacks/crypto/openssl/crypto/objects/objects.pl projects/power8_bringup_hacks/crypto/openssl/crypto/objects/objects.txt projects/power8_bringup_hacks/crypto/openssl/crypto/objects/objxref.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_asn.c projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_cl.c projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_ext.c projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_ht.c projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_prn.c projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_srv.c projects/power8_bringup_hacks/crypto/openssl/crypto/ocsp/ocsp_vfy.c projects/power8_bringup_hacks/crypto/openssl/crypto/pariscid.pl projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_all.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_info.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_oth.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_pk8.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_pkey.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_sign.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_x509.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pem_xaux.c projects/power8_bringup_hacks/crypto/openssl/crypto/pem/pvkfmt.c projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/cbc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/ppc-xlate.pl projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/sparcv9_modes.pl projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/x86_64-xlate.pl projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/x86asm.pl projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/x86gas.pl projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/x86masm.pl projects/power8_bringup_hacks/crypto/openssl/crypto/perlasm/x86nasm.pl projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_add.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_asn.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_attr.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_crpt.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_crt.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_decr.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_init.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_key.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_kiss.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_mutl.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_npas.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_p8d.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_p8e.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/p12_utl.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs12/pk12err.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/bio_pk7.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pk7_asn1.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pk7_attr.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pk7_doit.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pk7_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pk7_mime.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pk7_smime.c projects/power8_bringup_hacks/crypto/openssl/crypto/pkcs7/pkcs7err.c projects/power8_bringup_hacks/crypto/openssl/crypto/ppc_arch.h projects/power8_bringup_hacks/crypto/openssl/crypto/ppccap.c projects/power8_bringup_hacks/crypto/openssl/crypto/ppccpuid.pl projects/power8_bringup_hacks/crypto/openssl/crypto/rand/rand_egd.c projects/power8_bringup_hacks/crypto/openssl/crypto/rand/rand_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/rand/rand_lcl.h projects/power8_bringup_hacks/crypto/openssl/crypto/rand/rand_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/rand/rand_unix.c projects/power8_bringup_hacks/crypto/openssl/crypto/rand/randfile.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rc2_cbc.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rc2_ecb.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rc2_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rc2_skey.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rc2cfb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc2/rc2ofb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/asm/rc4-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/asm/rc4-md5-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/asm/rc4-parisc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/asm/rc4-s390x.pl projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/asm/rc4-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/rc4_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/rc4_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/rc4/rc4_skey.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/asm/rc5-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/rc5_ecb.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/rc5_enc.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/rc5_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/rc5_skey.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/rc5cfb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/rc5/rc5ofb64.c projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/asm/rmd-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/rmd_dgst.c projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/rmd_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/rmd_one.c projects/power8_bringup_hacks/crypto/openssl/crypto/ripemd/rmdconst.h projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_ameth.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_asn1.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_chk.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_crpt.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_depr.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_gen.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_none.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_oaep.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_pk1.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_pmeth.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_prn.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_pss.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_saos.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_sign.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_ssl.c projects/power8_bringup_hacks/crypto/openssl/crypto/rsa/rsa_x931.c projects/power8_bringup_hacks/crypto/openssl/crypto/s390xcap.c projects/power8_bringup_hacks/crypto/openssl/crypto/seed/seed.c projects/power8_bringup_hacks/crypto/openssl/crypto/seed/seed_cbc.c projects/power8_bringup_hacks/crypto/openssl/crypto/seed/seed_cfb.c projects/power8_bringup_hacks/crypto/openssl/crypto/seed/seed_ecb.c projects/power8_bringup_hacks/crypto/openssl/crypto/seed/seed_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/seed/seed_ofb.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-armv4-large.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-armv8.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-ia64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-mb-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-mips.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-parisc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-ppc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-s390x.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-sparcv9a.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-thumb.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha1-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha256-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha256-armv4.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha256-mb-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-586.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-armv4.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-armv8.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-ia64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-mips.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-parisc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-ppc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-s390x.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-sparcv9.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/asm/sha512p8-ppc.pl projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha1_one.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha1dgst.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha256.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha512.c projects/power8_bringup_hacks/crypto/openssl/crypto/sha/sha_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/sparc_arch.h projects/power8_bringup_hacks/crypto/openssl/crypto/sparccpuid.S projects/power8_bringup_hacks/crypto/openssl/crypto/sparcv9cap.c projects/power8_bringup_hacks/crypto/openssl/crypto/srp/srp_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/srp/srp_vfy.c projects/power8_bringup_hacks/crypto/openssl/crypto/stack/stack.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_asn1.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_conf.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_req_print.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_req_utils.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_rsp_print.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_rsp_sign.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_rsp_utils.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_rsp_verify.c projects/power8_bringup_hacks/crypto/openssl/crypto/ts/ts_verify_ctx.c projects/power8_bringup_hacks/crypto/openssl/crypto/txt_db/txt_db.c projects/power8_bringup_hacks/crypto/openssl/crypto/ui/ui_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/ui/ui_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/ui/ui_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/ui/ui_openssl.c projects/power8_bringup_hacks/crypto/openssl/crypto/ui/ui_util.c projects/power8_bringup_hacks/crypto/openssl/crypto/uid.c projects/power8_bringup_hacks/crypto/openssl/crypto/vms_rms.h projects/power8_bringup_hacks/crypto/openssl/crypto/whrlpool/asm/wp-mmx.pl projects/power8_bringup_hacks/crypto/openssl/crypto/whrlpool/asm/wp-x86_64.pl projects/power8_bringup_hacks/crypto/openssl/crypto/whrlpool/wp_block.c projects/power8_bringup_hacks/crypto/openssl/crypto/whrlpool/wp_dgst.c projects/power8_bringup_hacks/crypto/openssl/crypto/whrlpool/wp_locl.h projects/power8_bringup_hacks/crypto/openssl/crypto/x509/by_dir.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/by_file.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_att.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_cmp.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_d2.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_def.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_err.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_ext.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_lu.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_obj.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_r2x.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_req.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_set.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_trs.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_txt.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_v3.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_vfy.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509_vpm.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509cset.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509name.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509rset.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509spki.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x509type.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509/x_all.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/ext_dat.h projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/pcy_cache.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/pcy_data.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/pcy_int.h projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/pcy_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/pcy_map.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/pcy_node.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/pcy_tree.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_addr.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_akey.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_akeya.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_alt.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_asid.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_bcons.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_bitst.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_conf.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_cpols.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_crld.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_enum.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_extku.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_genn.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_ia5.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_info.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_int.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_lib.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_ncons.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_pci.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_pcia.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_pcons.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_pku.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_pmaps.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_prn.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_purp.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_skey.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_sxnet.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3_utl.c projects/power8_bringup_hacks/crypto/openssl/crypto/x509v3/v3err.c projects/power8_bringup_hacks/crypto/openssl/crypto/x86_64cpuid.pl projects/power8_bringup_hacks/crypto/openssl/crypto/x86cpuid.pl projects/power8_bringup_hacks/crypto/openssl/doc/HOWTO/certificates.txt projects/power8_bringup_hacks/crypto/openssl/doc/HOWTO/keys.txt projects/power8_bringup_hacks/crypto/openssl/doc/HOWTO/proxy_certificates.txt projects/power8_bringup_hacks/crypto/openssl/doc/README projects/power8_bringup_hacks/crypto/openssl/doc/dir-locals.example.el projects/power8_bringup_hacks/crypto/openssl/doc/openssl-c-indent.el projects/power8_bringup_hacks/crypto/openssl/e_os.h projects/power8_bringup_hacks/crypto/openssl/engines/e_capi.c projects/power8_bringup_hacks/crypto/openssl/engines/e_capi_err.c projects/power8_bringup_hacks/crypto/openssl/engines/e_capi_err.h projects/power8_bringup_hacks/crypto/openssl/engines/e_padlock.c projects/power8_bringup_hacks/crypto/openssl/ssl/bio_ssl.c projects/power8_bringup_hacks/crypto/openssl/ssl/d1_lib.c projects/power8_bringup_hacks/crypto/openssl/ssl/d1_srtp.c projects/power8_bringup_hacks/crypto/openssl/ssl/s3_cbc.c projects/power8_bringup_hacks/crypto/openssl/ssl/s3_enc.c projects/power8_bringup_hacks/crypto/openssl/ssl/s3_lib.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_asn1.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_cert.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_ciph.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_conf.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_err.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_lib.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_locl.h projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_rsa.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_sess.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_stat.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_txt.c projects/power8_bringup_hacks/crypto/openssl/ssl/ssl_utst.c projects/power8_bringup_hacks/crypto/openssl/ssl/t1_enc.c projects/power8_bringup_hacks/crypto/openssl/ssl/t1_lib.c projects/power8_bringup_hacks/crypto/openssl/ssl/t1_trce.c projects/power8_bringup_hacks/crypto/openssl/ssl/tls_srp.c projects/power8_bringup_hacks/etc/Makefile projects/power8_bringup_hacks/gnu/usr.bin/binutils/as/config.h projects/power8_bringup_hacks/gnu/usr.bin/binutils/ld/config.h projects/power8_bringup_hacks/gnu/usr.bin/binutils/libbinutils/config.h projects/power8_bringup_hacks/gnu/usr.bin/binutils/libiberty/config.h projects/power8_bringup_hacks/gnu/usr.bin/cc/libiberty/config.h projects/power8_bringup_hacks/gnu/usr.bin/gdb/arch/amd64/config.h projects/power8_bringup_hacks/gnu/usr.bin/gdb/arch/arm/config.h projects/power8_bringup_hacks/gnu/usr.bin/gdb/arch/i386/config.h projects/power8_bringup_hacks/gnu/usr.bin/gdb/arch/mips/config.h projects/power8_bringup_hacks/gnu/usr.bin/gdb/arch/powerpc/config.h projects/power8_bringup_hacks/gnu/usr.bin/gdb/arch/powerpc64/config.h projects/power8_bringup_hacks/gnu/usr.bin/gdb/arch/sparc64/config.h projects/power8_bringup_hacks/include/limits.h projects/power8_bringup_hacks/include/time.h projects/power8_bringup_hacks/kerberos5/Makefile.inc projects/power8_bringup_hacks/kerberos5/include/crypto-headers.h projects/power8_bringup_hacks/lib/Makefile projects/power8_bringup_hacks/lib/clang/freebsd_cc_version.h projects/power8_bringup_hacks/lib/clang/include/lld/Common/Version.inc projects/power8_bringup_hacks/lib/csu/arm/crt1.c projects/power8_bringup_hacks/lib/csu/common/crtbrand.c projects/power8_bringup_hacks/lib/csu/common/ignore_init.c projects/power8_bringup_hacks/lib/csu/common/notes.h projects/power8_bringup_hacks/lib/lib80211/Makefile projects/power8_bringup_hacks/lib/libalias/libalias/Makefile projects/power8_bringup_hacks/lib/libbe/be.c projects/power8_bringup_hacks/lib/libc/Makefile projects/power8_bringup_hacks/lib/libc/amd64/string/bcmp.S projects/power8_bringup_hacks/lib/libc/amd64/string/bcopy.S projects/power8_bringup_hacks/lib/libc/amd64/string/bzero.S projects/power8_bringup_hacks/lib/libc/amd64/string/memcmp.S projects/power8_bringup_hacks/lib/libc/amd64/string/memset.S projects/power8_bringup_hacks/lib/libc/i386/string/bcopy.S projects/power8_bringup_hacks/lib/libc/net/Makefile.inc projects/power8_bringup_hacks/lib/libc/posix1e/Makefile.inc projects/power8_bringup_hacks/lib/libc/rpc/Makefile.inc projects/power8_bringup_hacks/lib/libc/stdtime/strptime.c projects/power8_bringup_hacks/lib/libfetch/common.c projects/power8_bringup_hacks/lib/libmp/mpasbn.c projects/power8_bringup_hacks/lib/libopie/Makefile projects/power8_bringup_hacks/lib/libpmc/Makefile projects/power8_bringup_hacks/lib/libpmc/libpmc_pmu_util.c projects/power8_bringup_hacks/lib/libradius/radlib.c projects/power8_bringup_hacks/lib/libsmb/Makefile projects/power8_bringup_hacks/lib/libunbound/Makefile projects/power8_bringup_hacks/lib/libusb/libusb.3 projects/power8_bringup_hacks/lib/libusb/libusb10.h projects/power8_bringup_hacks/lib/libusb/libusb10_io.c projects/power8_bringup_hacks/lib/libwrap/Makefile projects/power8_bringup_hacks/libexec/rtld-elf/Makefile projects/power8_bringup_hacks/libexec/rtld-elf/aarch64/reloc.c projects/power8_bringup_hacks/libexec/rtld-elf/aarch64/rtld_machdep.h projects/power8_bringup_hacks/libexec/rtld-elf/libmap.c projects/power8_bringup_hacks/libexec/rtld-elf/powerpc/reloc.c projects/power8_bringup_hacks/libexec/rtld-elf/rtld.c projects/power8_bringup_hacks/release/Makefile projects/power8_bringup_hacks/release/scripts/pkg-stage.sh projects/power8_bringup_hacks/sbin/bsdlabel/Makefile projects/power8_bringup_hacks/sbin/decryptcore/decryptcore.c projects/power8_bringup_hacks/sbin/devd/devd.cc projects/power8_bringup_hacks/sbin/devd/devd.hh projects/power8_bringup_hacks/sbin/dhclient/Makefile projects/power8_bringup_hacks/sbin/fsck_ffs/pass5.c projects/power8_bringup_hacks/sbin/geom/core/geom.8 projects/power8_bringup_hacks/sbin/geom/core/geom.c projects/power8_bringup_hacks/sbin/ifconfig/ifipsec.c projects/power8_bringup_hacks/sbin/init/rc.conf projects/power8_bringup_hacks/sbin/init/rc.d/ldconfig projects/power8_bringup_hacks/sbin/ipfw/ipfw.8 projects/power8_bringup_hacks/sbin/ipfw/ipfw2.c projects/power8_bringup_hacks/sbin/reboot/reboot.c projects/power8_bringup_hacks/sbin/sysctl/sysctl.8 projects/power8_bringup_hacks/secure/lib/libcrypto/Makefile projects/power8_bringup_hacks/secure/lib/libcrypto/Makefile.asm projects/power8_bringup_hacks/secure/lib/libcrypto/Makefile.depend projects/power8_bringup_hacks/secure/lib/libcrypto/Makefile.inc projects/power8_bringup_hacks/secure/lib/libcrypto/Makefile.man projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/aesv8-armx.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/ghashv8-armx.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/sha1-armv8.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/sha256-armv8.S projects/power8_bringup_hacks/secure/lib/libcrypto/aarch64/sha512-armv8.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/aes-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/aesni-sha1-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/aesni-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/bsaes-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/cmll-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/ghash-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/md5-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/rc4-md5-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/rc4-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/rsaz-avx2.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/rsaz-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/sha1-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/sha256-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/sha512-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/wp-x86_64.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/x86_64-gf2m.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/x86_64-mont.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/x86_64-mont5.S projects/power8_bringup_hacks/secure/lib/libcrypto/amd64/x86_64cpuid.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/aes-armv4.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/aesv8-armx.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/armv4-gf2m.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/armv4-mont.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/bsaes-armv7.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/ghash-armv4.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/ghashv8-armx.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/sha1-armv4-large.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/sha256-armv4.S projects/power8_bringup_hacks/secure/lib/libcrypto/arm/sha512-armv4.S projects/power8_bringup_hacks/secure/lib/libcrypto/engines/Makefile projects/power8_bringup_hacks/secure/lib/libcrypto/engines/Makefile.inc projects/power8_bringup_hacks/secure/lib/libcrypto/i386/aes-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/aesni-x86.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/bf-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/bn-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/cmll-x86.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/co-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/crypt586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/des-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/ghash-x86.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/md5-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/rc4-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/rc5-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/rmd-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/sha1-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/sha256-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/sha512-586.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/vpaes-x86.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/wp-mmx.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/x86-gf2m.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/x86-mont.S projects/power8_bringup_hacks/secure/lib/libcrypto/i386/x86cpuid.S projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_STRING_length.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_STRING_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_TIME_set.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ASN1_generate_nconf.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_ctrl.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_f_base64.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_f_buffer.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_f_cipher.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_f_md.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_f_null.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_f_ssl.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_find_type.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_new_CMS.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_push.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_read.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_s_accept.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_s_bio.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_s_connect.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_s_fd.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_s_file.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_s_mem.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_s_null.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_s_socket.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_set_callback.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BIO_should_retry.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_BLINDING_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_CTX_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_CTX_start.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_add.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_add_word.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_bn2bin.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_cmp.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_copy.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_generate_prime.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_mod_inverse.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_num_bytes.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_rand.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_set_bit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_swap.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/BN_zero.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_add0_cert.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_add1_signer.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_compress.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_decrypt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_encrypt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_final.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_get0_type.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_sign.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_sign_receipt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_uncompress.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_verify.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CMS_verify_receipt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CONF_modules_free.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/CONF_modules_load_file.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_generate_key.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_generate_parameters.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_set_method.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DH_size.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_SIG_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_do_sign.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_dup_DH.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_generate_key.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_generate_parameters.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_set_method.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_sign.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/DSA_size.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EC_GFp_simple_method.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EC_GROUP_copy.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EC_GROUP_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EC_KEY_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EC_POINT_add.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EC_POINT_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_GET_LIB.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_clear_error.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_error_string.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_get_error.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_load_strings.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_print_errors.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_put_error.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_remove_state.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/ERR_set_mark.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_BytesToKey.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_DigestInit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_DigestSignInit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_EncodeInit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_EncryptInit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_OpenInit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_derive.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_meth_new.3 (contents, props changed) projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_sign.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_verify.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_SealInit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_SignInit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/EVP_VerifyInit.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OBJ_nid2obj.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_Applink.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_config.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_instrument_bus.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PKCS12_create.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PKCS12_parse.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PKCS7_decrypt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PKCS7_encrypt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PKCS7_sign.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/PKCS7_verify.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_add.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_bytes.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_cleanup.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_egd.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_load_file.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RAND_set_rand_method.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_blinding_on.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_check_key.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_generate_key.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_print.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_private_encrypt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_public_encrypt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_set_method.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_sign.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/RSA_size.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SMIME_read_CMS.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SMIME_write_CMS.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_NAME_print_ex.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_check_host.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_check_private_key.3 (contents, props changed) projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_cmp_time.3 (contents, props changed) projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_new.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/X509_verify_cert.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_DHparams.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_PrivateKey.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/d2i_X509.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 projects/power8_bringup_hacks/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 projects/power8_bringup_hacks/secure/lib/libssh/Makefile projects/power8_bringup_hacks/secure/lib/libssl/Makefile projects/power8_bringup_hacks/secure/lib/libssl/Makefile.depend projects/power8_bringup_hacks/secure/usr.bin/openssl/Makefile projects/power8_bringup_hacks/secure/usr.bin/openssl/Makefile.man projects/power8_bringup_hacks/secure/usr.bin/openssl/man/CA.pl.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/asn1parse.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/ca.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/ciphers.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/cms.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/crl.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/crl2pkcs7.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/dgst.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/dhparam.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/dsa.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/dsaparam.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/ec.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/ecparam.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/enc.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/errstr.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/gendsa.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/genpkey.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/genrsa.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/nseq.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/ocsp.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/openssl.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/passwd.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/pkcs12.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/pkcs7.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/pkcs8.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/pkey.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/pkeyparam.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/pkeyutl.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/rand.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/req.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/rsa.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/rsautl.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/s_client.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/s_server.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/s_time.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/sess_id.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/smime.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/speed.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/spkac.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/ts.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/tsget.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/verify.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/version.1 projects/power8_bringup_hacks/secure/usr.bin/openssl/man/x509.1 projects/power8_bringup_hacks/share/ctypedef/en_US.UTF-8.src projects/power8_bringup_hacks/share/man/man4/Makefile projects/power8_bringup_hacks/share/man/man4/bnxt.4 projects/power8_bringup_hacks/share/man/man4/cxgbe.4 projects/power8_bringup_hacks/share/man/man4/ddb.4 projects/power8_bringup_hacks/share/man/man4/em.4 projects/power8_bringup_hacks/share/man/man5/make.conf.5 projects/power8_bringup_hacks/share/man/man5/msdosfs.5 projects/power8_bringup_hacks/share/man/man5/src.conf.5 projects/power8_bringup_hacks/share/man/man9/MODULE_PNP_INFO.9 projects/power8_bringup_hacks/share/man/man9/iflib.9 projects/power8_bringup_hacks/share/misc/committers-ports.dot projects/power8_bringup_hacks/share/misc/committers-src.dot projects/power8_bringup_hacks/share/mk/bsd.dirs.mk projects/power8_bringup_hacks/share/mk/bsd.progs.mk projects/power8_bringup_hacks/share/mk/bsd.subdir.mk projects/power8_bringup_hacks/share/mk/bsd.sys.mk projects/power8_bringup_hacks/share/mk/src.libnames.mk projects/power8_bringup_hacks/share/mk/src.opts.mk projects/power8_bringup_hacks/stand/defaults/loader.conf projects/power8_bringup_hacks/stand/defaults/loader.conf.5 projects/power8_bringup_hacks/stand/lua/config.lua projects/power8_bringup_hacks/stand/lua/core.lua projects/power8_bringup_hacks/stand/lua/menu.lua projects/power8_bringup_hacks/stand/lua/password.lua projects/power8_bringup_hacks/sys/amd64/amd64/copyout.c projects/power8_bringup_hacks/sys/amd64/amd64/machdep.c projects/power8_bringup_hacks/sys/amd64/amd64/pmap.c projects/power8_bringup_hacks/sys/amd64/amd64/support.S projects/power8_bringup_hacks/sys/amd64/amd64/trap.c projects/power8_bringup_hacks/sys/amd64/conf/GENERIC projects/power8_bringup_hacks/sys/amd64/conf/GENERIC-MMCCAM projects/power8_bringup_hacks/sys/amd64/include/cpufunc.h projects/power8_bringup_hacks/sys/amd64/include/pmap.h projects/power8_bringup_hacks/sys/amd64/include/vmm.h projects/power8_bringup_hacks/sys/amd64/linux/linux_proto.h projects/power8_bringup_hacks/sys/amd64/linux/linux_systrace_args.c projects/power8_bringup_hacks/sys/amd64/linux32/linux32_proto.h projects/power8_bringup_hacks/sys/amd64/vmm/intel/vmx.c projects/power8_bringup_hacks/sys/amd64/vmm/vmm.c projects/power8_bringup_hacks/sys/arm64/arm64/elf_machdep.c projects/power8_bringup_hacks/sys/arm64/arm64/identcpu.c projects/power8_bringup_hacks/sys/arm64/arm64/machdep.c projects/power8_bringup_hacks/sys/arm64/arm64/undefined.c projects/power8_bringup_hacks/sys/arm64/conf/GENERIC projects/power8_bringup_hacks/sys/arm64/conf/GENERIC-MMCCAM projects/power8_bringup_hacks/sys/arm64/include/pte.h projects/power8_bringup_hacks/sys/arm64/include/undefined.h projects/power8_bringup_hacks/sys/cam/scsi/scsi_cd.c projects/power8_bringup_hacks/sys/cam/scsi/scsi_da.c projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_indirect.c projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/power8_bringup_hacks/sys/compat/cloudabi32/cloudabi32_proto.h projects/power8_bringup_hacks/sys/compat/cloudabi64/cloudabi64_proto.h projects/power8_bringup_hacks/sys/compat/freebsd32/freebsd32_ioctl.c projects/power8_bringup_hacks/sys/compat/freebsd32/freebsd32_ioctl.h projects/power8_bringup_hacks/sys/compat/freebsd32/freebsd32_syscall.h projects/power8_bringup_hacks/sys/compat/freebsd32/freebsd32_syscalls.c projects/power8_bringup_hacks/sys/compat/freebsd32/freebsd32_sysent.c projects/power8_bringup_hacks/sys/compat/freebsd32/syscalls.master projects/power8_bringup_hacks/sys/conf/files projects/power8_bringup_hacks/sys/conf/files.arm projects/power8_bringup_hacks/sys/conf/files.arm64 projects/power8_bringup_hacks/sys/conf/files.i386 projects/power8_bringup_hacks/sys/conf/files.mips projects/power8_bringup_hacks/sys/conf/files.powerpc projects/power8_bringup_hacks/sys/conf/files.riscv projects/power8_bringup_hacks/sys/conf/files.sparc64 projects/power8_bringup_hacks/sys/conf/kern.pre.mk projects/power8_bringup_hacks/sys/conf/newvers.sh projects/power8_bringup_hacks/sys/contrib/dev/acpica/changes.txt projects/power8_bringup_hacks/sys/contrib/dev/acpica/common/adisasm.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/common/ahtable.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/common/dmextern.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/common/dmtable.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslallocate.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslanalyze.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslcache.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslcodegen.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslcompile.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslcompiler.l projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asldefine.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslerror.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslexternal.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslfileio.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslfiles.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslfold.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslglobal.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslhex.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslkeywords.y projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asllength.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asllisting.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asllistsup.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslload.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asllookup.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslmain.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslmap.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslmapenter.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslmapoutput.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslmessages.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslmessages.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslmethod.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslnamesp.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asloffset.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslopcodes.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asloperands.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslopt.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asloptions.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslparseop.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslpld.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslpredef.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslprepkg.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslprune.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslresource.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslstartup.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslsupport.l projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslsupport.y projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asltokens.y projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asltransform.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/asltree.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslutils.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslwalks.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslxref.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/aslxrefout.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/cvcompiler.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/cvdisasm.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/cvparser.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dtcompile.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dtcompiler.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dtexpress.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dtfield.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dtio.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dtparser.y projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dtsubtable.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dttable.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dttable2.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dttemplate.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/dtutils.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/preprocess.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/prexpress.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/prmacros.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/prparser.l projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/prparser.y projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/prscan.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/compiler/prutils.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/components/debugger/dbinput.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/components/disassembler/dmutils.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/components/events/evregion.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/components/events/evrgnini.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/components/events/evxfregn.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/components/executer/exfield.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/components/hardware/hwsleep.c projects/power8_bringup_hacks/sys/contrib/dev/acpica/include/acconfig.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/include/acdisasm.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/include/acevents.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/include/acexcep.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/include/acinterp.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/include/aclocal.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/include/acpixf.h projects/power8_bringup_hacks/sys/contrib/dev/acpica/include/amlcode.h projects/power8_bringup_hacks/sys/crypto/ccp/ccp.c projects/power8_bringup_hacks/sys/dev/aac/aac_pci.c projects/power8_bringup_hacks/sys/dev/aacraid/aacraid_pci.c projects/power8_bringup_hacks/sys/dev/adlink/adlink.c projects/power8_bringup_hacks/sys/dev/ae/if_ae.c projects/power8_bringup_hacks/sys/dev/age/if_age.c projects/power8_bringup_hacks/sys/dev/ahci/ahci_pci.c projects/power8_bringup_hacks/sys/dev/alc/if_alc.c projects/power8_bringup_hacks/sys/dev/ale/if_ale.c projects/power8_bringup_hacks/sys/dev/amdsmn/amdsmn.c projects/power8_bringup_hacks/sys/dev/amdtemp/amdtemp.c projects/power8_bringup_hacks/sys/dev/amr/amr_pci.c projects/power8_bringup_hacks/sys/dev/an/if_an_pci.c projects/power8_bringup_hacks/sys/dev/bce/if_bce.c projects/power8_bringup_hacks/sys/dev/bfe/if_bfe.c projects/power8_bringup_hacks/sys/dev/bge/if_bge.c projects/power8_bringup_hacks/sys/dev/bwi/if_bwi_pci.c projects/power8_bringup_hacks/sys/dev/bwn/if_bwn_pci.c projects/power8_bringup_hacks/sys/dev/bxe/bxe.c projects/power8_bringup_hacks/sys/dev/cas/if_cas.c projects/power8_bringup_hacks/sys/dev/ciss/ciss.c projects/power8_bringup_hacks/sys/dev/cpuctl/cpuctl.c projects/power8_bringup_hacks/sys/dev/cxgb/cxgb_main.c projects/power8_bringup_hacks/sys/dev/cxgbe/adapter.h projects/power8_bringup_hacks/sys/dev/cxgbe/common/common.h projects/power8_bringup_hacks/sys/dev/cxgbe/common/t4_hw.c projects/power8_bringup_hacks/sys/dev/cxgbe/firmware/t4fw_cfg.txt projects/power8_bringup_hacks/sys/dev/cxgbe/firmware/t5fw_cfg.txt projects/power8_bringup_hacks/sys/dev/cxgbe/firmware/t6fw_cfg.txt projects/power8_bringup_hacks/sys/dev/cxgbe/osdep.h projects/power8_bringup_hacks/sys/dev/cxgbe/t4_filter.c projects/power8_bringup_hacks/sys/dev/cxgbe/t4_l2t.c projects/power8_bringup_hacks/sys/dev/cxgbe/t4_l2t.h projects/power8_bringup_hacks/sys/dev/cxgbe/t4_main.c projects/power8_bringup_hacks/sys/dev/cxgbe/tom/t4_cpl_io.c projects/power8_bringup_hacks/sys/dev/dc/if_dc.c projects/power8_bringup_hacks/sys/dev/drm2/drm_os_freebsd.c projects/power8_bringup_hacks/sys/dev/drm2/i915/i915_drv.c projects/power8_bringup_hacks/sys/dev/drm2/i915/intel_ringbuffer.c projects/power8_bringup_hacks/sys/dev/drm2/radeon/radeon_drv.c projects/power8_bringup_hacks/sys/dev/e1000/if_em.c projects/power8_bringup_hacks/sys/dev/e1000/if_em.h projects/power8_bringup_hacks/sys/dev/e1000/igb_txrx.c projects/power8_bringup_hacks/sys/dev/ed/if_ed_pci.c projects/power8_bringup_hacks/sys/dev/ena/ena.c projects/power8_bringup_hacks/sys/dev/et/if_et.c projects/power8_bringup_hacks/sys/dev/ffec/if_ffec.c projects/power8_bringup_hacks/sys/dev/fxp/if_fxp.c projects/power8_bringup_hacks/sys/dev/gem/if_gem_pci.c projects/power8_bringup_hacks/sys/dev/hwpmc/hwpmc_logging.c projects/power8_bringup_hacks/sys/dev/hwpmc/hwpmc_mod.c projects/power8_bringup_hacks/sys/dev/ichiic/ig4_iic.c projects/power8_bringup_hacks/sys/dev/ichiic/ig4_pci.c projects/power8_bringup_hacks/sys/dev/ida/ida_pci.c projects/power8_bringup_hacks/sys/dev/intpm/intpm.c projects/power8_bringup_hacks/sys/dev/ioat/ioat.c projects/power8_bringup_hacks/sys/dev/ipw/if_ipw.c projects/power8_bringup_hacks/sys/dev/iwm/if_iwm.c projects/power8_bringup_hacks/sys/dev/iwn/if_iwn.c projects/power8_bringup_hacks/sys/dev/ixgbe/if_ix.c projects/power8_bringup_hacks/sys/dev/ixgbe/if_ixv.c projects/power8_bringup_hacks/sys/dev/ixl/if_ixl.c projects/power8_bringup_hacks/sys/dev/ixl/if_ixlv.c projects/power8_bringup_hacks/sys/dev/mfi/mfi_pci.c projects/power8_bringup_hacks/sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c projects/power8_bringup_hacks/sys/dev/mpr/mpr_pci.c projects/power8_bringup_hacks/sys/dev/mps/mps_pci.c projects/power8_bringup_hacks/sys/dev/mvs/mvs_pci.c projects/power8_bringup_hacks/sys/dev/my/if_my.c projects/power8_bringup_hacks/sys/dev/ncr/ncr.c projects/power8_bringup_hacks/sys/dev/ntb/ntb_hw/ntb_hw_intel.c projects/power8_bringup_hacks/sys/dev/oce/oce_if.c projects/power8_bringup_hacks/sys/dev/ofw/ofw_bus_subr.h projects/power8_bringup_hacks/sys/dev/pccard/pccardvar.h projects/power8_bringup_hacks/sys/dev/pccbb/pccbb_pci.c projects/power8_bringup_hacks/sys/dev/pci/pci_user.c projects/power8_bringup_hacks/sys/dev/pci/pcireg.h projects/power8_bringup_hacks/sys/dev/pci/pcivar.h projects/power8_bringup_hacks/sys/dev/pcn/if_pcn.c projects/power8_bringup_hacks/sys/dev/puc/puc_pci.c projects/power8_bringup_hacks/sys/dev/ral/if_ral_pci.c projects/power8_bringup_hacks/sys/dev/rl/if_rl.c projects/power8_bringup_hacks/sys/dev/sdhci/sdhci_acpi.c projects/power8_bringup_hacks/sys/dev/spibus/spi.h projects/power8_bringup_hacks/sys/dev/uart/uart_bus_pccard.c projects/power8_bringup_hacks/sys/dev/uart/uart_bus_pci.c projects/power8_bringup_hacks/sys/dev/uart/uart_dev_snps.c projects/power8_bringup_hacks/sys/dev/usb/net/if_ure.c projects/power8_bringup_hacks/sys/dev/usb/usbdi.h projects/power8_bringup_hacks/sys/dev/xl/if_xl.c projects/power8_bringup_hacks/sys/fs/nfsserver/nfs_nfsdport.c projects/power8_bringup_hacks/sys/geom/eli/g_eli_crypto.c projects/power8_bringup_hacks/sys/geom/raid/tr_raid0.c projects/power8_bringup_hacks/sys/i386/conf/GENERIC projects/power8_bringup_hacks/sys/i386/i386/npx.c projects/power8_bringup_hacks/sys/i386/i386/pmap.c projects/power8_bringup_hacks/sys/i386/i386/trap.c projects/power8_bringup_hacks/sys/i386/i386/vm_machdep.c projects/power8_bringup_hacks/sys/i386/include/pmap.h projects/power8_bringup_hacks/sys/i386/linux/linux_proto.h projects/power8_bringup_hacks/sys/isa/isavar.h projects/power8_bringup_hacks/sys/kern/init_sysent.c projects/power8_bringup_hacks/sys/kern/kern_context.c projects/power8_bringup_hacks/sys/kern/kern_cpuset.c projects/power8_bringup_hacks/sys/kern/kern_descrip.c projects/power8_bringup_hacks/sys/kern/kern_jail.c projects/power8_bringup_hacks/sys/kern/kern_malloc.c projects/power8_bringup_hacks/sys/kern/kern_resource.c projects/power8_bringup_hacks/sys/kern/link_elf.c projects/power8_bringup_hacks/sys/kern/subr_vmem.c projects/power8_bringup_hacks/sys/kern/sys_generic.c projects/power8_bringup_hacks/sys/kern/syscalls.c projects/power8_bringup_hacks/sys/kern/syscalls.master projects/power8_bringup_hacks/sys/kern/uipc_socket.c projects/power8_bringup_hacks/sys/kern/vfs_lookup.c projects/power8_bringup_hacks/sys/kern/vfs_syscalls.c projects/power8_bringup_hacks/sys/net/if.c projects/power8_bringup_hacks/sys/net/if_gre.c projects/power8_bringup_hacks/sys/net/if_lagg.c projects/power8_bringup_hacks/sys/net/if_tap.c projects/power8_bringup_hacks/sys/net/if_tun.c projects/power8_bringup_hacks/sys/net/if_var.h projects/power8_bringup_hacks/sys/net/if_vlan.c projects/power8_bringup_hacks/sys/net/iflib.c projects/power8_bringup_hacks/sys/net/iflib.h projects/power8_bringup_hacks/sys/netinet/in_pcb.h projects/power8_bringup_hacks/sys/netinet/ip_encap.h projects/power8_bringup_hacks/sys/netinet/ip_options.c projects/power8_bringup_hacks/sys/netinet/ip_output.c projects/power8_bringup_hacks/sys/netinet/sctp_asconf.c projects/power8_bringup_hacks/sys/netinet/sctp_auth.c projects/power8_bringup_hacks/sys/netinet/sctp_auth.h projects/power8_bringup_hacks/sys/netinet/sctp_input.c projects/power8_bringup_hacks/sys/netinet/sctp_output.c projects/power8_bringup_hacks/sys/netinet/sctputil.c projects/power8_bringup_hacks/sys/netinet/siftr.c projects/power8_bringup_hacks/sys/netinet/tcp_hpts.c projects/power8_bringup_hacks/sys/netinet/tcp_input.c projects/power8_bringup_hacks/sys/netinet/tcp_syncache.c projects/power8_bringup_hacks/sys/netinet/udp_usrreq.c projects/power8_bringup_hacks/sys/netinet6/icmp6.c projects/power8_bringup_hacks/sys/netinet6/in6_pcb.c projects/power8_bringup_hacks/sys/netinet6/udp6_usrreq.c projects/power8_bringup_hacks/sys/netipsec/key.c projects/power8_bringup_hacks/sys/netipsec/key.h projects/power8_bringup_hacks/sys/netipsec/subr_ipsec.c projects/power8_bringup_hacks/sys/netipsec/xform.h projects/power8_bringup_hacks/sys/netpfil/pf/pf.c projects/power8_bringup_hacks/sys/opencrypto/cryptosoft.c projects/power8_bringup_hacks/sys/opencrypto/cryptosoft.h projects/power8_bringup_hacks/sys/powerpc/conf/GENERIC projects/power8_bringup_hacks/sys/powerpc/conf/GENERIC64 projects/power8_bringup_hacks/sys/powerpc/ofw/ofw_machdep.c projects/power8_bringup_hacks/sys/powerpc/powernv/opal_pci.c projects/power8_bringup_hacks/sys/powerpc/pseries/xics.c projects/power8_bringup_hacks/sys/riscv/include/fpe.h projects/power8_bringup_hacks/sys/riscv/riscv/machdep.c projects/power8_bringup_hacks/sys/riscv/riscv/pmap.c projects/power8_bringup_hacks/sys/riscv/riscv/swtch.S projects/power8_bringup_hacks/sys/riscv/riscv/trap.c projects/power8_bringup_hacks/sys/security/audit/audit.c projects/power8_bringup_hacks/sys/security/audit/audit.h projects/power8_bringup_hacks/sys/security/audit/audit_dtrace.c projects/power8_bringup_hacks/sys/security/audit/audit_private.h projects/power8_bringup_hacks/sys/security/audit/audit_syscalls.c projects/power8_bringup_hacks/sys/security/audit/audit_worker.c projects/power8_bringup_hacks/sys/sys/_domainset.h projects/power8_bringup_hacks/sys/sys/malloc.h projects/power8_bringup_hacks/sys/sys/module.h projects/power8_bringup_hacks/sys/sys/param.h projects/power8_bringup_hacks/sys/sys/pmc.h projects/power8_bringup_hacks/sys/sys/pmckern.h projects/power8_bringup_hacks/sys/sys/racct.h projects/power8_bringup_hacks/sys/sys/resourcevar.h projects/power8_bringup_hacks/sys/sys/signalvar.h projects/power8_bringup_hacks/sys/sys/syscall.h projects/power8_bringup_hacks/sys/sys/user.h projects/power8_bringup_hacks/sys/sys/vmmeter.h projects/power8_bringup_hacks/sys/ufs/ffs/ffs_softdep.c projects/power8_bringup_hacks/sys/ufs/ufs/ufs_quota.c projects/power8_bringup_hacks/sys/ufs/ufs/ufs_vfsops.c projects/power8_bringup_hacks/sys/ufs/ufs/ufs_vnops.c projects/power8_bringup_hacks/sys/vm/swap_pager.c projects/power8_bringup_hacks/sys/vm/uma_core.c projects/power8_bringup_hacks/sys/vm/vm_domainset.c projects/power8_bringup_hacks/sys/vm/vm_domainset.h projects/power8_bringup_hacks/sys/vm/vm_fault.c projects/power8_bringup_hacks/sys/vm/vm_glue.c projects/power8_bringup_hacks/sys/vm/vm_init.c projects/power8_bringup_hacks/sys/vm/vm_kern.c projects/power8_bringup_hacks/sys/vm/vm_kern.h projects/power8_bringup_hacks/sys/vm/vm_mmap.c projects/power8_bringup_hacks/sys/vm/vm_page.c projects/power8_bringup_hacks/sys/vm/vm_pageout.c projects/power8_bringup_hacks/sys/vm/vm_pagequeue.h projects/power8_bringup_hacks/sys/vm/vm_phys.c projects/power8_bringup_hacks/sys/x86/acpica/srat.c projects/power8_bringup_hacks/sys/x86/include/ifunc.h projects/power8_bringup_hacks/sys/x86/include/ucode.h projects/power8_bringup_hacks/sys/x86/iommu/intel_utils.c projects/power8_bringup_hacks/sys/x86/isa/atpic.c projects/power8_bringup_hacks/sys/x86/x86/ucode.c projects/power8_bringup_hacks/tools/build/mk/OptionalObsoleteFiles.inc projects/power8_bringup_hacks/tools/tools/locale/README projects/power8_bringup_hacks/tools/tools/locale/etc/common.UTF-8.src projects/power8_bringup_hacks/tools/tools/locale/etc/manual-input.UTF-8 (contents, props changed) projects/power8_bringup_hacks/usr.bin/bmake/Makefile.config projects/power8_bringup_hacks/usr.bin/calendar/calendars/calendar.freebsd projects/power8_bringup_hacks/usr.bin/clang/lld/ld.lld.1 projects/power8_bringup_hacks/usr.bin/dc/bcode.c projects/power8_bringup_hacks/usr.bin/dc/inout.c projects/power8_bringup_hacks/usr.bin/factor/factor.c projects/power8_bringup_hacks/usr.bin/locate/locate/Makefile projects/power8_bringup_hacks/usr.bin/mail/Makefile projects/power8_bringup_hacks/usr.bin/mandoc/Makefile projects/power8_bringup_hacks/usr.bin/nfsstat/nfsstat.1 projects/power8_bringup_hacks/usr.bin/tip/tip/Makefile projects/power8_bringup_hacks/usr.bin/top/top.1 projects/power8_bringup_hacks/usr.bin/truss/syscalls.c projects/power8_bringup_hacks/usr.sbin/Makefile projects/power8_bringup_hacks/usr.sbin/acpi/acpidb/Makefile projects/power8_bringup_hacks/usr.sbin/amd/amd/Makefile projects/power8_bringup_hacks/usr.sbin/bsdinstall/bsdinstall.8 projects/power8_bringup_hacks/usr.sbin/bsdinstall/scripts/config projects/power8_bringup_hacks/usr.sbin/bsdinstall/scripts/hardening projects/power8_bringup_hacks/usr.sbin/bsdinstall/scripts/mirrorselect projects/power8_bringup_hacks/usr.sbin/chown/chown.c projects/power8_bringup_hacks/usr.sbin/cxgbetool/cxgbetool.8 projects/power8_bringup_hacks/usr.sbin/cxgbetool/cxgbetool.c projects/power8_bringup_hacks/usr.sbin/kldxref/kldxref.c projects/power8_bringup_hacks/usr.sbin/lpr/lpd/Makefile projects/power8_bringup_hacks/usr.sbin/nscd/nscd.8 projects/power8_bringup_hacks/usr.sbin/nscd/nscd.conf.5 projects/power8_bringup_hacks/usr.sbin/ntp/libntpevent/Makefile projects/power8_bringup_hacks/usr.sbin/pmc/Makefile projects/power8_bringup_hacks/usr.sbin/pmccontrol/pmccontrol.c projects/power8_bringup_hacks/usr.sbin/ppp/chap_ms.c projects/power8_bringup_hacks/usr.sbin/uefisign/uefisign.c projects/power8_bringup_hacks/usr.sbin/unbound/Makefile.inc Directory Properties: projects/power8_bringup_hacks/ (props changed) projects/power8_bringup_hacks/contrib/blacklist/ (props changed) projects/power8_bringup_hacks/contrib/bmake/ (props changed) projects/power8_bringup_hacks/contrib/dma/ (props changed) projects/power8_bringup_hacks/contrib/elftoolchain/ (props changed) projects/power8_bringup_hacks/contrib/ldns/ (props changed) projects/power8_bringup_hacks/contrib/libarchive/ (props changed) projects/power8_bringup_hacks/contrib/llvm/ (props changed) projects/power8_bringup_hacks/contrib/llvm/tools/clang/ (props changed) projects/power8_bringup_hacks/contrib/llvm/tools/lld/ (props changed) projects/power8_bringup_hacks/contrib/openbsm/ (props changed) projects/power8_bringup_hacks/contrib/sendmail/ (props changed) projects/power8_bringup_hacks/contrib/serf/ (props changed) projects/power8_bringup_hacks/contrib/unbound/ (props changed) projects/power8_bringup_hacks/crypto/heimdal/ (props changed) projects/power8_bringup_hacks/crypto/openssh/ (props changed) projects/power8_bringup_hacks/crypto/openssl/ (props changed) projects/power8_bringup_hacks/gnu/usr.bin/binutils/ (props changed) projects/power8_bringup_hacks/gnu/usr.bin/gdb/ (props changed) projects/power8_bringup_hacks/sys/cddl/contrib/opensolaris/ (props changed) projects/power8_bringup_hacks/sys/contrib/dev/acpica/ (props changed) Modified: projects/power8_bringup_hacks/Makefile ============================================================================== --- projects/power8_bringup_hacks/Makefile Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/Makefile Thu Oct 11 19:06:54 2018 (r339314) @@ -488,7 +488,8 @@ TARGET_ARCHES_arm?= arm armv6 armv7 TARGET_ARCHES_arm64?= aarch64 TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 mipselhf mipshf mips64elhf mips64hf TARGET_ARCHES_powerpc?= powerpc powerpc64 powerpcspe -TARGET_ARCHES_riscv?= riscv64 riscv64sf +# riscv64sf excluded due to PR 232085 +TARGET_ARCHES_riscv?= riscv64 .for target in ${TARGETS} TARGET_ARCHES_${target}?= ${target} .endfor Modified: projects/power8_bringup_hacks/Makefile.inc1 ============================================================================== --- projects/power8_bringup_hacks/Makefile.inc1 Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/Makefile.inc1 Thu Oct 11 19:06:54 2018 (r339314) @@ -939,6 +939,13 @@ _cleanobj_fast_depend_hack: .PHONY ${LIBCOMPAT:D${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.*}; \ fi .endfor +# 20181009 track migration from ntp's embedded libevent to updated one + @if [ -e "${OBJTOP}/usr.sbin/ntp/libntpevent/.depend.bufferevent_openssl.o" ] && \ + egrep -q 'contrib/ntp/sntp/libevent/bufferevent_openssl.c' \ + ${OBJTOP}/usr.sbin/ntp/libntpevent/.depend.bufferevent_openssl.o ; then \ + echo "Removing stale libevent dependencies"; \ + rm -f ${OBJTOP}/usr.sbin/ntp/libntpevent/.depend.*; \ + fi _worldtmp: .PHONY @echo Modified: projects/power8_bringup_hacks/ObsoleteFiles.inc ============================================================================== --- projects/power8_bringup_hacks/ObsoleteFiles.inc Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/ObsoleteFiles.inc Thu Oct 11 19:06:54 2018 (r339314) @@ -38,6 +38,229 @@ # xargs -n1 | sort | uniq -d; # done +# 20181009: OpenSSL 1.1.1 +OLD_FILES+=usr/include/openssl/des_old.h +OLD_FILES+=usr/include/openssl/dso.h +OLD_FILES+=usr/include/openssl/krb5_asn.h +OLD_FILES+=usr/include/openssl/kssl.h +OLD_FILES+=usr/include/openssl/pqueue.h +OLD_FILES+=usr/include/openssl/ssl23.h +OLD_FILES+=usr/include/openssl/ui_compat.h +OLD_FILES+=usr/share/openssl/man/man1/dss1.1.gz +OLD_FILES+=usr/share/openssl/man/man1/md2.1.gz +OLD_FILES+=usr/share/openssl/man/man1/md4.1.gz +OLD_FILES+=usr/share/openssl/man/man1/md5.1.gz +OLD_FILES+=usr/share/openssl/man/man1/mdc2.1.gz +OLD_FILES+=usr/share/openssl/man/man1/ripemd160.1.gz +OLD_FILES+=usr/share/openssl/man/man1/sha.1.gz +OLD_FILES+=usr/share/openssl/man/man1/sha1.1.gz +OLD_FILES+=usr/share/openssl/man/man1/sha224.1.gz +OLD_FILES+=usr/share/openssl/man/man1/sha256.1.gz +OLD_FILES+=usr/share/openssl/man/man1/sha384.1.gz +OLD_FILES+=usr/share/openssl/man/man1/sha512.1.gz +OLD_FILES+=usr/share/openssl/man/man1/x509v3_config.1.gz +OLD_FILES+=usr/share/openssl/man/man3/ASN1_STRING_length_set.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BIO_get_conn_int_port.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BIO_get_conn_ip.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BIO_set.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BIO_set_conn_int_port.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BIO_set_conn_ip.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BN_BLINDING_get_thread_id.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BN_BLINDING_set_thread_id.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BN_BLINDING_thread_id.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BN_CTX_init.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BN_MONT_CTX_init.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BN_RECP_CTX_init.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BN_init.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BUF_memdup.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BUF_memdup.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BUF_strdup.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BUF_strlcat.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BUF_strlcpy.3.gz +OLD_FILES+=usr/share/openssl/man/man3/BUF_strndup.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CMS_set1_signer_cert.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_cmp.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_cpy.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_current.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_get_callback.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_hash.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_set_callback.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_destroy_dynlockid.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_get_new_dynlockid.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_lock.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_num_locks.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_dynlock_create_callback.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_dynlock_destroy_callback.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_dynlock_lock_callback.3.gz +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_locking_callback.3.gz +OLD_FILES+=usr/share/openssl/man/man3/DES_ede3_cbcm_encrypt.3.gz +OLD_FILES+=usr/share/openssl/man/man3/DES_enc_read.3.gz +OLD_FILES+=usr/share/openssl/man/man3/DES_enc_write.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EC_KEY_get_key_method_data.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EC_KEY_insert_key_method_data.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EC_POINT_set_Jprojective_coordinates.3.gz +OLD_FILES+=usr/share/openssl/man/man3/ERR_load_UI_strings.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_CIPHER_CTX_cleanup.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_CIPHER_CTX_init.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_MAX_MD_SIZE.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_MD_CTX_cleanup.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_MD_CTX_create.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_MD_CTX_destroy.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_MD_CTX_init.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEVP_PKEY_CTX_set_app_data.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_CTX_set_rsa_rsa_keygen_bits.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_get_default_digest.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_dss.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_dss1.3.gz +OLD_FILES+=usr/share/openssl/man/man3/EVP_sha.3.gz +OLD_FILES+=usr/share/openssl/man/man3/HMAC_CTX_cleanup.3.gz +OLD_FILES+=usr/share/openssl/man/man3/HMAC_CTX_init.3.gz +OLD_FILES+=usr/share/openssl/man/man3/HMAC_cleanup.3.gz +OLD_FILES+=usr/share/openssl/man/man3/OPENSSL_ia32cap_loc.3.gz +OLD_FILES+=usr/share/openssl/man/man3/PEM.3.gz +OLD_FILES+=usr/share/openssl/man/man3/RAND_SSLeay.3.gz +OLD_FILES+=usr/share/openssl/man/man3/RSA_PKCS1_SSLeay.3.gz +OLD_FILES+=usr/share/openssl/man/man3/RSA_null_method.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_get_ex_new_index.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_need_tmp_rsa.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_set_custom_cli_ext.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_set_default_read_ahead.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_set_ecdh_auto.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_set_tmp_rsa.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_set_tmp_rsa_callback.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_SESSION_get_ex_new_index.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_add_session.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_flush_sessions.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_get_accept_state.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_get_ex_new_index.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_get_msg_callback_arg.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_need_tmp_rsa.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_remove_session.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_set_ecdh_auto.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_set_tmp_rsa.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSL_set_tmp_rsa_callback.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSLeay.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSLeay_add_ssl_algorithms.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSLeay_version.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSLv2_client_method.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSLv2_method.3.gz +OLD_FILES+=usr/share/openssl/man/man3/SSLv2_server_method.3.gz +OLD_FILES+=usr/share/openssl/man/man3/X509_STORE_CTX_set_chain.3.gz +OLD_FILES+=usr/share/openssl/man/man3/X509_STORE_CTX_trusted_stack.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bio.3.gz +OLD_FILES+=usr/share/openssl/man/man3/blowfish.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_add_words.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_check_top.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_cmp_words.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_div_words.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_dump.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_expand.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_expand2.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_fix_top.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_internal.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_add_words.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_comba4.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_comba8.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_high.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_low_normal.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_low_recursive.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_normal.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_part_recursive.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_recursive.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_mul_words.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_print.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_set_high.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_set_low.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_set_max.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_comba4.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_comba8.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_normal.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_recursive.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_words.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_sub_words.3.gz +OLD_FILES+=usr/share/openssl/man/man3/bn_wexpand.3.gz +OLD_FILES+=usr/share/openssl/man/man3/buffer.3.gz +OLD_FILES+=usr/share/openssl/man/man3/crypto.3.gz +OLD_FILES+=usr/share/openssl/man/man3/d2i_ECPKParameters_bio.3.gz +OLD_FILES+=usr/share/openssl/man/man3/d2i_ECPKParameters_fp.3.gz +OLD_FILES+=usr/share/openssl/man/man3/d2i_ECPrivate_key.3.gz +OLD_FILES+=usr/share/openssl/man/man3/d2i_Netscape_RSA.3.gz +OLD_FILES+=usr/share/openssl/man/man3/d2i_PKCS8PrivateKey.3.gz +OLD_FILES+=usr/share/openssl/man/man3/d2i_Private_key.3.gz +OLD_FILES+=usr/share/openssl/man/man3/d2i_X509_bio.3.gz +OLD_FILES+=usr/share/openssl/man/man3/d2i_X509_fp.3.gz +OLD_FILES+=usr/share/openssl/man/man3/des.3.gz +OLD_FILES+=usr/share/openssl/man/man3/des_read_2passwords.3.gz +OLD_FILES+=usr/share/openssl/man/man3/des_read_password.3.gz +OLD_FILES+=usr/share/openssl/man/man3/des_read_pw.3.gz +OLD_FILES+=usr/share/openssl/man/man3/des_read_pw_string.3.gz +OLD_FILES+=usr/share/openssl/man/man3/dh.3.gz +OLD_FILES+=usr/share/openssl/man/man3/dsa.3.gz +OLD_FILES+=usr/share/openssl/man/man3/ec.3.gz +OLD_FILES+=usr/share/openssl/man/man3/ecdsa.3.gz +OLD_FILES+=usr/share/openssl/man/man3/engine.3.gz +OLD_FILES+=usr/share/openssl/man/man3/err.3.gz +OLD_FILES+=usr/share/openssl/man/man3/evp.3.gz +OLD_FILES+=usr/share/openssl/man/man3/hmac.3.gz +OLD_FILES+=usr/share/openssl/man/man3/i2d_ECPKParameters_bio.3.gz +OLD_FILES+=usr/share/openssl/man/man3/i2d_ECPKParameters_fp.3.gz +OLD_FILES+=usr/share/openssl/man/man3/i2d_Netscape_RSA.3.gz +OLD_FILES+=usr/share/openssl/man/man3/i2d_X509_bio.3.gz +OLD_FILES+=usr/share/openssl/man/man3/i2d_X509_fp.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_delete.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_doall.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_doall_arg.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_error.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_free.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_insert.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_new.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_node_stats.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_node_stats_bio.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_node_usage_stats.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_node_usage_stats_bio.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_retrieve.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_stats.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lh_stats_bio.3.gz +OLD_FILES+=usr/share/openssl/man/man3/lhash.3.gz +OLD_FILES+=usr/share/openssl/man/man3/md5.3.gz +OLD_FILES+=usr/share/openssl/man/man3/mdc2.3.gz +OLD_FILES+=usr/share/openssl/man/man3/pem.3.gz +OLD_FILES+=usr/share/openssl/man/man3/rand.3.gz +OLD_FILES+=usr/share/openssl/man/man3/rc4.3.gz +OLD_FILES+=usr/share/openssl/man/man3/ripemd.3.gz +OLD_FILES+=usr/share/openssl/man/man3/rsa.3.gz +OLD_FILES+=usr/share/openssl/man/man3/sha.3.gz +OLD_FILES+=usr/share/openssl/man/man3/ssl.3.gz +OLD_FILES+=usr/share/openssl/man/man3/threads.3.gz +OLD_FILES+=usr/share/openssl/man/man3/ui.3.gz +OLD_FILES+=usr/share/openssl/man/man3/ui_compat.3.gz +OLD_FILES+=usr/share/openssl/man/man3/x509.3.gz +OLD_LIBS+=lib/libcrypto.so.8 +OLD_LIBS+=usr/lib/engines/lib4758cca.so +OLD_LIBS+=usr/lib/engines/libaep.so +OLD_LIBS+=usr/lib/engines/libatalla.so +OLD_LIBS+=usr/lib/engines/libcapi.so +OLD_LIBS+=usr/lib/engines/libchil.so +OLD_LIBS+=usr/lib/engines/libcswift.so +OLD_LIBS+=usr/lib/engines/libgost.so +OLD_LIBS+=usr/lib/engines/libnuron.so +OLD_LIBS+=usr/lib/engines/libsureware.so +OLD_LIBS+=usr/lib/engines/libubsec.so +OLD_LIBS+=usr/lib/libssl.so.8 +OLD_LIBS+=usr/lib32/libcrypto.so.8 +OLD_LIBS+=usr/lib32/lib4758cca.so +OLD_LIBS+=usr/lib32/libaep.so +OLD_LIBS+=usr/lib32/libatalla.so +OLD_LIBS+=usr/lib32/libcapi.so +OLD_LIBS+=usr/lib32/libchil.so +OLD_LIBS+=usr/lib32/libcswift.so +OLD_LIBS+=usr/lib32/libgost.so +OLD_LIBS+=usr/lib32/libnuron.so +OLD_LIBS+=usr/lib32/libsureware.so +OLD_LIBS+=usr/lib32/libubsec.so +OLD_LIBS+=usr/lib32/libssl.so.8 # 20180824: libbe(3) SHLIBDIR fixed to reflect correct location OLD_LIBS+=usr/lib/libbe.so.1 # 20180819: Remove deprecated arc4random(3) stir/addrandom interfaces @@ -4633,9 +4856,7 @@ OLD_FILES+=usr/include/openssl/bio_lcl.h OLD_FILES+=usr/include/openssl/e_os.h OLD_FILES+=usr/include/openssl/fips.h OLD_FILES+=usr/include/openssl/fips_rand.h -OLD_FILES+=usr/include/openssl/md2.h OLD_FILES+=usr/include/openssl/pq_compat.h -OLD_FILES+=usr/include/openssl/store.h OLD_FILES+=usr/include/openssl/tmdiff.h OLD_FILES+=usr/include/openssl/ui_locl.h OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_id_callback.3.gz Modified: projects/power8_bringup_hacks/UPDATING ============================================================================== --- projects/power8_bringup_hacks/UPDATING Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/UPDATING Thu Oct 11 19:06:54 2018 (r339314) @@ -31,6 +31,34 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 12.x IS SLOW: disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20181009: + OpenSSL has been updated to version 1.1.1. This update included + additional various API changes througout the base system. It is + important to rebuild third-party software after upgrading. The value + of __FreeBSD_version has been bumped accordingly. + +20181006: + The legacy DRM modules and drivers have now been added to the loader's + module blacklist, in favor of loading them with kld_list in rc.conf(5). + The module blacklist may be overridden with the loader.conf(5) + 'module_blacklist' variable, but loading them via rc.conf(5) is strongly + encouraged. + +20181002: + The cam(4) based nda(4) driver will be used over nvd(4) by default on + powerpc64. You may set 'options NVME_USE_NVD=1' in your kernel conf or + loader tunable 'hw.nvme.use_nvd=1' if you wish to use the existing + driver. Make sure to edit /boot/etc/kboot.conf and fstab to use the + nda device name. + +20180913: + Reproducible build mode is now on by default, in preparation for + FreeBSD 12.0. This eliminates build metadata such as the user, + host, and time from the kernel (and uname), unless the working tree + corresponds to a modified checkout from a version control system. + The previous behavior can be obtained by setting the /etc/src.conf + knob WITHOUT_REPRODUCIBLE_BUILD. + 20180826: The Yarrow CSPRNG has been removed from the kernel as it has not been supported by its designers since at least 2003. Fortuna has been the @@ -170,6 +198,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 12.x IS SLOW: need to be rebuilt. r335018 did a __FreeBSD_version bump for this. 20180530: + As of r334391 lld is the default amd64 system linker; it is installed + as /usr/bin/ld. Kernel build workarounds (see 20180510 entry) are no + longer necessary. + +20180530: The kernel / userland interface for devinfo changed, so you'll need a new kernel and userland as a pair for it to work (rebuilding lib/libdevinfo is all that's required). devinfo and devmatch will @@ -195,6 +228,9 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 12.x IS SLOW: way requires LD=ld.lld on the command line (or LD=/usr/local/bin/ld for binutils port/package). lld will soon be default, and this requirement will go away. + + NOTE: As of r334391 lld is the default system linker on amd64, and no + workaround is necessary. 20180508: The nxge(4) driver has been removed. This driver was for PCI-X 10g Modified: projects/power8_bringup_hacks/contrib/blacklist/bin/blacklistd.8 ============================================================================== --- projects/power8_bringup_hacks/contrib/blacklist/bin/blacklistd.8 Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/blacklist/bin/blacklistd.8 Thu Oct 11 19:06:54 2018 (r339314) @@ -27,7 +27,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd June 7, 2016 +.Dd October 5, 2018 .Dt BLACKLISTD 8 .Os .Sh NAME @@ -178,7 +178,7 @@ Specify the default rule name for the packet filter ru .It Fl r Re-read the firewall rules from the internal database, then remove and re-add them. -This helps for packet filters that don't retain state across reboots. +This helps for packet filters that do not retain state across reboots. .It Fl s Ar sockpath Add .Ar sockpath @@ -197,6 +197,27 @@ diagnostic messages to .Dv stdout instead of .Xr syslogd 8 . +.El +.Sh SIGNAL HANDLING +.Nm +deals with the following signals: +.Bl -tag -width "USR2" +.It HUP +Receipt of this signal causes +.Nm +to re-read the configuration file. +.It INT, TERM & QUIT +These signals tell +.Nm +to exit in an orderly fashion. +.It USR1 +This signal tells +.Nm +to increase the internal debugging level by 1. +.It USR2 +This signal tells +.Nm +to decrease the internal debugging level by 1. .El .Sh FILES .Bl -tag -width /usr/libexec/blacklistd-helper -compact Modified: projects/power8_bringup_hacks/contrib/bmake/make.1 ============================================================================== --- projects/power8_bringup_hacks/contrib/bmake/make.1 Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/bmake/make.1 Thu Oct 11 19:06:54 2018 (r339314) @@ -29,7 +29,7 @@ .\" .\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 .\" -.Dd June 22, 2017 +.Dd September 27, 2018 .Dt MAKE 1 .Os .Sh NAME @@ -796,7 +796,7 @@ Tells whether to pass the descriptors of the job token queue even if the target is not tagged with .Ic .MAKE -The default is +The default is .Ql Pa yes for backwards compatability with .Fx 9.0 @@ -2385,7 +2385,8 @@ Basic use of suffix rules (for files only in the curre not trying to chain transformations together, etc.) is also reasonably portable. .Sh SEE ALSO -.Xr mkdep 1 +.Xr mkdep 1 , +.Xr style.Makefile 5 .Sh HISTORY A .Nm Modified: projects/power8_bringup_hacks/contrib/bsnmp/lib/snmpcrypto.c ============================================================================== --- projects/power8_bringup_hacks/contrib/bsnmp/lib/snmpcrypto.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/bsnmp/lib/snmpcrypto.c Thu Oct 11 19:06:54 2018 (r339314) @@ -94,9 +94,14 @@ snmp_pdu_calc_digest(const struct snmp_pdu *pdu, uint8 uint32_t i, keylen, olen; int32_t err; const EVP_MD *dtype; - EVP_MD_CTX ctx; + EVP_MD_CTX *ctx; - err = snmp_digest_init(&pdu->user, &ctx, &dtype, &keylen); + ctx = EVP_MD_CTX_new(); + if (ctx == NULL) + return (SNMP_CODE_FAILED); + err = snmp_digest_init(&pdu->user, ctx, &dtype, &keylen); + if (err <= 0) + EVP_MD_CTX_free(ctx); if (err < 0) return (SNMP_CODE_BADDIGEST); else if (err == 0) @@ -111,29 +116,29 @@ snmp_pdu_calc_digest(const struct snmp_pdu *pdu, uint8 key2[i] = extkey[i] ^ opad; } - if (EVP_DigestUpdate(&ctx, key1, SNMP_EXTENDED_KEY_SIZ) != 1 || - EVP_DigestUpdate(&ctx, pdu->outer_ptr, pdu->outer_len) != 1 || - EVP_DigestFinal(&ctx, md, &olen) != 1) + if (EVP_DigestUpdate(ctx, key1, SNMP_EXTENDED_KEY_SIZ) != 1 || + EVP_DigestUpdate(ctx, pdu->outer_ptr, pdu->outer_len) != 1 || + EVP_DigestFinal(ctx, md, &olen) != 1) goto failed; - if (EVP_DigestInit(&ctx, dtype) != 1 || - EVP_DigestUpdate(&ctx, key2, SNMP_EXTENDED_KEY_SIZ) != 1 || - EVP_DigestUpdate(&ctx, md, olen) != 1 || - EVP_DigestFinal(&ctx, md, &olen) != 1) + if (EVP_DigestInit(ctx, dtype) != 1 || + EVP_DigestUpdate(ctx, key2, SNMP_EXTENDED_KEY_SIZ) != 1 || + EVP_DigestUpdate(ctx, md, olen) != 1 || + EVP_DigestFinal(ctx, md, &olen) != 1) goto failed; if (olen < SNMP_USM_AUTH_SIZE) { snmp_error("bad digest size - %d", olen); - EVP_MD_CTX_cleanup(&ctx); + EVP_MD_CTX_free(ctx); return (SNMP_CODE_BADDIGEST); } memcpy(digest, md, SNMP_USM_AUTH_SIZE); - EVP_MD_CTX_cleanup(&ctx); + EVP_MD_CTX_free(ctx); return (SNMP_CODE_OK); failed: - EVP_MD_CTX_cleanup(&ctx); + EVP_MD_CTX_free(ctx); return (SNMP_CODE_BADDIGEST); } @@ -176,7 +181,7 @@ snmp_pdu_encrypt(const struct snmp_pdu *pdu) int32_t err, olen; uint8_t iv[SNMP_PRIV_AES_IV_SIZ]; const EVP_CIPHER *ctype; - EVP_CIPHER_CTX ctx; + EVP_CIPHER_CTX *ctx; err = snmp_pdu_cipher_init(pdu, pdu->scoped_len, &ctype, iv); if (err < 0) @@ -184,18 +189,23 @@ snmp_pdu_encrypt(const struct snmp_pdu *pdu) else if (err == 0) return (SNMP_CODE_OK); - if (EVP_EncryptInit(&ctx, ctype, pdu->user.priv_key, iv) != 1) + ctx = EVP_CIPHER_CTX_new(); + if (ctx == NULL) return (SNMP_CODE_FAILED); + if (EVP_EncryptInit(ctx, ctype, pdu->user.priv_key, iv) != 1) + goto failed; - if (EVP_EncryptUpdate(&ctx, pdu->scoped_ptr, &olen, pdu->scoped_ptr, + if (EVP_EncryptUpdate(ctx, pdu->scoped_ptr, &olen, pdu->scoped_ptr, pdu->scoped_len) != 1 || - EVP_EncryptFinal(&ctx, pdu->scoped_ptr + olen, &olen) != 1) { - EVP_CIPHER_CTX_cleanup(&ctx); - return (SNMP_CODE_FAILED); - } + EVP_EncryptFinal(ctx, pdu->scoped_ptr + olen, &olen) != 1) + goto failed; - EVP_CIPHER_CTX_cleanup(&ctx); + EVP_CIPHER_CTX_free(ctx); return (SNMP_CODE_OK); + +failed: + EVP_CIPHER_CTX_free(ctx); + return (SNMP_CODE_FAILED); } enum snmp_code @@ -204,7 +214,7 @@ snmp_pdu_decrypt(const struct snmp_pdu *pdu) int32_t err, olen; uint8_t iv[SNMP_PRIV_AES_IV_SIZ]; const EVP_CIPHER *ctype; - EVP_CIPHER_CTX ctx; + EVP_CIPHER_CTX *ctx; err = snmp_pdu_cipher_init(pdu, pdu->scoped_len, &ctype, iv); if (err < 0) @@ -212,19 +222,24 @@ snmp_pdu_decrypt(const struct snmp_pdu *pdu) else if (err == 0) return (SNMP_CODE_OK); - if (EVP_DecryptInit(&ctx, ctype, pdu->user.priv_key, iv) != 1 || - EVP_CIPHER_CTX_set_padding(&ctx, 0) != 1) - return (SNMP_CODE_EDECRYPT); + ctx = EVP_CIPHER_CTX_new(); + if (ctx == NULL) + return (SNMP_CODE_FAILED); + if (EVP_DecryptInit(ctx, ctype, pdu->user.priv_key, iv) != 1 || + EVP_CIPHER_CTX_set_padding(ctx, 0) != 1) + goto failed; - if (EVP_DecryptUpdate(&ctx, pdu->scoped_ptr, &olen, pdu->scoped_ptr, + if (EVP_DecryptUpdate(ctx, pdu->scoped_ptr, &olen, pdu->scoped_ptr, pdu->scoped_len) != 1 || - EVP_DecryptFinal(&ctx, pdu->scoped_ptr + olen, &olen) != 1) { - EVP_CIPHER_CTX_cleanup(&ctx); - return (SNMP_CODE_EDECRYPT); - } + EVP_DecryptFinal(ctx, pdu->scoped_ptr + olen, &olen) != 1) + goto failed; - EVP_CIPHER_CTX_cleanup(&ctx); + EVP_CIPHER_CTX_free(ctx); return (SNMP_CODE_OK); + +failed: + EVP_CIPHER_CTX_free(ctx); + return (SNMP_CODE_EDECRYPT); } /* [RFC 3414] - A.2. Password to Key Algorithm */ @@ -234,13 +249,19 @@ snmp_passwd_to_keys(struct snmp_user *user, char *pass int err, loop, i, pwdlen; uint32_t keylen, olen; const EVP_MD *dtype; - EVP_MD_CTX ctx; + EVP_MD_CTX *ctx; uint8_t authbuf[SNMP_AUTH_BUF_SIZE]; if (passwd == NULL || user == NULL) return (SNMP_CODE_FAILED); - err = snmp_digest_init(user, &ctx, &dtype, &keylen); + ctx = EVP_MD_CTX_new(); + if (ctx == NULL) + return (SNMP_CODE_FAILED); + + err = snmp_digest_init(user, ctx, &dtype, &keylen); + if (err <= 0) + EVP_MD_CTX_free(ctx); if (err < 0) return (SNMP_CODE_BADDIGEST); else if (err == 0) @@ -252,18 +273,18 @@ snmp_passwd_to_keys(struct snmp_user *user, char *pass for (loop = 0; loop < SNMP_AUTH_KEY_LOOPCNT; loop += i) { for (i = 0; i < SNMP_EXTENDED_KEY_SIZ; i++) authbuf[i] = passwd[(loop + i) % pwdlen]; - if (EVP_DigestUpdate(&ctx, authbuf, SNMP_EXTENDED_KEY_SIZ) != 1) + if (EVP_DigestUpdate(ctx, authbuf, SNMP_EXTENDED_KEY_SIZ) != 1) goto failed; } - if (EVP_DigestFinal(&ctx, user->auth_key, &olen) != 1) + if (EVP_DigestFinal(ctx, user->auth_key, &olen) != 1) goto failed; - EVP_MD_CTX_cleanup(&ctx); + EVP_MD_CTX_free(ctx); return (SNMP_CODE_OK); failed: - EVP_MD_CTX_cleanup(&ctx); + EVP_MD_CTX_free(ctx); return (SNMP_CODE_BADDIGEST); } @@ -274,16 +295,22 @@ snmp_get_local_keys(struct snmp_user *user, uint8_t *e int err; uint32_t keylen, olen; const EVP_MD *dtype; - EVP_MD_CTX ctx; + EVP_MD_CTX *ctx; uint8_t authbuf[SNMP_AUTH_BUF_SIZE]; if (user == NULL || eid == NULL || elen > SNMP_ENGINE_ID_SIZ) return (SNMP_CODE_FAILED); + ctx = EVP_MD_CTX_new(); + if (ctx == NULL) + return (SNMP_CODE_FAILED); + memset(user->priv_key, 0, sizeof(user->priv_key)); memset(authbuf, 0, sizeof(authbuf)); - err = snmp_digest_init(user, &ctx, &dtype, &keylen); + err = snmp_digest_init(user, ctx, &dtype, &keylen); + if (err <= 0) + EVP_MD_CTX_free(ctx); if (err < 0) return (SNMP_CODE_BADDIGEST); else if (err == 0) @@ -293,12 +320,12 @@ snmp_get_local_keys(struct snmp_user *user, uint8_t *e memcpy(authbuf + keylen, eid, elen); memcpy(authbuf + keylen + elen, user->auth_key, keylen); - if (EVP_DigestUpdate(&ctx, authbuf, 2 * keylen + elen) != 1 || - EVP_DigestFinal(&ctx, user->auth_key, &olen) != 1) { - EVP_MD_CTX_cleanup(&ctx); + if (EVP_DigestUpdate(ctx, authbuf, 2 * keylen + elen) != 1 || + EVP_DigestFinal(ctx, user->auth_key, &olen) != 1) { + EVP_MD_CTX_free(ctx); return (SNMP_CODE_BADDIGEST); } - EVP_MD_CTX_cleanup(&ctx); + EVP_MD_CTX_free(ctx); if (user->priv_proto != SNMP_PRIV_NOPRIV) memcpy(user->priv_key, user->auth_key, sizeof(user->priv_key)); @@ -312,9 +339,15 @@ snmp_calc_keychange(struct snmp_user *user, uint8_t *k int32_t err, rvalue[SNMP_AUTH_HMACSHA_KEY_SIZ / 4]; uint32_t i, keylen, olen; const EVP_MD *dtype; - EVP_MD_CTX ctx; + EVP_MD_CTX *ctx; - err = snmp_digest_init(user, &ctx, &dtype, &keylen); + ctx = EVP_MD_CTX_new(); + if (ctx == NULL) + return (SNMP_CODE_FAILED); + + err = snmp_digest_init(user, ctx, &dtype, &keylen); + if (err <= 0) + EVP_MD_CTX_free(ctx); if (err < 0) return (SNMP_CODE_BADDIGEST); else if (err == 0) @@ -326,13 +359,13 @@ snmp_calc_keychange(struct snmp_user *user, uint8_t *k memcpy(keychange, user->auth_key, keylen); memcpy(keychange + keylen, rvalue, keylen); - if (EVP_DigestUpdate(&ctx, keychange, 2 * keylen) != 1 || - EVP_DigestFinal(&ctx, keychange, &olen) != 1) { - EVP_MD_CTX_cleanup(&ctx); + if (EVP_DigestUpdate(ctx, keychange, 2 * keylen) != 1 || + EVP_DigestFinal(ctx, keychange, &olen) != 1) { + EVP_MD_CTX_free(ctx); return (SNMP_CODE_BADDIGEST); } - EVP_MD_CTX_cleanup(&ctx); + EVP_MD_CTX_free(ctx); return (SNMP_CODE_OK); } Modified: projects/power8_bringup_hacks/contrib/dma/crypto.c ============================================================================== --- projects/power8_bringup_hacks/contrib/dma/crypto.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/dma/crypto.c Thu Oct 11 19:06:54 2018 (r339314) @@ -40,6 +40,7 @@ #include #include +#include #include #include "dma.h" @@ -93,7 +94,12 @@ smtp_init_crypto(int fd, int feature) SSL_library_init(); SSL_load_error_strings(); - meth = TLSv1_client_method(); + // Allow any possible version +#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) + meth = TLS_client_method(); +#else + meth = SSLv23_client_method(); +#endif ctx = SSL_CTX_new(meth); if (ctx == NULL) { Modified: projects/power8_bringup_hacks/contrib/dma/dma-mbox-create.c ============================================================================== --- projects/power8_bringup_hacks/contrib/dma/dma-mbox-create.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/dma/dma-mbox-create.c Thu Oct 11 19:06:54 2018 (r339314) @@ -56,6 +56,7 @@ #include #include #include +#include #include #include Modified: projects/power8_bringup_hacks/contrib/dma/local.c ============================================================================== --- projects/power8_bringup_hacks/contrib/dma/local.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/dma/local.c Thu Oct 11 19:06:54 2018 (r339314) @@ -44,6 +44,7 @@ #include #include #include +#include #include #include Modified: projects/power8_bringup_hacks/contrib/dma/mail.c ============================================================================== --- projects/power8_bringup_hacks/contrib/dma/mail.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/dma/mail.c Thu Oct 11 19:06:54 2018 (r339314) @@ -36,6 +36,7 @@ #include #include #include +#include #include #include Modified: projects/power8_bringup_hacks/contrib/dma/net.c ============================================================================== --- projects/power8_bringup_hacks/contrib/dma/net.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/dma/net.c Thu Oct 11 19:06:54 2018 (r339314) @@ -53,6 +53,7 @@ #include #include #include +#include #include #include Modified: projects/power8_bringup_hacks/contrib/dma/spool.c ============================================================================== --- projects/power8_bringup_hacks/contrib/dma/spool.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/dma/spool.c Thu Oct 11 19:06:54 2018 (r339314) @@ -45,6 +45,7 @@ #include #include #include +#include #include #include "dma.h" Modified: projects/power8_bringup_hacks/contrib/dma/util.c ============================================================================== --- projects/power8_bringup_hacks/contrib/dma/util.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/dma/util.c Thu Oct 11 19:06:54 2018 (r339314) @@ -44,6 +44,7 @@ #include #include #include +#include #include #include Modified: projects/power8_bringup_hacks/contrib/elftoolchain/libelf/gelf_mips64el.c ============================================================================== --- projects/power8_bringup_hacks/contrib/elftoolchain/libelf/gelf_mips64el.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/elftoolchain/libelf/gelf_mips64el.c Thu Oct 11 19:06:54 2018 (r339314) @@ -34,8 +34,9 @@ int _libelf_is_mips64el(Elf *e) { - return (e->e_kind == ELF_K_ELF && e->e_byteorder == ELFDATA2LSB && - e->e_u.e_elf.e_ehdr.e_ehdr64->e_machine == EM_MIPS); + return (e->e_kind == ELF_K_ELF && + e->e_u.e_elf.e_ehdr.e_ehdr64->e_machine == EM_MIPS && + e->e_u.e_elf.e_ehdr.e_ehdr64->e_ident[EI_DATA] == ELFDATA2LSB); } /* Modified: projects/power8_bringup_hacks/contrib/ldns/freebsd-configure.sh ============================================================================== --- projects/power8_bringup_hacks/contrib/ldns/freebsd-configure.sh Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/ldns/freebsd-configure.sh Thu Oct 11 19:06:54 2018 (r339314) @@ -5,15 +5,26 @@ set -e +error() { + echo "$@" >&2 + exit 1 +} + ldns=$(dirname $(realpath $0)) cd $ldns -libtoolize --copy -autoheader -autoconf -./configure --prefix= --exec-prefix=/usr --disable-dane-ta-usage +# Run autotools before we drop LOCALBASE out of PATH +(cd $ldns && libtoolize --copy && autoheader && autoconf) +(cd $ldns/drill && aclocal && autoheader && autoconf) +# Ensure we use the correct toolchain and clean our environment +export CC=$(echo ".include " | make -f /dev/stdin -VCC) +export CPP=$(echo ".include " | make -f /dev/stdin -VCPP) +unset CFLAGS CPPFLAGS LDFLAGS LD_LIBRARY_PATH LIBS +export PATH=/bin:/sbin:/usr/bin:/usr/sbin + +cd $ldns +./configure --prefix= --exec-prefix=/usr + cd $ldns/drill -autoheader -autoconf ./configure --prefix= --exec-prefix=/usr Modified: projects/power8_bringup_hacks/contrib/ldns/ldns/config.h ============================================================================== --- projects/power8_bringup_hacks/contrib/ldns/ldns/config.h Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/ldns/ldns/config.h Thu Oct 11 19:06:54 2018 (r339314) @@ -60,19 +60,19 @@ #define HAVE_DLFCN_H 1 /* Define to 1 if you have the `DSA_get0_key' function. */ -/* #undef HAVE_DSA_GET0_KEY */ +#define HAVE_DSA_GET0_KEY 1 /* Define to 1 if you have the `DSA_get0_pqg' function. */ -/* #undef HAVE_DSA_GET0_PQG */ +#define HAVE_DSA_GET0_PQG 1 /* Define to 1 if you have the `DSA_SIG_get0' function. */ -/* #undef HAVE_DSA_SIG_GET0 */ +#define HAVE_DSA_SIG_GET0 1 /* Define to 1 if you have the `DSA_SIG_set0' function. */ -/* #undef HAVE_DSA_SIG_SET0 */ +#define HAVE_DSA_SIG_SET0 1 /* Define to 1 if you have the `ECDSA_SIG_get0' function. */ -/* #undef HAVE_ECDSA_SIG_GET0 */ +#define HAVE_ECDSA_SIG_GET0 1 /* Define to 1 if you have the `endprotoent' function. */ #define HAVE_ENDPROTOENT 1 @@ -84,10 +84,10 @@ #define HAVE_ENGINE_LOAD_CRYPTODEV 1 /* Define to 1 if you have the `EVP_dss1' function. */ -#define HAVE_EVP_DSS1 1 +/* #undef HAVE_EVP_DSS1 */ /* Define to 1 if you have the `EVP_MD_CTX_new' function. */ -/* #undef HAVE_EVP_MD_CTX_NEW */ +#define HAVE_EVP_MD_CTX_NEW 1 /* Define to 1 if you have the `EVP_PKEY_base_id' function. */ #define HAVE_EVP_PKEY_BASE_ID 1 @@ -362,7 +362,7 @@ #define USE_DANE 1 /* Define this to enable DANE-TA usage type support. */ -/* #undef USE_DANE_TA_USAGE */ +#define USE_DANE_TA_USAGE 1 /* Define this to enable DANE verify support. */ #define USE_DANE_VERIFY 1 @@ -380,7 +380,7 @@ /* #undef USE_ED448 */ /* Define this to enable GOST support. */ -#define USE_GOST 1 +/* #undef USE_GOST */ /* Define this to enable SHA256 and SHA512 support. */ #define USE_SHA2 1 Modified: projects/power8_bringup_hacks/contrib/libarchive/README.md ============================================================================== --- projects/power8_bringup_hacks/contrib/libarchive/README.md Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/libarchive/README.md Thu Oct 11 19:06:54 2018 (r339314) @@ -78,7 +78,6 @@ Currently, the library automatically detects and reads * POSIX pax interchange format * POSIX octet-oriented cpio * SVR4 ASCII cpio - * POSIX octet-oriented cpio * Binary cpio (big-endian or little-endian) * ISO9660 CD-ROM images (with optional Rockridge or Joliet extensions) * ZIP archives (with uncompressed or "deflate" compressed entries, including support for encrypted Zip archives) Modified: projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_acl.c ============================================================================== --- projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_acl.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_acl.c Thu Oct 11 19:06:54 2018 (r339314) @@ -2058,6 +2058,12 @@ next_field(const char **p, const char **start, } *sep = **p; + /* If the field is only whitespace, bail out now. */ + if (**p == '\0') { + *end = *p; + return; + } + /* Trim trailing whitespace to locate end of field. */ *end = *p - 1; while (**end == ' ' || **end == '\t' || **end == '\n') { Modified: projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_cryptor.c ============================================================================== --- projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_cryptor.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_cryptor.c Thu Oct 11 19:06:54 2018 (r339314) @@ -316,7 +316,14 @@ aes_ctr_init(archive_crypto_ctx *ctx, const uint8_t *k memcpy(ctx->key, key, key_len); memset(ctx->nonce, 0, sizeof(ctx->nonce)); ctx->encr_pos = AES_BLOCK_SIZE; +#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + if (!EVP_CIPHER_CTX_reset(ctx->ctx)) { + EVP_CIPHER_CTX_free(ctx->ctx); + ctx->ctx = NULL; + } +#else EVP_CIPHER_CTX_init(ctx->ctx); +#endif return 0; } Modified: projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_read_support_format_ar.c ============================================================================== --- projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_read_support_format_ar.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_read_support_format_ar.c Thu Oct 11 19:06:54 2018 (r339314) @@ -459,6 +459,7 @@ ar_parse_common_header(struct ar *ar, struct archive_e uint64_t n; /* Copy remaining header */ + archive_entry_set_filetype(entry, AE_IFREG); archive_entry_set_mtime(entry, (time_t)ar_atol10(h + AR_date_offset, AR_date_size), 0L); archive_entry_set_uid(entry, Modified: projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_read_support_format_zip.c ============================================================================== --- projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_read_support_format_zip.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/libarchive/libarchive/archive_read_support_format_zip.c Thu Oct 11 19:06:54 2018 (r339314) @@ -2708,6 +2708,11 @@ slurp_central_directory(struct archive_read *a, struct return ARCHIVE_FATAL; zip_entry = calloc(1, sizeof(struct zip_entry)); + if (zip_entry == NULL) { + archive_set_error(&a->archive, ENOMEM, + "Can't allocate zip entry"); + return ARCHIVE_FATAL; + } zip_entry->next = zip->zip_entries; zip_entry->flags |= LA_FROM_CENTRAL_DIRECTORY; zip->zip_entries = zip_entry; Modified: projects/power8_bringup_hacks/contrib/libarchive/libarchive/test/test_sparse_basic.c ============================================================================== --- projects/power8_bringup_hacks/contrib/libarchive/libarchive/test/test_sparse_basic.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/libarchive/libarchive/test/test_sparse_basic.c Thu Oct 11 19:06:54 2018 (r339314) @@ -422,6 +422,7 @@ verify_sparse_file(struct archive *a, const char *path assert(sparse->type == END); assertEqualInt(expected_offset, archive_entry_size(ae)); + failure(path); assertEqualInt(holes_seen, expected_holes); assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a)); @@ -457,6 +458,7 @@ verify_sparse_file2(struct archive *a, const char *pat /* Verify the number of holes only, not its offset nor its * length because those alignments are deeply dependence on * its filesystem. */ + failure(path); assertEqualInt(blocks, archive_entry_sparse_count(ae)); archive_entry_free(ae); } Modified: projects/power8_bringup_hacks/contrib/libarchive/test_utils/test_main.c ============================================================================== --- projects/power8_bringup_hacks/contrib/libarchive/test_utils/test_main.c Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/libarchive/test_utils/test_main.c Thu Oct 11 19:06:54 2018 (r339314) @@ -2166,7 +2166,7 @@ void assertVersion(const char *prog, const char *base) /* Skip arbitrary third-party version numbers. */ while (s > 0 && (*q == ' ' || *q == '-' || *q == '/' || *q == '.' || - isalnum(*q))) { + isalnum((unsigned char)*q))) { ++q; --s; } Modified: projects/power8_bringup_hacks/contrib/llvm/lib/CodeGen/BranchFolding.cpp ============================================================================== --- projects/power8_bringup_hacks/contrib/llvm/lib/CodeGen/BranchFolding.cpp Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/llvm/lib/CodeGen/BranchFolding.cpp Thu Oct 11 19:06:54 2018 (r339314) @@ -884,11 +884,12 @@ void BranchFolder::mergeCommonTails(unsigned commonTai if (UpdateLiveIns) { LivePhysRegs NewLiveIns(*TRI); computeLiveIns(NewLiveIns, *MBB); + LiveRegs.init(*TRI); // The flag merging may lead to some register uses no longer using the // flag, add IMPLICIT_DEFs in the predecessors as necessary. for (MachineBasicBlock *Pred : MBB->predecessors()) { - LiveRegs.init(*TRI); + LiveRegs.clear(); LiveRegs.addLiveOuts(*Pred); MachineBasicBlock::iterator InsertBefore = Pred->getFirstTerminator(); for (unsigned Reg : NewLiveIns) { Modified: projects/power8_bringup_hacks/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp ============================================================================== --- projects/power8_bringup_hacks/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp Thu Oct 11 18:30:12 2018 (r339313) +++ projects/power8_bringup_hacks/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp Thu Oct 11 19:06:54 2018 (r339314) @@ -14,6 +14,7 @@ #include "CodeGenFunction.h" #include "CGObjCRuntime.h" #include "CodeGenModule.h" +#include "ConstantEmitter.h" #include "clang/AST/ASTContext.h" #include "clang/AST/DeclCXX.h" #include "clang/AST/DeclTemplate.h" @@ -85,7 +86,7 @@ class AggExprEmitter : public StmtVisitorgetNumInits(); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@freebsd.org Thu Oct 11 19:18:06 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1F5010C4E7C for ; Thu, 11 Oct 2018 19:18:06 +0000 (UTC) (envelope-from luporl@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7E40D7E131; Thu, 11 Oct 2018 19:18:06 +0000 (UTC) (envelope-from luporl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 75A6A14A56; Thu, 11 Oct 2018 19:18:06 +0000 (UTC) (envelope-from luporl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9BJI6H1067451; Thu, 11 Oct 2018 19:18:06 GMT (envelope-from luporl@FreeBSD.org) Received: (from luporl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9BJI6Ak067450; Thu, 11 Oct 2018 19:18:06 GMT (envelope-from luporl@FreeBSD.org) Message-Id: <201810111918.w9BJI6Ak067450@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: luporl set sender to luporl@FreeBSD.org using -f From: Leandro Lupori Date: Thu, 11 Oct 2018 19:18:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339316 - projects/power8_bringup_hacks/sys/powerpc/powerpc X-SVN-Group: projects X-SVN-Commit-Author: luporl X-SVN-Commit-Paths: projects/power8_bringup_hacks/sys/powerpc/powerpc X-SVN-Commit-Revision: 339316 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2018 19:18:07 -0000 Author: luporl Date: Thu Oct 11 19:18:06 2018 New Revision: 339316 URL: https://svnweb.freebsd.org/changeset/base/339316 Log: Initialize SPRG0 before its first possible use. Modified: projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c Modified: projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c ============================================================================== --- projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c Thu Oct 11 19:06:54 2018 (r339315) +++ projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c Thu Oct 11 19:18:06 2018 (r339316) @@ -383,12 +383,12 @@ powerpc_init(vm_offset_t fdt, vm_offset_t toc, vm_offs if (platform_smp_get_bsp(&bsp) != 0) bsp.cr_cpuid = 0; pc = &__pcpu[bsp.cr_cpuid]; + __asm __volatile("mtsprg 0, %0" :: "r"(pc)); pcpu_init(pc, bsp.cr_cpuid, sizeof(struct pcpu)); pc->pc_curthread = &thread0; thread0.td_oncpu = bsp.cr_cpuid; pc->pc_cpuid = bsp.cr_cpuid; pc->pc_hwref = bsp.cr_hwref; - __asm __volatile("mtsprg 0, %0" :: "r"(pc)); /* * Init KDB From owner-svn-src-projects@freebsd.org Thu Oct 11 20:08:12 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 576A710C6125 for ; Thu, 11 Oct 2018 20:08:12 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: from mail-io1-xd30.google.com (mail-io1-xd30.google.com [IPv6:2607:f8b0:4864:20::d30]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D53367FF31; Thu, 11 Oct 2018 20:08:11 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: by mail-io1-xd30.google.com with SMTP id w16-v6so7582989iom.7; Thu, 11 Oct 2018 13:08:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=hC+903HkF3Q5KuKedtt4lKlmkM8eqzbZG3JXkI+62S8=; b=AGITpnZT4NZLHQNHpwBC/YHVueKUKM2pq/R+9WGZKx8cuNOdGLx834zNzf1xCi4D+d N7gPFuXbboNM+L3zCdGU5zOQRgP4fxYyNYADJ6Rrd6AgnNGAZtlzn5XkGk4Ze3kMI3+j 600OxjSyVOMqRVFyTdXzsyhRfeLyDr+gwvKhcQlS1WwgKvG0iFQxq9sBaEvF/vHeFiUm gvwVMZ4Oj7GI7hhvIVz9rtuTLkhmFB4wEmIplOR2nY4LHK22ZcsOzm5S/76op6C3Momv Nxg8nG5m5zpfWrJZY29kAUKBl9V7ST7cV0Wt/MHJQv0EbyCZeBsbwZ4Lqgrmocm3SjYa spPg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=hC+903HkF3Q5KuKedtt4lKlmkM8eqzbZG3JXkI+62S8=; b=NIYnjqaBJNOMAFVP5zhPEaRculpEy0117nqP/gsnK6cgZtqVulAXtGxFGeth5Tpz6A zR9zXxr0iVXYCoJxQDYik3NTQOmbKk+aDzQRYh+O32Z1XVYwyTtAtfir0EV/qW/ur5RD rOZIjGF20Vf4A6PFMkeYTTAzmy1fe9UdzGC9qhS0cT4jo4p+iC6ckVQxBE9/vevuvZ5M jZBTwClDlnBfFSSwizRyfouvP6u5HlDSvtqkgwE4q8NL6UOXWWyiKcalzBsfrxhggvpm EgYHPc+37y6MDw9ezF2Bq3wbMXiA9vfE8qHJjArim73L49ohCzETQ1a63xTAFJcsdkKp NZ9A== X-Gm-Message-State: ABuFfogOFSIIOeTSDMoTOqQv5hAX9md9QUT192FhZRhcvFokH0f70vQI M2qBkHDDDW2rc0r0hYxWe/LIGVc0 X-Google-Smtp-Source: ACcGV632gz7G+c/Lyvpg+754isKGdNlSKspa9xYwVhWwAZzce28l+ZKCum84YvJuf+GHTKJMPfepow== X-Received: by 2002:a6b:b409:: with SMTP id d9-v6mr2220475iof.227.1539288490717; Thu, 11 Oct 2018 13:08:10 -0700 (PDT) Received: from ralga.knownspace (173-25-245-129.client.mchsi.com. [173.25.245.129]) by smtp.gmail.com with ESMTPSA id b66-v6sm6211521itd.35.2018.10.11.13.08.09 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 11 Oct 2018 13:08:10 -0700 (PDT) Date: Thu, 11 Oct 2018 15:08:05 -0500 From: Justin Hibbits To: Leandro Lupori Cc: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: Re: svn commit: r339316 - projects/power8_bringup_hacks/sys/powerpc/powerpc Message-ID: <20181011150805.7234d85c@ralga.knownspace> In-Reply-To: <201810111918.w9BJI6Ak067450@repo.freebsd.org> References: <201810111918.w9BJI6Ak067450@repo.freebsd.org> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; powerpc64-portbld-freebsd12.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2018 20:08:12 -0000 On Thu, 11 Oct 2018 19:18:06 +0000 (UTC) Leandro Lupori wrote: > Author: luporl > Date: Thu Oct 11 19:18:06 2018 > New Revision: 339316 > URL: https://svnweb.freebsd.org/changeset/base/339316 > > Log: > Initialize SPRG0 before its first possible use. > > Modified: > projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c > > Modified: projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c > ============================================================================== > --- > projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c > Thu Oct 11 19:06:54 2018 (r339315) +++ > projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c > Thu Oct 11 19:18:06 2018 (r339316) @@ -383,12 +383,12 @@ > powerpc_init(vm_offset_t fdt, vm_offset_t toc, vm_offs if > (platform_smp_get_bsp(&bsp) != 0) bsp.cr_cpuid = 0; pc = > &__pcpu[bsp.cr_cpuid]; > + __asm __volatile("mtsprg 0, %0" :: "r"(pc)); > pcpu_init(pc, bsp.cr_cpuid, sizeof(struct pcpu)); > pc->pc_curthread = &thread0; > thread0.td_oncpu = bsp.cr_cpuid; > pc->pc_cpuid = bsp.cr_cpuid; > pc->pc_hwref = bsp.cr_hwref; > - __asm __volatile("mtsprg 0, %0" :: "r"(pc)); > > /* > * Init KDB > Wow, that's quite some sleuthing! Consider this approved by me, and email re@ to get it into head. Then hop on IRC and give me the play-by-play on how you figured it out. I'm really curious! At first I thought it was a fairly innocuous change, because "nothing" could be doing a PCPU_GET() for pcpu[0], right? Then I saw AIM's cpu_pcpu_init() doing a memcpy() from PCPU_GET(aim.slb). So, with this change you're making a memcpy() overwrite itself (which, I hope, is a real nop in code?). - Justin From owner-svn-src-projects@freebsd.org Thu Oct 11 20:44:26 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4523710C71B2 for ; Thu, 11 Oct 2018 20:44:26 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F00F381336; Thu, 11 Oct 2018 20:44:25 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EADA91591B; Thu, 11 Oct 2018 20:44:25 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9BKiP0Z017699; Thu, 11 Oct 2018 20:44:25 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9BKiPBD017697; Thu, 11 Oct 2018 20:44:25 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201810112044.w9BKiPBD017697@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 11 Oct 2018 20:44:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r339317 - in projects/clang700-import/sys: conf i386/i386 X-SVN-Group: projects X-SVN-Commit-Author: dim X-SVN-Commit-Paths: in projects/clang700-import/sys: conf i386/i386 X-SVN-Commit-Revision: 339317 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2018 20:44:26 -0000 Author: dim Date: Thu Oct 11 20:44:25 2018 New Revision: 339317 URL: https://svnweb.freebsd.org/changeset/base/339317 Log: Fix placement of __bss_start in i386 kernel linker script With lld 7.0.0, a rather nasty problem in our kernel linker script came to light. We use quite a lot of so-called "orphan" sections, e.g. sections which are not explicitly named in the linker script. Mainly, these are the linker sets (such as set_sysinit_set). Note that the placement of these orphan sections is not very well defined. Usually, any read-only orphan sections get placed after the last read-only section from the linker script, and similarly for the read/write variants. In our linker scripts, there are also symbol assignments like _etext, _edata, and __bss_start, which are used in various places to refer to the start or end addresses of sections. However, some of these symbol assignments are interspersed with output section descriptions. While the linker will guarantee that a symbol assignment after some section will stay after that section, there is no guarantee that an orphan section cannot be inserted just before it. Take for example the following script: SECTIONS { .data : { *(.data) } __bss_start = .; .bss : { *(.bss) } } If an orphan section (like set_sysinit_set) is now inserted just after the __bss_start assignment, __bss_start will actually point to the start of that orphan section, *not* to the start of the .bss section. Unfortunately, something like this happened with our i386 kernel linker script, and since sys/i386/i386/locore.s tries to zero .bss, it ended up zeroing all the linker sets too, leading to a crash very soon after the <--BOOT--> message. To fix this, move the __bss_start symbol assignment *into* the .bss section description, so there is no way a linker can then insert orphan sections at that point. Also add a corresponding __bss_end symbol. In addition, change sys/i386/i386/locore.s, so it clears from __bss_start to __bss_end, instead of assuming that _edata is just before .bss (which may not be true), and that _end is just after _bss (which also may not be true). This allows an i386 kernel linked with lld 7.0.0 to boot successfully. Modified: projects/clang700-import/sys/conf/ldscript.i386 projects/clang700-import/sys/i386/i386/locore.s Modified: projects/clang700-import/sys/conf/ldscript.i386 ============================================================================== --- projects/clang700-import/sys/conf/ldscript.i386 Thu Oct 11 19:18:06 2018 (r339316) +++ projects/clang700-import/sys/conf/ldscript.i386 Thu Oct 11 20:44:25 2018 (r339317) @@ -140,9 +140,9 @@ SECTIONS } .data1 : { *(.data1) } _edata = .; PROVIDE (edata = .); - __bss_start = .; .bss : { + __bss_start = .; *(.dynbss) *(.bss .bss.* .gnu.linkonce.b.*) *(COMMON) @@ -152,6 +152,7 @@ SECTIONS FIXME: Why do we need it? When there is no .bss section, we don't pad the .data section. */ . = ALIGN(. != 0 ? 32 / 8 : 1); + __bss_end = .; } . = ALIGN(32 / 8); . = ALIGN(32 / 8); Modified: projects/clang700-import/sys/i386/i386/locore.s ============================================================================== --- projects/clang700-import/sys/i386/i386/locore.s Thu Oct 11 19:18:06 2018 (r339316) +++ projects/clang700-import/sys/i386/i386/locore.s Thu Oct 11 20:44:25 2018 (r339317) @@ -120,8 +120,8 @@ NON_GPROF_ENTRY(btext) * inactive from now until we switch to new ones, since we don't load any * more segment registers or permit interrupts until after the switch. */ - movl $end,%ecx - movl $edata,%edi + movl $__bss_end,%ecx + movl $__bss_start,%edi subl %edi,%ecx xorl %eax,%eax cld From owner-svn-src-projects@freebsd.org Thu Oct 11 21:09:41 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB37010C7F93 for ; Thu, 11 Oct 2018 21:09:41 +0000 (UTC) (envelope-from leandro.lupori@gmail.com) Received: from mail-yb1-xb34.google.com (mail-yb1-xb34.google.com [IPv6:2607:f8b0:4864:20::b34]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4549B825E7; Thu, 11 Oct 2018 21:09:41 +0000 (UTC) (envelope-from leandro.lupori@gmail.com) Received: by mail-yb1-xb34.google.com with SMTP id p74-v6so4164772ybc.9; Thu, 11 Oct 2018 14:09:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=QHylVfpsL33O4AkSTcwomLmbAmAvbzAeBbZQSyKDaew=; b=QqNSxrizXrjKu/gufMwgHGT6EiUVzvxeJkfUvxWqlGo6j7utO1EGIQ8zY7hmtmXZJN twgG7SmUIhv23IrPWezpFYqDnaGd9RXUMMRdcQbDTTAX9OxRKQjfZHC3Sr7fw0B2WQOz yVhpxdFNrt+xnH1EVMrb5qYuh0cKub3iAJzWViI7NKrU2oVnl9j9PlnOvX8OXw9hoxR7 3uTjMsJdYIw8n7RpVTKeoBz1Ln+A8fSGv0HInp0RzUOzD/do5BdNJF02/X3ondPCmtPQ ffegbE1lCVfo1+M3ki7mJNFO2b2IFcA/gEYk2xeOsKrz8hdO0xegmctz0LU2DkGb7mhf bt3Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=QHylVfpsL33O4AkSTcwomLmbAmAvbzAeBbZQSyKDaew=; b=drLoYjumLeZbcRDHnIhGttyLuUaVZ5IKW38yCPpZ/9MXbmP9DN7ZGJIPnhCPcsQ/VL 6htOuNeoQCoCEhHns9/2oUbaTSn0wAhQjhawprBca4LBM+IzvN9bOojq22HBPl/XUuFo jt3cnsGg1ZQytoK3Hji1ZW6lz866aY2Sd2zaDf0ChHzwD+gpansoDToZTMfwsRgn0H9J vGHh5meSsvw4Yzp1tK9bimBgQMz9arNu3NqLYrva4vkB66q6q7pt5TaxG6WMTahcmNYr evuULdwABce4cay1R9dgU+8fT1txUpAsEEfHWJc9K6dentGGzM/eucJjHkBv1LcryA9g o0QQ== X-Gm-Message-State: ABuFfoiXC9oNYIf4BhPLuoiTpShoCnWNq2hQK5gpS3apVQVuHRsHh5Pp Cccee03M3fWeGJD901Y8CJ5ZHP4Bfgtx9lBDLm0= X-Google-Smtp-Source: ACcGV61LqpzAdCJ9Nh9mf5pssvTAIjTwpyp9XQRWt6tJ3MKgHyUCX1gMvuxFzJ74hdXlV3CtR/ibGWJJkwVUysgJa5A= X-Received: by 2002:a25:54d:: with SMTP id 74-v6mr1778369ybf.350.1539292180528; Thu, 11 Oct 2018 14:09:40 -0700 (PDT) MIME-Version: 1.0 References: <201810111918.w9BJI6Ak067450@repo.freebsd.org> <20181011150805.7234d85c@ralga.knownspace> In-Reply-To: <20181011150805.7234d85c@ralga.knownspace> From: Leandro Date: Thu, 11 Oct 2018 18:09:29 -0300 Message-ID: Subject: Re: svn commit: r339316 - projects/power8_bringup_hacks/sys/powerpc/powerpc To: Justin Hibbits Cc: luporl@freebsd.org, src-committers@freebsd.org, svn-src-projects@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2018 21:09:41 -0000 Ok, I'm done for today, but I'll get back to it on Monday. > At first I thought it was a fairly innocuous change, because "nothing" could be doing a PCPU_GET() for pcpu[0], right? Yes, there are some combinations of platforms/OFW where SPRG0 gets initialized before cpu_pcpu_init() being called, but that was not the case for POWER8/PowerNV/FDT. > So, with this change you're making a memcpy() overwrite itself (which, I hope, is a real nop in code?). Yes, with this change memcpy() is overwriting the same data, that doesn't make much sense and may not end up being turned into a nop in code (need to check that). The problem is that I'm not sure if removing this memcpy() won't break some other combo. Do you have any suggestion to detect this case and skip the copy? For a local POWER8 machine that I have access, this was causing kexec to hang most times. So my basic debug strategy was to place debug prints (with OPAL for early ones), flush them and check how far the boot would go before the machine hanged. Later I can give you more details on IRC if you are interested :) - Leandro On Thu, Oct 11, 2018 at 5:08 PM Justin Hibbits wrote: > On Thu, 11 Oct 2018 19:18:06 +0000 (UTC) > Leandro Lupori wrote: > > > Author: luporl > > Date: Thu Oct 11 19:18:06 2018 > > New Revision: 339316 > > URL: https://svnweb.freebsd.org/changeset/base/339316 > > > > Log: > > Initialize SPRG0 before its first possible use. > > > > Modified: > > projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c > > > > Modified: projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c > > > ============================================================================== > > --- > > projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c > > Thu Oct 11 19:06:54 2018 (r339315) +++ > > projects/power8_bringup_hacks/sys/powerpc/powerpc/machdep.c > > Thu Oct 11 19:18:06 2018 (r339316) @@ -383,12 +383,12 @@ > > powerpc_init(vm_offset_t fdt, vm_offset_t toc, vm_offs if > > (platform_smp_get_bsp(&bsp) != 0) bsp.cr_cpuid = 0; pc = > > &__pcpu[bsp.cr_cpuid]; > > + __asm __volatile("mtsprg 0, %0" :: "r"(pc)); > > pcpu_init(pc, bsp.cr_cpuid, sizeof(struct pcpu)); > > pc->pc_curthread = &thread0; > > thread0.td_oncpu = bsp.cr_cpuid; > > pc->pc_cpuid = bsp.cr_cpuid; > > pc->pc_hwref = bsp.cr_hwref; > > - __asm __volatile("mtsprg 0, %0" :: "r"(pc)); > > > > /* > > * Init KDB > > > > Wow, that's quite some sleuthing! > > Consider this approved by me, and email re@ to get it into head. Then > hop on IRC and give me the play-by-play on how you figured it out. I'm > really curious! > > At first I thought it was a fairly innocuous change, because "nothing" > could be doing a PCPU_GET() for pcpu[0], right? Then I saw AIM's > cpu_pcpu_init() doing a memcpy() from PCPU_GET(aim.slb). So, with this > change you're making a memcpy() overwrite itself (which, I hope, is a > real nop in code?). > > - Justin >