git: 60855d899315 - stable/14 - kern/sys_eventfd.c: fix includes
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 20 Mar 2025 03:14:16 UTC
The branch stable/14 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=60855d899315a2f5a7877a095b434c1c98114e24 commit 60855d899315a2f5a7877a095b434c1c98114e24 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2025-02-23 20:35:06 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2025-03-20 03:13:38 +0000 kern/sys_eventfd.c: fix includes (cherry picked from commit 0a7c164d91a85a0cc5cfb9ea1afb93c5e4f2e628) --- sys/kern/sys_eventfd.c | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/sys/kern/sys_eventfd.c b/sys/kern/sys_eventfd.c index 20e73f9c6b1b..c2a0f67cae85 100644 --- a/sys/kern/sys_eventfd.c +++ b/sys/kern/sys_eventfd.c @@ -25,28 +25,25 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -#include <sys/param.h> #include <sys/systm.h> -#include <sys/kernel.h> -#include <sys/malloc.h> -#include <sys/limits.h> -#include <sys/lock.h> -#include <sys/mutex.h> -#include <sys/types.h> -#include <sys/user.h> +#include <sys/event.h> +#include <sys/eventfd.h> +#include <sys/errno.h> #include <sys/fcntl.h> #include <sys/file.h> #include <sys/filedesc.h> #include <sys/filio.h> -#include <sys/stat.h> -#include <sys/errno.h> -#include <sys/event.h> +#include <sys/kernel.h> +#include <sys/limits.h> +#include <sys/lock.h> +#include <sys/malloc.h> +#include <sys/mutex.h> #include <sys/poll.h> #include <sys/proc.h> -#include <sys/uio.h> #include <sys/selinfo.h> -#include <sys/eventfd.h> +#include <sys/stat.h> +#include <sys/uio.h> +#include <sys/user.h> #include <security/audit/audit.h>