From owner-svn-src-head@freebsd.org Tue Feb 27 13:43:01 2018 Return-Path: Delivered-To: svn-src-head@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 99152F27186; Tue, 27 Feb 2018 13:43:01 +0000 (UTC) (envelope-from andrew@fubar.geek.nz) Received: from fry.fubar.geek.nz (fry.fubar.geek.nz [139.59.165.16]) by mx1.freebsd.org (Postfix) with ESMTP id 39E2177D9B; Tue, 27 Feb 2018 13:43:00 +0000 (UTC) (envelope-from andrew@fubar.geek.nz) Received: from [IPv6:2001:630:212:2a8:3113:b9c5:6591:bff4] (unknown [IPv6:2001:630:212:2a8:3113:b9c5:6591:bff4]) by fry.fubar.geek.nz (Postfix) with ESMTPSA id C81174E63F; Tue, 27 Feb 2018 13:42:21 +0000 (UTC) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 11.2 \(3445.5.20\)) Subject: Re: svn commit: r330041 - in head/sys/dev/cxgbe: . crypto From: Andrew Turner In-Reply-To: <201802262212.w1QMCVUW015291@repo.freebsd.org> Date: Tue, 27 Feb 2018 13:42:20 +0000 Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <892FC376-0B0D-4408-A1B4-0B19C7E25E3E@fubar.geek.nz> References: <201802262212.w1QMCVUW015291@repo.freebsd.org> To: John Baldwin X-Mailer: Apple Mail (2.3445.5.20) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 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: Tue, 27 Feb 2018 13:43:01 -0000 > On 26 Feb 2018, at 22:12, John Baldwin wrote: >=20 > Author: jhb > Date: Mon Feb 26 22:12:31 2018 > New Revision: 330041 > URL: https://svnweb.freebsd.org/changeset/base/330041 >=20 > Log: > Move ccr_aes_getdeckey() from ccr(4) to the cxgbe(4) driver. >=20 > This routine will also be used by the TOE module to manage TLS keys. >=20 > Sponsored by: Chelsio Communications I=E2=80=99m getting the following on arm64 after this change: = /jenkins/workspace/FreeBSD-arm64-head/freebsd-head/sys/dev/cxgbe/t4_main.c= :10197:19: error: use of undeclared identifier 'RIJNDAEL_MAXNR' uint32_t ek[4 * (RIJNDAEL_MAXNR + 1)]; ^ = /jenkins/workspace/FreeBSD-arm64-head/freebsd-head/sys/dev/cxgbe/t4_main.c= :10201:2: error: implicit declaration of function 'rijndaelKeySetupEnc' = is invalid in C99 [-Werror,-Wimplicit-function-declaration] rijndaelKeySetupEnc(ek, enc_key, kbits); ^ Andrew