git: 408c514f7398 - main - linuxkpi: Fix the "error: unknown type name 'u32'" compilation issue when building the Intel QAT/QuickAssist driver.

Neel Chauhan nc at FreeBSD.org
Sat Jan 9 23:28:07 UTC 2021


The branch main has been updated by nc (ports committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=408c514f7398c457c580465ede2107a0325126ef

commit 408c514f7398c457c580465ede2107a0325126ef
Author:     Neel Chauhan <nc at FreeBSD.org>
AuthorDate: 2021-01-09 23:25:55 +0000
Commit:     Neel Chauhan <nc at FreeBSD.org>
CommitDate: 2021-01-09 23:27:04 +0000

    linuxkpi: Fix the "error: unknown type name 'u32'" compilation issue when
    building the Intel QAT/QuickAssist driver.
    
    Approved by:            hselasky, kib
    Differential Revision:  https://reviews.freebsd.org/D28055
---
 sys/compat/linuxkpi/common/include/linux/random.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/compat/linuxkpi/common/include/linux/random.h b/sys/compat/linuxkpi/common/include/linux/random.h
index 14ea88237e1b..31d8b996aa0b 100644
--- a/sys/compat/linuxkpi/common/include/linux/random.h
+++ b/sys/compat/linuxkpi/common/include/linux/random.h
@@ -32,6 +32,7 @@
 #ifndef _LINUX_RANDOM_H_
 #define	_LINUX_RANDOM_H_
 
+#include <linux/types.h>
 #include <sys/random.h>
 #include <sys/libkern.h>
 


More information about the dev-commits-src-all mailing list