Add the explicit include of vimage.h to another five .c files still

missing it.

Remove the "hidden" kernel only include of vimage.h from ip_var.h added
with the very first Vimage commit r181803 to avoid further kernel poisoning.
This commit is contained in:
Bjoern A. Zeeb 2009-06-17 12:44:11 +00:00
parent f02c9d2858
commit 7654a365db
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=194357
6 changed files with 5 additions and 3 deletions

View File

@ -78,6 +78,7 @@
#include <sys/priv.h>
#include <sys/kthread.h>
#include <sys/syscallsubr.h>
#include <sys/vimage.h>
#include <fs/fifofs/fifo.h>
#include <net/if.h>
#include <net/radix.h>

View File

@ -38,6 +38,7 @@
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/sysctl.h>
#include <sys/vimage.h>
#include <net/if.h>
#include <net/if_clone.h>

View File

@ -64,6 +64,7 @@
#include <sys/sockio.h>
#include <sys/sysctl.h>
#include <sys/systm.h>
#include <sys/vimage.h>
#include <net/ethernet.h>
#include <net/if.h>

View File

@ -50,6 +50,7 @@ __FBSDID("$FreeBSD$");
#include <sys/protosw.h>
#include <sys/queue.h>
#include <sys/sysctl.h>
#include <sys/vimage.h>
#include <net/if.h>
#include <net/route.h>

View File

@ -34,9 +34,6 @@
#define _NETINET_IP_VAR_H_
#include <sys/queue.h>
#ifdef _KERNEL
#include <sys/vimage.h>
#endif
/*
* Overlay for ip header used by other protocols (tcp, udp).

View File

@ -39,6 +39,7 @@
#include <sys/kernel.h>
#include <sys/protosw.h>
#include <sys/sysctl.h>
#include <sys/vimage.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>