summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_et.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix a use-after-free, from Maxime Villard w/ Brainy.mpi2015-07-081-2/+1
* Increment if_ipackets in if_input().mpi2015-06-241-2/+1
* Convert moar drivers to if_input().mpi2015-04-301-10/+5
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* unifdef INETtedu2014-12-221-5/+1
* Set the MRU to a full size frame instead of basing it on the MTU.brad2014-08-301-6/+5
* Fewer <netinet/in_systm.h>mpi2014-07-221-3/+1
* Most network drivers include netinet/in_var.h, but apparently theybluhm2013-08-071-2/+1
* remove the unused if_init callback in struct ifnetjsg2010-08-271-2/+1
* BUS_DMA_ZERO instead of alloc, map, bzero.oga2010-05-191-4/+2
* M_DUP_PKTHDR() define -> m_dup_pkthdr() function to properly dealkrw2009-09-131-29/+2
* A few more simple cases of shutdown hooks which only call xxstop, whenderaadt2009-08-101-15/+1
* make various strings ("can't map mem space" and similar) more consistentsthen2009-03-291-3/+3
* Eliminate the redundant bits of code for MTU and multicast handlingbrad2008-11-281-19/+10
* fix potential null dereference.chl2008-11-041-5/+3
* First step towards cleaning up the Ethernet driver ioctl handling.brad2008-10-021-8/+2
* Convert timeout_add() calls using multiples of hz to timeout_add_sec()blambert2008-09-101-4/+4
* remove an unused function. ok jsg@kevlo2008-07-111-11/+3
* Unmapping memory from pci_mapreg_map() on detach lets usjsg2008-06-081-4/+8
* Make et(4) detachable, help tracking down a problem thatjsg2008-06-081-4/+14
* Count output packets.brad2008-05-261-1/+2
* Simplify the combination use of pci_mapreg_type()/pci_mapreg_map() asbrad2008-05-231-9/+3
* ifp->if_start -> et_startbrad2008-02-081-2/+2
* - remove redundant setting of if_mtu as this is set by ether_ifattach().brad2008-02-031-2/+3
* So instead of triggering a tx interrupt for each packet issue one forclaudio2007-11-261-4/+22
* Do a TX interrupt for each packet instead of every 126th one. This willclaudio2007-11-251-2/+2
* Strip the CRC in rxeof()jsg2007-11-251-7/+14
* Correctly setup the tx descriptor by using the right mapping infos.claudio2007-11-251-5/+5
* Initial port of Sepherosa Ziehau's DragonFlyBSD driversjsg2007-10-301-0/+2113