summaryrefslogtreecommitdiffstats
path: root/sys/netinet/raw_ip.c
diff options
context:
space:
mode:
authortanimura <tanimura@FreeBSD.org>2002-04-30 01:54:54 +0000
committertanimura <tanimura@FreeBSD.org>2002-04-30 01:54:54 +0000
commit89ec521d918cc9582731bc57c7d9d39010f3ccba (patch)
tree949babd3de74c52d345786e2c0f418722c5d6351 /sys/netinet/raw_ip.c
parentc52db1bfdfb3a9e4065f735384e8e23dd29a14c0 (diff)
downloadFreeBSD-src-89ec521d918cc9582731bc57c7d9d39010f3ccba.zip
FreeBSD-src-89ec521d918cc9582731bc57c7d9d39010f3ccba.tar.gz
Revert the change of #includes in sys/filedesc.h and sys/socketvar.h.
Requested by: bde Since locking sigio_lock is usually followed by calling pgsigio(), move the declaration of sigio_lock and the definitions of SIGIO_*() to sys/signalvar.h. While I am here, sort include files alphabetically, where possible.
Diffstat (limited to 'sys/netinet/raw_ip.c')
-rw-r--r--sys/netinet/raw_ip.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/netinet/raw_ip.c b/sys/netinet/raw_ip.c
index 3b44d02..86915fc 100644
--- a/sys/netinet/raw_ip.c
+++ b/sys/netinet/raw_ip.c
@@ -39,15 +39,18 @@
#include "opt_random_ip_id.h"
#include <sys/param.h>
-#include <sys/systm.h>
#include <sys/kernel.h>
+#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/proc.h>
#include <sys/protosw.h>
+#include <sys/signalvar.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
+#include <sys/sx.h>
#include <sys/sysctl.h>
+#include <sys/systm.h>
#include <vm/uma.h>
@@ -57,9 +60,9 @@
#define _IP_VHL
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/ip.h>
#include <netinet/in_pcb.h>
#include <netinet/in_var.h>
+#include <netinet/ip.h>
#include <netinet/ip_var.h>
#include <netinet/ip_mroute.h>
OpenPOWER on IntegriCloud