git: 89e5ef8917af - main - Fix kernel build after 754cb545b68ba0a1643792763d000018ffe2afec .
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 04 Oct 2022 15:13:52 UTC
The branch main has been updated by hselasky:
URL: https://cgit.FreeBSD.org/src/commit/?id=89e5ef8917af900558c2d275f5d5c4c703520ead
commit 89e5ef8917af900558c2d275f5d5c4c703520ead
Author: Hans Petter Selasky <hselasky@FreeBSD.org>
AuthorDate: 2022-10-04 15:09:07 +0000
Commit: Hans Petter Selasky <hselasky@FreeBSD.org>
CommitDate: 2022-10-04 15:13:17 +0000
Fix kernel build after 754cb545b68ba0a1643792763d000018ffe2afec .
By adding missing include file for powerpc64, QORIQ64.
Differential Revision: https://reviews.freebsd.org/D36565
MFC after: 1 week
Sponsored by: NVIDIA Networking
---
sys/ddb/db_sym.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c
index 8883d84fcace..43a0b5447479 100644
--- a/sys/ddb/db_sym.c
+++ b/sys/ddb/db_sym.c
@@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/pcpu.h>
+#include <sys/proc.h>
#include <sys/smp.h>
#include <sys/sysent.h>