aboutsummaryrefslogtreecommitdiff
path: root/sys/netsmb
diff options
context:
space:
mode:
authorSeigo Tanimura <tanimura@FreeBSD.org>2002-04-30 01:54:54 +0000
committerSeigo Tanimura <tanimura@FreeBSD.org>2002-04-30 01:54:54 +0000
commit960ed29c4b5c209a86a16b0dee145fd6d23390f8 (patch)
tree949babd3de74c52d345786e2c0f418722c5d6351 /sys/netsmb
parent28bc44195cf3ba3306e8665438921d18d0f40d81 (diff)
downloadsrc-960ed29c4b5c209a86a16b0dee145fd6d23390f8.tar.gz
src-960ed29c4b5c209a86a16b0dee145fd6d23390f8.zip
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.
Notes
Notes: svn path=/head/; revision=95759
Diffstat (limited to 'sys/netsmb')
-rw-r--r--sys/netsmb/smb_trantcp.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/netsmb/smb_trantcp.c b/sys/netsmb/smb_trantcp.c
index 1efd795abaeb..bb017bfcfe00 100644
--- a/sys/netsmb/smb_trantcp.c
+++ b/sys/netsmb/smb_trantcp.c
@@ -32,18 +32,21 @@
* $FreeBSD$
*/
#include <sys/param.h>
-#include <sys/systm.h>
+#include <sys/condvar.h>
#include <sys/kernel.h>
+#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
+#include <sys/poll.h>
#include <sys/proc.h>
#include <sys/protosw.h>
+#include <sys/signalvar.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
-#include <sys/poll.h>
-#include <sys/uio.h>
+#include <sys/sx.h>
#include <sys/sysctl.h>
-#include <sys/condvar.h>
+#include <sys/systm.h>
+#include <sys/uio.h>
#include <net/if.h>
#include <net/route.h>