Module Name: src Committed By: riastradh Date: Sun Oct 15 10:28:48 UTC 2023
Modified Files: src/sys/kern: kern_rwlock.c Log Message: kern_rwlock.c: Sort includes. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.75 -r1.76 src/sys/kern/kern_rwlock.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/kern/kern_rwlock.c diff -u src/sys/kern/kern_rwlock.c:1.75 src/sys/kern/kern_rwlock.c:1.76 --- src/sys/kern/kern_rwlock.c:1.75 Sun Oct 15 10:27:11 2023 +++ src/sys/kern/kern_rwlock.c Sun Oct 15 10:28:48 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: kern_rwlock.c,v 1.75 2023/10/15 10:27:11 riastradh Exp $ */ +/* $NetBSD: kern_rwlock.c,v 1.76 2023/10/15 10:28:48 riastradh Exp $ */ /*- * Copyright (c) 2002, 2006, 2007, 2008, 2009, 2019, 2020, 2023 @@ -45,24 +45,25 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: kern_rwlock.c,v 1.75 2023/10/15 10:27:11 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kern_rwlock.c,v 1.76 2023/10/15 10:28:48 riastradh Exp $"); #include "opt_lockdebug.h" #define __RWLOCK_PRIVATE #include <sys/param.h> + +#include <sys/atomic.h> +#include <sys/cpu.h> +#include <sys/lock.h> +#include <sys/lockdebug.h> #include <sys/proc.h> +#include <sys/pserialize.h> #include <sys/rwlock.h> #include <sys/sched.h> #include <sys/sleepq.h> -#include <sys/systm.h> -#include <sys/lockdebug.h> -#include <sys/cpu.h> -#include <sys/atomic.h> -#include <sys/lock.h> -#include <sys/pserialize.h> #include <sys/syncobj.h> +#include <sys/systm.h> #include <dev/lockstat.h>