git: 29c9b1673305 - main - epair: Remove unneeded includes and sort some of the rest
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 13 Mar 2023 14:51:08 UTC
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=29c9b1673305406dc64161aa7b565a296526fa67 commit 29c9b1673305406dc64161aa7b565a296526fa67 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2023-03-13 13:27:47 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2023-03-13 14:45:35 +0000 epair: Remove unneeded includes and sort some of the rest No functional change intended. MFC after: 1 week --- 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 32fd3afe309b..aeed993249f5 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>