Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Oct 2020 10:52:10 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r366994 - head/sys/net
Message-ID:  <202010241052.09OAqAUZ091796@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010241052.09OAqAUZ091796>