The branch main has been updated by markj:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=6ea05372bea5bdb19ca329c27c4c6510cbeed7c8

commit 6ea05372bea5bdb19ca329c27c4c6510cbeed7c8
Author:     Rupesh Pilania <[email protected]>
AuthorDate: 2025-12-29 16:13:48 +0000
Commit:     Mark Johnston <[email protected]>
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>

Reply via email to