Commit 12a3278a authored by Seth Howell's avatar Seth Howell Committed by Tomasz Zawadzki
Browse files

lib/ioat: add a map file.



Signed-off-by: default avatarSeth Howell <seth.howell@intel.com>
Change-Id: If7c9db16ab0408280a5ef789556f751f1e0cc8c7
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2210


Community-CI: Mellanox Build Bot
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent f6dcd815
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -41,4 +41,6 @@ SO_SUFFIX := $(SO_VER).$(SO_MINOR)
C_SRCS = ioat.c
LIBNAME = ioat

SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_ioat.map)

include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk

lib/ioat/spdk_ioat.map

0 → 100644
+16 −0
Original line number Diff line number Diff line
{
	global:

	# public functions
	spdk_ioat_probe;
	spdk_ioat_detach;
	spdk_ioat_build_copy;
	spdk_ioat_submit_copy;
	spdk_ioat_build_fill;
	spdk_ioat_submit_fill;
	spdk_ioat_flush;
	spdk_ioat_process_events;
	spdk_ioat_get_dma_capabilities;

	local: *;
};
+2 −0
Original line number Diff line number Diff line
@@ -36,6 +36,8 @@ function confirm_abi_deps() {
	cat << EOF > ${suppression_file}
[suppress_variable]
	name = SPDK_LOG_IDXD
[suppress_variable]
	name = SPDK_LOG_IOAT
EOF

	for object in "$libdir"/libspdk_*.so; do