compress/isal: add version display

Display information about ISA-L lib version in UTs.

Signed-off-by: Tomasz Cel <tomaszx.cel@intel.com>
Acked-by: Lee Daly <lee.daly@intel.com>
This commit is contained in:
Tomasz Cel 2019-02-11 10:18:52 +01:00 committed by Akhil Goyal
parent 25e9517961
commit fff7b0ddce

View File

@ -19,6 +19,12 @@
#define CHKSUM_SZ_CRC 8
#define CHKSUM_SZ_ADLER 4
#define STRINGIFY(s) #s
#define ISAL_TOSTRING(maj, min, patch) \
STRINGIFY(maj)"."STRINGIFY(min)"."STRINGIFY(patch)
#define ISAL_VERSION_STRING \
ISAL_TOSTRING(ISAL_MAJOR_VERSION, ISAL_MINOR_VERSION, ISAL_PATCH_VERSION)
int isal_logtype_driver;
/* Verify and set private xform parameters */
@ -684,6 +690,8 @@ compdev_isal_create(const char *name, struct rte_vdev_device *vdev,
dev->dequeue_burst = isal_comp_pmd_dequeue_burst;
dev->enqueue_burst = isal_comp_pmd_enqueue_burst;
ISAL_PMD_LOG(INFO, "\nISA-L library version used: "ISAL_VERSION_STRING);
return 0;
}