RE: [EXT] [PATCH 2/3] crypto/scheduler: use unified session

2022-09-18 Thread Akhil Goyal
> diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c > index c975c38001..e181b0aa3e 100644 > --- a/app/test/test_cryptodev.c > +++ b/app/test/test_cryptodev.c > @@ -14986,8 +14986,8 @@ test_scheduler_attach_worker_op(void) > ts_params->session_mpool = >

RE: [EXT] [PATCH 3/3] cryptodev: hide sym session structure

2022-09-18 Thread Akhil Goyal
> +#define CRYPTO_SESS_OPAQUE_DATA_OFF 0 CRYPTO_SESS_OPAQUE_DATA_OFF cannot be 0 as you have added a driver_id at start of struct. > +/** > + * Get opaque data from session handle > + */ > +static inline uint64_t > +rte_cryptodev_sym_session_opaque_data_get(void *sess) > +{ > + return *((ui

Re: Cannot set affinity - pthread_setaffinity_np - DPDK21

2022-09-18 Thread Kamaraj P
Hi Stephen, Yes. The core mask we have aligned to separate cgroup. Probably this might be an issue here. We will change the alignment in our DPDK application. BTW is there a way to check the cores affinity set to DPDK after rte_eail_init ? Do we have to use the taskset command ? Please advise. Th

[PATCH] net/iavf: fix error of virtchnl command

2022-09-18 Thread Yiding Zhou
When the device is bonded, bond pmd will register callback for LSC event. This callback will execute some virtchnl commands in eal-intr-thread to reinitialize the device with interrupts disabled. In this case, responses to all commands not be received. This commit starts a thread to handle all eve