module/accel_idxd: add an SO version.
This was overlooked when the module was merged. Signed-off-by: Seth Howell <seth.howell@intel.com> Change-Id: Ia7bd8710741bf5a82e7dd27925ecef1e59ed2938 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2360 Community-CI: Mellanox Build Bot Community-CI: Broadcom CI Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
parent
fe711156e8
commit
2c56786eca
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user