Author: hselasky
Date: Sat Oct 24 10:52:09 2020
New Revision: 366994
URL: https://svnweb.freebsd.org/changeset/base/366994

Log:
  Fix order of header files:
  sys/systm.h should come right after sys/param.h
  
  Suggested by:         kib@
  Differential Revision:        https://reviews.freebsd.org/D26254
  MFC after:            1 week
  Sponsored by:         Mellanox Technologies // NVIDIA Networking

Modified:
  head/sys/net/if_infiniband.c

Modified: head/sys/net/if_infiniband.c
==============================================================================
--- head/sys/net/if_infiniband.c        Sat Oct 24 10:23:21 2020        
(r366993)
+++ head/sys/net/if_infiniband.c        Sat Oct 24 10:52:09 2020        
(r366994)
@@ -30,6 +30,7 @@
 __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
+#include <sys/systm.h>
 #include <sys/devctl.h>
 #include <sys/eventhandler.h>
 #include <sys/kernel.h>
@@ -37,7 +38,6 @@ __FBSDID("$FreeBSD$");
 #include <sys/module.h>
 #include <sys/socket.h>
 #include <sys/sysctl.h>
-#include <sys/systm.h>
 
 #include <net/bpf.h>
 #include <net/ethernet.h>
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to