diff --git a/module/accel/idxd/Makefile b/module/accel/idxd/Makefile index 121af3006..68ff4956e 100644 --- a/module/accel/idxd/Makefile +++ b/module/accel/idxd/Makefile @@ -34,6 +34,10 @@ SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..) include $(SPDK_ROOT_DIR)/mk/spdk.common.mk +SO_VER := 1 +SO_MINOR := 0 +SO_SUFFIX := $(SO_VER).$(SO_MINOR) + LIBNAME = accel_idxd C_SRCS = accel_engine_idxd.c accel_engine_idxd_rpc.c diff --git a/test/make/check_so_deps.sh b/test/make/check_so_deps.sh index ab2609d96..5c39bfae1 100755 --- a/test/make/check_so_deps.sh +++ b/test/make/check_so_deps.sh @@ -327,7 +327,7 @@ EOF if [ "$so_name_changed" != "No" ]; then if ! $found_abi_change; then # Unfortunately, libspdk_idxd made it into 20.04 without an SO suffix. TODO:: remove after 20.07 - if [ "$so_file" != "libspdk_idxd.so" ]; then + if [ "$so_file" != "libspdk_idxd.so" ] && [ "$so_file" != "libspdk_accel_idxd.so" ]; then echo "SO name for $so_file changed without a change to abi. please revert that change." touch $fail_file fi