aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorBartosz Sobczak <bartosz.sobczak@intel.com>2022-07-13 01:27:50 +0000
committerEric Joyner <erj@FreeBSD.org>2022-07-13 01:30:19 +0000
commitd8cce8145c39812cc31b50070c44d66ca21a5127 (patch)
treeff14e63825003d6365c988924a58b8cb8ed3a9d3 /sys/modules
parente706512a2b64fa2741144caf056c9fe923b60004 (diff)
downloadsrc-d8cce8145c39812cc31b50070c44d66ca21a5127.tar.gz
src-d8cce8145c39812cc31b50070c44d66ca21a5127.zip
ice(4): Add ice_rdma.c to module Makefile
When ice is built as a module, it can't be loaded due to unresolved symbol. Ensuring in Makefile that the ice_rdma.c is built fixes the problem. Signed-off-by: Bartosz Sobczak <bartosz.sobczak@intel.com> Signed-off-by: Eric Joyner <erj@freebsd.org> Reviewed by: erj@ Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D35687
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/ice/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/ice/Makefile b/sys/modules/ice/Makefile
index 510b9c755496..25774585c180 100644
--- a/sys/modules/ice/Makefile
+++ b/sys/modules/ice/Makefile
@@ -18,7 +18,7 @@ SRCS += ice_fw_logging.c
# RDMA Client interface
# TODO: Is this the right way to compile this?
-SRCS += irdma_di_if.c irdma_if.c
+SRCS += ice_rdma.c irdma_di_if.c irdma_if.c
CFLAGS.irdma_di_if.c += -I${SRCTOP}/sys/dev/ice
CFLAGS.irdma_if.c += -I${SRCTOP}/sys/dev/ice