Re: [dpdk-dev] [PATCH v3 6/9] app/procinfo: add support for show crypto

2018-11-05 Thread Varghese, Vipin
Sending v4 for fixing spacing issue > + (x & RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO) ? 'y' : 'n', > + (x & RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO) ? 'y' : 'n', > + (x & RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING) ? 'y' : > 'n'); > + printf("\t\t + CPU: SSE (%c), AVX

[dpdk-dev] [PATCH v3 6/9] app/procinfo: add support for show crypto

2018-11-05 Thread Vipin Varghese
Function show_crypto is used for displaying the crypto PMD under the primary process. Signed-off-by: Vipin Varghese --- V3: - replace MACRO to function - Reshma Pathan & Stephen Hemminger - add memset for struct elements - Reshma Pathan - change display formating of flags - Vipin Varghese -