Date: Mon, 29 Dec 2025 16:14:36 +0000 From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Cc: Rupesh Pilania <rupeshpilania@gmail.com> Subject: git: 6ea05372bea5 - main - qat: Export missing symbols in qat_common Message-ID: <6952a8ec.211e7.bc6770e@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=6ea05372bea5bdb19ca329c27c4c6510cbeed7c8 commit 6ea05372bea5bdb19ca329c27c4c6510cbeed7c8 Author: Rupesh Pilania <rupeshpilania@gmail.com> AuthorDate: 2025-12-29 16:13:48 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2025-12-29 16:13:53 +0000 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 --- sys/modules/qat/qat_api/Makefile | 2 +- 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>home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6952a8ec.211e7.bc6770e>
