diff options
| author | Rupesh Pilania <rupeshpilania@gmail.com> | 2025-12-29 16:13:48 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2025-12-29 16:13:53 +0000 |
| commit | 6ea05372bea5bdb19ca329c27c4c6510cbeed7c8 (patch) | |
| tree | 52238e58be3cc172df9ef741bcfe7b2d56471660 | |
| parent | daef625cf884dea33d50ad7a0e2da0879a442495 (diff) | |
qat: Export missing symbols in qat_common
Some symbols required by dependent modules were missing from
qat_common.ko and qat_api.ko, causing load failures when local symbol
resolution is disabled.
PR: 291271
Reviewed by: zlei, markj
Differential Revision: https://reviews.freebsd.org/D54107
| -rw-r--r-- | sys/modules/qat/qat_api/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/qat/qat_common/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/qat/qat_api/Makefile b/sys/modules/qat/qat_api/Makefile index 24fbcb46a987..22802c87758d 100644 --- a/sys/modules/qat/qat_api/Makefile +++ b/sys/modules/qat/qat_api/Makefile @@ -84,7 +84,7 @@ opt_qat.h: @echo "#define QAT_DISABLE_SAFE_DC_MODE 1" >> ${.TARGET} .endif .endif - +EXPORT_SYMS=YES .include <bsd.kmod.mk> CWARNFLAGS+= -Wno-cast-qual diff --git a/sys/modules/qat/qat_common/Makefile b/sys/modules/qat/qat_common/Makefile index af8ce86d6be2..541a5da91d40 100644 --- a/sys/modules/qat/qat_common/Makefile +++ b/sys/modules/qat/qat_common/Makefile @@ -40,5 +40,5 @@ opt_qat.h: @echo "#define QAT_DISABLE_SAFE_DC_MODE 1" >> ${.TARGET} .endif .endif - +EXPORT_SYMS=YES .include <bsd.kmod.mk> |
