git: 68b0f84a88ed - stable/13 - epair: Remove unneeded includes and sort some of the rest
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 20 Mar 2023 13:33:45 UTC
The branch stable/13 has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=68b0f84a88ed5c0136db1447c181e170db76c883
commit 68b0f84a88ed5c0136db1447c181e170db76c883
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2023-03-13 13:27:47 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2023-03-20 12:53:15 +0000
epair: Remove unneeded includes and sort some of the rest
No functional change intended.
MFC after: 1 week
(cherry picked from commit 29c9b1673305406dc64161aa7b565a296526fa67)
---
sys/net/if_epair.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/sys/net/if_epair.c b/sys/net/if_epair.c
index aebcaca0cd2f..a2bc0044f7c9 100644
--- a/sys/net/if_epair.c
+++ b/sys/net/if_epair.c
@@ -45,7 +45,9 @@ __FBSDID("$FreeBSD$");
#include "opt_inet6.h"
#include <sys/param.h>
+#include <sys/bus.h>
#include <sys/hash.h>
+#include <sys/interrupt.h>
#include <sys/jail.h>
#include <sys/kernel.h>
#include <sys/libkern.h>
@@ -59,10 +61,6 @@ __FBSDID("$FreeBSD$");
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/taskqueue.h>
-#include <sys/types.h>
-#include <sys/buf_ring.h>
-#include <sys/bus.h>
-#include <sys/interrupt.h>
#include <net/bpf.h>
#include <net/ethernet.h>