View | Details | Raw Unified | Return to bug 194197
Collapse All | Expand All

(-)sys/conf/options (+2 lines)
Lines 405-410 Link Here
405
ETHER_8023		opt_ef.h
405
ETHER_8023		opt_ef.h
406
ETHER_II		opt_ef.h
406
ETHER_II		opt_ef.h
407
ETHER_SNAP		opt_ef.h
407
ETHER_SNAP		opt_ef.h
408
IGB_LEGACY_TX		opt_igb.h
409
IXGBE_LEGACY_TX		opt_ixgbe.h
408
INET			opt_inet.h
410
INET			opt_inet.h
409
INET6			opt_inet6.h
411
INET6			opt_inet6.h
410
IPDIVERT
412
IPDIVERT
(-)sys/dev/e1000/if_igb.c (+1 lines)
Lines 33-38 Link Here
33
/*$FreeBSD$*/
33
/*$FreeBSD$*/
34
34
35
35
36
#include "opt_igb.h"
36
#include "opt_inet.h"
37
#include "opt_inet.h"
37
#include "opt_inet6.h"
38
#include "opt_inet6.h"
38
39
(-)sys/dev/e1000/if_igb.h (+2 lines)
Lines 35-40 Link Here
35
#ifndef _IGB_H_DEFINED_
35
#ifndef _IGB_H_DEFINED_
36
#define _IGB_H_DEFINED_
36
#define _IGB_H_DEFINED_
37
37
38
#include "opt_igb.h"
39
38
/* Tunables */
40
/* Tunables */
39
41
40
/*
42
/*
(-)sys/dev/ixgbe/ixgbe.c (+1 lines)
Lines 33-38 Link Here
33
/*$FreeBSD$*/
33
/*$FreeBSD$*/
34
34
35
35
36
#include "opt_ixgbe.h"
36
#include "opt_inet.h"
37
#include "opt_inet.h"
37
#include "opt_inet6.h"
38
#include "opt_inet6.h"
38
#include "ixgbe.h"
39
#include "ixgbe.h"
(-)sys/dev/ixgbe/ixgbe.h (+1 lines)
Lines 36-41 Link Here
36
#ifndef _IXGBE_H_
36
#ifndef _IXGBE_H_
37
#define _IXGBE_H_
37
#define _IXGBE_H_
38
38
39
#include "opt_ixgbe.h"
39
40
40
#include <sys/param.h>
41
#include <sys/param.h>
41
#include <sys/systm.h>
42
#include <sys/systm.h>

Return to bug 194197