From owner-svn-src-head@freebsd.org Thu Sep 8 02:38:56 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9D08BD15F3; Thu, 8 Sep 2016 02:38:56 +0000 (UTC) (envelope-from allanjude@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 mx1.freebsd.org (Postfix) with ESMTPS id 8C539FEC; Thu, 8 Sep 2016 02:38:56 +0000 (UTC) (envelope-from allanjude@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u882ctIZ001156; Thu, 8 Sep 2016 02:38:55 GMT (envelope-from allanjude@FreeBSD.org) Received: (from allanjude@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u882ctwf001155; Thu, 8 Sep 2016 02:38:55 GMT (envelope-from allanjude@FreeBSD.org) Message-Id: <201609080238.u882ctwf001155@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: allanjude set sender to allanjude@FreeBSD.org using -f From: Allan Jude Date: Thu, 8 Sep 2016 02:38:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r305576 - head/sys/crypto/skein/amd64 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2016 02:38:56 -0000 Author: allanjude Date: Thu Sep 8 02:38:55 2016 New Revision: 305576 URL: https://svnweb.freebsd.org/changeset/base/305576 Log: Fix typo in skein amd64 assembly Sponsored by: ScaleEngine Inc. Modified: head/sys/crypto/skein/amd64/skein_block_asm.s (contents, props changed) Modified: head/sys/crypto/skein/amd64/skein_block_asm.s ============================================================================== --- head/sys/crypto/skein/amd64/skein_block_asm.s Thu Sep 8 01:02:53 2016 (r305575) +++ head/sys/crypto/skein/amd64/skein_block_asm.s Thu Sep 8 02:38:55 2016 (r305576) @@ -6,6 +6,7 @@ # # This code is released to the public domain. #---------------------------------------------------------------- +# $FreeBSD$ # .text .altmacro @@ -869,7 +870,7 @@ _UNROLL_CNT = ROUNDS_512/8 .else _UNROLL_CNT = SKEIN_UNROLL_512 .if ((ROUNDS_512/8) % _UNROLL_CNT) - .err "Invalid SKEIN_UNROLL_512" + .error "Invalid SKEIN_UNROLL_512" .endif xorq %rdi,%rdi #rdi = round counter Skein_512_round_loop: