On 9 June 2014 19:41, chandramouli narayanan <mo...@linux.intel.com> wrote:
> [...]
> @@ -1493,6 +1521,14 @@ static int __init aesni_init(void)
>                 aesni_gcm_enc_tfm = aesni_gcm_enc;
>                 aesni_gcm_dec_tfm = aesni_gcm_dec;
>         }
> +       aesni_ctr_enc_tfm = aesni_ctr_enc;
> +#ifdef CONFIG_AS_AVX
> +       if (cpu_has_avx) {
> +               /* optimize performance of ctr mode encryption trasform */

The "trasform" typo is also still there. :/

> +               aesni_ctr_enc_tfm = aesni_ctr_enc_avx_tfm;
> +               pr_info("AES CTR mode by8 optimization enabled\n");
> +       }
> +#endif
>  #endif
>
>         err = crypto_fpu_init();

Mathias
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to