numam-dpdk/lib/librte_net/rte_net_version.map
Jasvinder Singh 986ff526fb net: add CRC computation API
APIs for selecting the architecure specific implementation and computing
the crc (16-bit and 32-bit CRCs) are added. For CRCs calculation, scalar
as well as x86 intrinsic(sse4.2) versions are implemented.

The scalar version is based on generic Look-Up Table(LUT) algorithm,
while x86 intrinsic version uses carry-less multiplication for
fast CRC computation.

Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2017-04-05 23:03:23 +02:00

15 lines
137 B
Plaintext

DPDK_16.11 {
global:
rte_net_get_ptype;
local: *;
};
DPDK_17.05 {
global:
rte_net_crc_calc;
rte_net_crc_set_alg;
} DPDK_16.11;