git: 6080e073dc5f - main - ip6_input: explicitly include <sys/eventhandler.h>
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 17 Aug 2022 21:56:10 UTC
The branch main has been updated by glebius:
URL: https://cgit.FreeBSD.org/src/commit/?id=6080e073dc5f73256000669c2f7e30821e5dd609
commit 6080e073dc5f73256000669c2f7e30821e5dd609
Author: Gleb Smirnoff <glebius@FreeBSD.org>
AuthorDate: 2022-08-17 21:54:46 +0000
Commit: Gleb Smirnoff <glebius@FreeBSD.org>
CommitDate: 2022-08-17 21:54:46 +0000
ip6_input: explicitly include <sys/eventhandler.h>
On most architectures/kernels it was included implicitly, but powerpc
MPC85XX got broken.
Fixes: 81a34d374ed6e5a7b14f24583bc8e3abfdc66306
---
sys/netinet6/ip6_input.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c
index 52c70292f920..fd184db1a985 100644
--- a/sys/netinet6/ip6_input.c
+++ b/sys/netinet6/ip6_input.c
@@ -90,6 +90,7 @@ __FBSDID("$FreeBSD$");
#include <sys/rmlock.h>
#include <sys/syslog.h>
#include <sys/sysctl.h>
+#include <sys/eventhandler.h>
#include <net/if.h>
#include <net/if_var.h>