summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_de.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Do not clear IFF_UP, even in the error path, clearing IFF_RUNNINGmpi2017-03-081-2/+2
* move counting if_opackets next to counting if_obytes in if_enqueue.dlg2017-01-221-2/+1
* G/C IFQ_SET_READY().mpi2016-04-131-2/+1
* No trailers has been the default and only option for 20 years, yet sometedu2015-12-081-2/+2
* dont need to repeatedly set if_start to the same function.dlg2015-12-081-7/+1
* Network drivers should not include <net/route.h> or <net/netisr.h>mpi2015-11-251-2/+1
* replace IFF_OACTIVE manipulation with mpsafe operations.dlg2015-11-251-9/+9
* You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.mpi2015-11-241-2/+1
* The only network driver needing <net/if_types.h> is upl(4) for IFT_OTHER.mpi2015-11-241-2/+1
* you cant touch m_pkthdr in between ifq_deq_begin and ifq_deq_commit.dlg2015-11-231-12/+4
* shuffle struct ifqueue so in flight mbufs are protected by a mutex.dlg2015-11-201-66/+27
* use IFQ_IS_EMPTY to see if if_snd is empty, not IF_IS_EMPTYdlg2015-11-041-3/+3
* replace the ifqueues used for tulip_txq and _rxq with mbuf_lists.dlg2015-11-041-13/+15
* arp_ifinit() is no longer needed.mpi2015-10-251-12/+1
* There is no excuse for using dma_alloc(9) when a bus_dma_tag_t is available.kettenis2015-06-261-13/+7
* Ensure the setup block is DMA reachable.deraadt2015-06-251-8/+8
* Increment if_ipackets in if_input().mpi2015-06-241-2/+1
* Convert to if_input().mpi2015-05-151-21/+7
* Remove annoying comment mentionning ether_output().mpi2015-04-011-4/+1
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* unifdef INETtedu2014-12-221-3/+1
* remove uneeded route.h includesjsg2014-09-081-2/+1
* Fewer <netinet/in_systm.h>mpi2014-07-221-6/+1
* Remove some altq tentacles.mpi2014-04-221-2/+2
* another questionable "optimization": de used tulip_ifstart_one insteadhenning2014-04-191-26/+1
* Instead of comparing the lower and higher addresses of all the multicastmpi2013-11-261-15/+13
* Most network drivers include netinet/in_var.h, but apparently theybluhm2013-08-071-2/+1
* Prevent panic'ing on alpha after ifconfig'ing up an unplugged de interface,miod2013-06-041-23/+28
* use IF_LEN/IFQ_LEN to access and ifqueue's length field. ryan okhenning2011-07-071-3/+3
* cosnistently use IFQ_SET_MAXLEN, surfaced in a discussion with + ok bluhmhenning2011-07-061-2/+2
* use nitems(); no binary change for drivers that are compiled on amd64.jasper2011-04-031-2/+2
* Stop doing shutdown hooks in network drivers where possible. We alreadyderaadt2010-09-201-17/+1
* these files don't need to include proc.h anymore. ok oga for agptedu2010-04-081-2/+1
* remove trash left in debug changes; lindroos@nls.fideraadt2009-10-021-2/+1
* - consistify cfdriver for the ethernet drivers (0 -> NULL)jasper2009-08-131-2/+2
* Tidy up allocation of transmit DMA maps and generalize it to alsonaddy2009-06-191-32/+56
* Eliminate the redundant bits of code for MTU and multicast handlingbrad2008-11-281-29/+7
* First step towards cleaning up the Ethernet driver ioctl handling.brad2008-10-021-8/+2
* Add a workaround against a NULL pointer dereference on alpha whenmiod2008-03-041-1/+7
* Remove unused tulip_21041_media_noprobe() function and tulip_21041np_boardswbrad2007-09-191-18/+1
* Consistently spell FALLTHROUGH to appease lint.jsg2007-02-141-3/+3
* print the chipset revision too.brad2006-07-081-9/+1
* shorten dmesg entry from two lines to one.brad2006-07-081-49/+29
* tulip_pci_(probe/attach) -> tulip_(probe/attach)brad2006-07-081-48/+37
* remove splnet from attach routine.brad2006-07-081-4/+1
* de-static and formatting.brad2006-06-011-444/+381
* unknown ioctl is ENOTTY not EINVALjason2006-05-281-4/+3
* fix non-ALTQ case.brad2006-05-091-1/+29
* restore ALTQ support which was lost with rev 1.87brad2006-05-061-28/+48
* allow bpf(4) to ignore packets based on their direction (inbound ordjm2006-03-251-6/+7