in6: move include

Move the include for sysctl.h out of the middle of the file to the
includes at the beginning.  This is will make it easier to add new
sysctls.

No functional changes.

MFC after:	3 weeks
Sponsored by:	Netflix
This commit is contained in:
Bjoern A. Zeeb 2019-11-19 21:14:15 +00:00
parent d70b206955
commit f8d4f9bce9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=354865

View File

@ -84,6 +84,7 @@ __FBSDID("$FreeBSD$");
#include <sys/kernel.h>
#include <sys/lock.h>
#include <sys/rmlock.h>
#include <sys/sysctl.h>
#include <sys/syslog.h>
#include <net/if.h>
@ -2024,8 +2025,6 @@ in6_if2idlen(struct ifnet *ifp)
}
}
#include <sys/sysctl.h>
struct in6_llentry {
struct llentry base;
};