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

lib/ftl: Add a map file.



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


Community-CI: Mellanox Build Bot
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarAleksey Marchuk <alexeymar@mellanox.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
parent 844e4602
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -41,6 +41,8 @@ SO_SUFFIX := $(SO_VER).$(SO_MINOR)
C_SRCS = ftl_band.c ftl_core.c ftl_debug.c ftl_io.c ftl_reloc.c \
	 ftl_restore.c ftl_init.c ftl_trace.c

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

LIBNAME = ftl

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

lib/ftl/spdk_ftl.map

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

	# public functions
	spdk_ftl_dev_init;
	spdk_ftl_dev_free;
	spdk_ftl_conf_init_defaults;
	spdk_ftl_dev_get_attrs;
	spdk_ftl_read;
	spdk_ftl_write;
	spdk_ftl_flush;

	local: *;
};
+4 −0
Original line number Diff line number Diff line
@@ -35,6 +35,10 @@ function confirm_abi_deps() {
	name = SPDK_LOG_BLOBFS_BDEV_RPC
[suppress_variable]
	name = SPDK_LOG_APP_RPC
[suppress_variable]
	name = SPDK_LOG_FTL_CORE
[suppress_variable]
	name = SPDK_LOG_FTL_INIT

EOF