summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_lge.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Argument order fix for MCLGETI.kevlo2019-09-251-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
* replace IFF_OACTIVE manipulation with mpsafe operations.dlg2015-11-251-6/+7
* You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.mpi2015-11-241-2/+1
* shuffle struct ifqueue so in flight mbufs are protected by a mutex.dlg2015-11-201-3/+4
* arp_ifinit() is no longer needed.mpi2015-10-251-4/+1
* Increment if_ipackets in if_input().mpi2015-06-241-3/+1
* Now that if_input() set the receiving interface pointer on mbufs for usmpi2015-04-131-3/+2
* Convert to if_input().mpi2015-04-081-11/+5
* unifdef INETtedu2014-12-221-5/+1
* replace the custom jumbo allocator with MCLGETI.dlg2014-08-201-168/+3
* Fewer <netinet/in_systm.h>mpi2014-07-221-3/+1
* Instead of comparing the lower and higher addresses of all the multicastmpi2013-11-261-6/+4
* Use %z* for size_tsf2013-10-011-3/+3
* get rid of the copy argument in m_devget that let you provide andlg2013-08-211-2/+2
* Most network drivers include netinet/in_var.h, but apparently theybluhm2013-08-071-2/+1
* Remove setting an initial assumed baudrate upon driver attach which is notbrad2012-11-291-2/+1
* Convert a number of old private copies of code which predatesderaadt2012-10-181-31/+2
* kill a few more casts that aren't helpful. ok krw miodtedu2011-06-221-6/+4
* use nitems(); no binary change for drivers that are compiled on amd64.jasper2011-04-031-2/+2
* BUS_DMA_ZERO instead of alloc, map, bzero.oga2010-05-191-3/+2
* - consistify cfdriver for the ethernet drivers (0 -> NULL)jasper2009-08-131-2/+2
* delete xxshutdown handlers that are never even hooked upderaadt2009-08-101-15/+1
* Eliminate the redundant bits of code for MTU and multicast handlingbrad2008-11-281-22/+11
* Fix a typo.brad2008-10-221-3/+3
* Convert timeout_add() calls using multiples of hz to timeout_add_sec()blambert2008-09-101-4/+4
* Simplify the combination use of pci_mapreg_type()/pci_mapreg_map() asbrad2008-05-231-9/+3
* typos; ok jmc@martynas2007-11-261-2/+2
* replace a few more instances of hand rolled code with thebrad2006-10-251-4/+3
* - remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.brad2006-05-281-4/+4
* unknown ioctl is ENOTTY not EINVALjason2006-05-281-2/+2
* remove FreeBSD specific code.brad2006-05-271-10/+2
* remove IFCAP_JUMBO_MTU interface capabilities flag and set if_hardmtu in a fewbrad2006-05-271-2/+3
* set if_jumbo_mtu and the IFCAP_JUMBO_MTU capabilities flag wherebrad2006-05-201-2/+2
* - check for IFF_RUNNING being set before calling lge_init().brad2006-04-301-27/+12
* allow bpf(4) to ignore packets based on their direction (inbound ordjm2006-03-251-3/+3
* de-register.brad2006-03-201-4/+4
* clear RUNNING here to do a full init.brad2005-12-241-1/+2
* assume vtophys(vaddr_t) just what all the other archs expect; no functional changemickey2005-11-231-6/+6
* fix bus_dmamem_alloc() failure case.brad2005-10-091-3/+2
* use pci_matchbyid().brad2005-10-091-8/+7
* stop bzero'ing the softc in lge_attach() and tada lge(4) now worksbrad2005-10-081-30/+6
* a little better like this.brad2005-10-081-8/+5
* - remove return at end of void functionbrad2005-10-081-132/+79
* remove unused VLAN headers.brad2005-10-081-6/+1
* IFCAP_VLAN_MTUbrad2005-10-071-1/+3
* revert this change.brad2005-10-071-2/+2
* sync lge_alloc_jumbo_mem() to look like bge's bge_alloc_jumbo_mem()brad2005-10-071-27/+44
* free bus_dma resources for all failures in attach.brad2005-10-071-13/+15