Sort opt_foo.h #includes and add a missing blank line in ip_output().

This commit is contained in:
John Baldwin 2019-06-11 22:07:39 +00:00
parent dbdfb1fd19
commit 77a0144145
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=348966
2 changed files with 5 additions and 4 deletions

View File

@ -35,13 +35,13 @@
__FBSDID("$FreeBSD$");
#include "opt_inet.h"
#include "opt_ratelimit.h"
#include "opt_ipsec.h"
#include "opt_mbuf_stress_test.h"
#include "opt_mpath.h"
#include "opt_ratelimit.h"
#include "opt_route.h"
#include "opt_sctp.h"
#include "opt_rss.h"
#include "opt_sctp.h"
#include <sys/param.h>
#include <sys/systm.h>
@ -283,6 +283,7 @@ ip_output(struct mbuf *m, struct mbuf *opt, struct route *ro, int flags,
#if defined(IPSEC) || defined(IPSEC_SUPPORT)
int no_route_but_check_spd = 0;
#endif
M_ASSERTPKTHDR(m);
if (inp != NULL) {

View File

@ -67,11 +67,11 @@ __FBSDID("$FreeBSD$");
#include "opt_inet.h"
#include "opt_inet6.h"
#include "opt_ratelimit.h"
#include "opt_ipsec.h"
#include "opt_sctp.h"
#include "opt_ratelimit.h"
#include "opt_route.h"
#include "opt_rss.h"
#include "opt_sctp.h"
#include <sys/param.h>
#include <sys/kernel.h>