[dpdk-dev] [v5,4/5] test: add event crypto adapter auto-test

De Lara Guarch, Pablo pablo.de.lara.guarch at intel.com
Thu May 10 17:52:55 CEST 2018



> -----Original Message-----
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Abhinandan Gujjar
> Sent: Wednesday, May 9, 2018 9:18 AM
> To: jerin.jacob at caviumnetworks.com; hemant.agrawal at nxp.com;
> akhil.goyal at nxp.com; dev at dpdk.org
> Cc: Vangati, Narender <narender.vangati at intel.com>; Gujjar, Abhinandan S
> <abhinandan.gujjar at intel.com>; Rao, Nikhil <nikhil.rao at intel.com>; Eads, Gage
> <gage.eads at intel.com>
> Subject: [dpdk-dev] [v5,4/5] test: add event crypto adapter auto-test
> 
> Added testsuite to test the crypto adapter functionality.
> The testsuite detects the HW/SW event & crypto devices and their capabilities.
> Depending upon the capability, adapter is confgured and modes are tested.
> 
> Signed-off-by: Abhinandan Gujjar <abhinandan.gujjar at intel.com>
> Acked-by: Akhil Goyal <akhil.goyal at nxp.com>

...

> +	/*
> +	 * Create mempool with maximum number of sessions * 2,
> +	 * to include the session headers & private data
> +	 */
> +	session_size = rte_cryptodev_get_private_session_size(TEST_CDEV_ID);
> +	session_size += sizeof(union rte_event_crypto_metadata);
> +
> +	params.session_mpool = rte_mempool_create(
> +				"CRYPTO_ADAPTER_SESSION_MP",
> +				info.sym.max_nb_sessions * 2,
> +				session_size,
> +				0, 0, NULL, NULL, NULL,
> +				NULL, SOCKET_ID_ANY,
> +				0);

I am seeing an icc compilation issue here:

test/test/test_event_crypto_adapter.c(530): error #592: variable "info" is used before its v                                                                 alue is set
                                info.sym.max_nb_sessions * 2,

Looking at this, info gets filled below, after using it in mempool_create, which looks wrong.
But also, keep in mind that we are going to remove max_nb_sessions,
since this was used when the session pool was created inside the PMD.

I suggest to set your own number of session in the test and not use max_nb_sessions.

Thanks,
Pablo



More information about the dev mailing list