summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_ixgb.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.mpi2015-11-241-2/+1
|
* Do not include <net/if_vlan_var.h> when it's not necessary.mpi2015-11-141-6/+1
| | | | | | Because of the VLAN hacks in mpw(4) this file still contains the definition of "struct ifvlan" which depends on <sys/refcnt.h> which in turns pull <sys/atomic.h>...
* unifdef INET. missed a few headers in previous roundstedu2014-12-261-3/+1
|
* Fewer <netinet/in_systm.h>mpi2014-07-221-2/+1
|
* remove most of the boolean_t infection outside uvm/ddb/pmap; ok jsgderaadt2014-07-101-2/+4
|
* Most network drivers include netinet/in_var.h, but apparently theybluhm2013-08-071-2/+1
| | | | | don't have to. Just remove these include lines. Compiled on amd64 i386 sparc64; OK henning@ mikeb@
* These do not need powerhook functions.deraadt2010-08-271-2/+1
| | | | ok jsg
* remove proc.h include from uvm_map.h. This has far reaching effects, astedu2010-04-201-1/+2
| | | | | | sysctl.h was reliant on this particular include, and many drivers included sysctl.h unnecessarily. remove sysctl.h or add proc.h as needed. ok deraadt
* A few more simple cases of shutdown hooks which only call xxstop, whenderaadt2009-08-101-2/+1
| | | | we now know the interface has already been stopped
* Pre-allocate the TX DMA maps intead of creating and destroying a DMA mapbrad2006-11-281-5/+1
| | | | per packet sent.
* add a few commentsbrad2006-11-181-2/+5
|
* - merge em/ixgb_disable_promisc() into em/ixgb_set_promisc().brad2006-08-041-1/+2
| | | | - rearrange interface flags ioctl handler.
* Revert the last commit. The TX descriptor count does not really needbrad2006-07-211-3/+3
| | | | | to be set that high and it can cause problems with multiple adapters in the same system.
* up the TX descriptors to the max.brad2006-05-141-3/+3
|
* sprinkle some tabs.brad2006-05-011-95/+91
|
* Sync up to Intel's latest FreeBSD ixgb driver (5.0.1).brad2006-03-271-7/+4
| | | | From: Intel's web-site
* - set baud rate in ixgb_update_link_status().brad2006-02-261-11/+2
| | | | | - remove some FreeBSD code. - set IFM_NONE if no link.
* add a shutdown function and register it with shutdownhook_establish().brad2005-12-101-1/+2
|
* add Intel 10Gb Ethernet driver with support for LR/SR and CX4 cards.brad2005-11-141-0/+332
From: Intel's web-site ok deraadt@