svn commit: r350559 - head/sys/netinet6

Bjoern A. Zeeb bz at FreeBSD.org
Sat Aug 3 16:56:45 UTC 2019


Author: bz
Date: Sat Aug  3 16:56:44 2019
New Revision: 350559
URL: https://svnweb.freebsd.org/changeset/base/350559

Log:
  frag6.c: fix includes
  
  Bring back systm.h after r350532 and banish errno.h, time.h, and
  machine/atomic.h.
  
  Reported by:	bde (Thank you!)
  Pointyhat to:	bz
  MFC after:	12 weeks
  X-MFC:		with r350532
  Sponsored by:	Netflix

Modified:
  head/sys/netinet6/frag6.c

Modified: head/sys/netinet6/frag6.c
==============================================================================
--- head/sys/netinet6/frag6.c	Sat Aug  3 16:13:44 2019	(r350558)
+++ head/sys/netinet6/frag6.c	Sat Aug  3 16:56:44 2019	(r350559)
@@ -37,8 +37,8 @@ __FBSDID("$FreeBSD$");
 #include "opt_rss.h"
 
 #include <sys/param.h>
+#include <sys/systm.h>
 #include <sys/domain.h>
-#include <sys/errno.h>
 #include <sys/eventhandler.h>
 #include <sys/hash.h>
 #include <sys/kernel.h>
@@ -46,11 +46,8 @@ __FBSDID("$FreeBSD$");
 #include <sys/mbuf.h>
 #include <sys/protosw.h>
 #include <sys/socket.h>
-#include <sys/time.h>
 #include <sys/sysctl.h>
 #include <sys/syslog.h>
-
-#include <machine/atomic.h>
 
 #include <net/if.h>
 #include <net/if_var.h>


More information about the svn-src-all mailing list