> -----Original Message-----
> From: Smoczynski, MarcinX <[email protected]>
> Sent: Tuesday, January 28, 2020 3:17 AM
> To: [email protected]; Ananyev, Konstantin
> <[email protected]>; Zhang, Roy Fan <[email protected]>;
> Doherty, Declan <[email protected]>; Nicolau, Radu
> <[email protected]>; De Lara Guarch, Pablo
> <[email protected]>
> Cc: [email protected]; Smoczynski, MarcinX <[email protected]>
> Subject: [PATCH v4 2/8] crypto/aesni_gcm: cpu crypto support
> 
> Add support for CPU crypto mode by introducing required handler.
> Crypto mode (sync/async) is chosen during sym session create if an appropriate
> flag is set in an xform type number.
> 
> Authenticated encryption and decryption are supported with tag
> generation/verification.
> 
> Signed-off-by: Marcin Smoczynski <[email protected]>

...

> @@ -331,9 +331,12 @@ struct rte_cryptodev_ops aesni_gcm_pmd_ops = {
>               .queue_pair_release     = aesni_gcm_pmd_qp_release,
>               .queue_pair_count       = aesni_gcm_pmd_qp_count,
> 
> +             .sym_cpu_process        = aesni_gcm_pmd_cpu_crypto_process,
> +
>               .sym_session_get_size   =
> aesni_gcm_pmd_sym_session_get_size,
>               .sym_session_configure  =
> aesni_gcm_pmd_sym_session_configure,
>               .sym_session_clear      = aesni_gcm_pmd_sym_session_clear
>  };
> 
>  struct rte_cryptodev_ops *rte_aesni_gcm_pmd_ops = &aesni_gcm_pmd_ops;
> +

Minor thing, but you should remove this blank line.

Apart from that:

Acked-by: Pablo de Lara <[email protected]>

Reply via email to