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

lib/lvol: add a map file.



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


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 7b8a717f
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 = lvol.c
LIBNAME = lvol

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

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

lib/lvol/spdk_lvol.map

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

	# public functions
	spdk_lvs_opts_init;
	spdk_lvs_init;
	spdk_lvs_rename;
	spdk_lvs_unload;
	spdk_lvs_destroy;
	spdk_lvol_create;
	spdk_lvol_create_snapshot;
	spdk_lvol_create_clone;
	spdk_lvol_rename;
	spdk_lvol_deletable;
	spdk_lvol_destroy;
	spdk_lvol_close;
	spdk_lvol_get_io_channel;
	spdk_lvs_load;
	spdk_lvol_open;
	spdk_lvol_inflate;
	spdk_lvol_decouple_parent;

	# internal functions
	spdk_lvol_resize;
	spdk_lvol_set_read_only;

	local: *;
};
+2 −0
Original line number Diff line number Diff line
@@ -60,6 +60,8 @@ function confirm_abi_deps() {
	name = SPDK_LOG_LOG_RPC
[suppress_variable]
	name = SPDK_LOG_LOG
[suppress_variable]
	name = SPDK_LOG_LVOL
EOF

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