Module Name:    src
Committed By:   riastradh
Date:           Sun Oct 15 10:28:23 UTC 2023

Modified Files:
        src/sys/kern: kern_mutex.c

Log Message:
kern_mutex.c: Sort includes.  No functional change intended.


To generate a diff of this commit:
cvs rdiff -u -r1.111 -r1.112 src/sys/kern/kern_mutex.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_mutex.c
diff -u src/sys/kern/kern_mutex.c:1.111 src/sys/kern/kern_mutex.c:1.112
--- src/sys/kern/kern_mutex.c:1.111	Sun Oct 15 10:27:11 2023
+++ src/sys/kern/kern_mutex.c	Sun Oct 15 10:28:23 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_mutex.c,v 1.111 2023/10/15 10:27:11 riastradh Exp $	*/
+/*	$NetBSD: kern_mutex.c,v 1.112 2023/10/15 10:28:23 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2002, 2006, 2007, 2008, 2019, 2023
@@ -41,23 +41,24 @@
 #define	__MUTEX_PRIVATE
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_mutex.c,v 1.111 2023/10/15 10:27:11 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_mutex.c,v 1.112 2023/10/15 10:28:23 riastradh Exp $");
 
 #include <sys/param.h>
+
 #include <sys/atomic.h>
-#include <sys/proc.h>
+#include <sys/cpu.h>
+#include <sys/intr.h>
+#include <sys/kernel.h>
+#include <sys/lock.h>
+#include <sys/lockdebug.h>
 #include <sys/mutex.h>
+#include <sys/proc.h>
+#include <sys/pserialize.h>
 #include <sys/sched.h>
 #include <sys/sleepq.h>
+#include <sys/syncobj.h>
 #include <sys/systm.h>
-#include <sys/lockdebug.h>
-#include <sys/kernel.h>
-#include <sys/intr.h>
-#include <sys/lock.h>
 #include <sys/types.h>
-#include <sys/cpu.h>
-#include <sys/pserialize.h>
-#include <sys/syncobj.h>
 
 #include <dev/lockstat.h>
 

Reply via email to