aboutsummaryrefslogtreecommitdiff
path: root/sys/netkey/keysock.c
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2001-05-01 08:13:21 +0000
committerMark Murray <markm@FreeBSD.org>2001-05-01 08:13:21 +0000
commitfb919e4d5a2c1baca52ac70d1064f140fffdda71 (patch)
tree62c0461c4eb61081648eebf963146193ebdc7398 /sys/netkey/keysock.c
parent8904de15a20f7c5372ec763d2b637b0997485466 (diff)
Undo part of the tangle of having sys/lock.h and sys/mutex.h included in
other "system" header files. Also help the deprecation of lockmgr.h by making it a sub-include of sys/lock.h and removing sys/lockmgr.h form kernel .c files. Sort sys/*.h includes where possible in affected files. OK'ed by: bde (with reservations)
Notes
Notes: svn path=/head/; revision=76166
Diffstat (limited to 'sys/netkey/keysock.c')
-rw-r--r--sys/netkey/keysock.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/netkey/keysock.c b/sys/netkey/keysock.c
index 92e70235b399..3f0f01d7776a 100644
--- a/sys/netkey/keysock.c
+++ b/sys/netkey/keysock.c
@@ -37,15 +37,17 @@
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/domain.h>
+#include <sys/errno.h>
#include <sys/kernel.h>
-#include <sys/sysctl.h>
-#include <sys/mbuf.h>
+#include <sys/lock.h>
#include <sys/malloc.h>
+#include <sys/mbuf.h>
+#include <sys/mutex.h>
+#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
-#include <sys/domain.h>
-#include <sys/protosw.h>
-#include <sys/errno.h>
+#include <sys/sysctl.h>
#include <machine/ipl.h>