svn commit: r330041 - in head/sys/dev/cxgbe: . crypto

Andrew Turner andrew at fubar.geek.nz
Tue Feb 27 13:43:01 UTC 2018



> On 26 Feb 2018, at 22:12, John Baldwin <jhb at freebsd.org> wrote:
> 
> Author: jhb
> Date: Mon Feb 26 22:12:31 2018
> New Revision: 330041
> URL: https://svnweb.freebsd.org/changeset/base/330041
> 
> Log:
>  Move ccr_aes_getdeckey() from ccr(4) to the cxgbe(4) driver.
> 
>  This routine will also be used by the TOE module to manage TLS keys.
> 
>  Sponsored by:	Chelsio Communications

I’m 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



More information about the svn-src-all mailing list