summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_nge.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp.jan2020-12-121-2/+2
* Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API.patrick2020-07-101-6/+6
* 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
* Do not include <net/if_vlan_var.h> when it's not necessary.mpi2015-11-141-6/+1
* arp_ifinit() is no longer needed.mpi2015-10-251-11/+2
* More ifmedia64 fallout; that should be the last.miod2015-09-121-2/+3
* 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-183/+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
* - ansify some function definitionsbrad2013-11-181-99/+37
* 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/+6
* Stop doing shutdown hooks in network drivers where possible. We alreadyderaadt2010-09-201-16/+1
* BUS_DMA_ZERO instead of alloc, map, bzero.oga2010-05-191-3/+3
* - consistify cfdriver for the ethernet drivers (0 -> NULL)jasper2009-08-131-2/+2
* Eliminate the redundant bits of code for MTU and multicast handlingbrad2008-11-281-19/+10
* Introduce bpf_mtap_ether(), which for the benefit of bpf listenersnaddy2008-11-091-3/+3
* #if NVLAN > 0 in one more spot.brad2008-10-281-2/+4
* Implement a workaround for stupid hw when using VLAN stripping. Framesbrad2008-10-281-4/+18
* Don't need NVLAN > 0 checks around this code.brad2008-10-281-5/+1
* Re-add support TX VLAN tag insertion and RX VLAN tag stripping.brad2008-10-281-3/+20
* Switch the existing TX VLAN hardware support over to having thenaddy2008-10-161-10/+3
* Second pass of simple timeout_add -> timeout_add_sec conversionsblambert2008-10-151-3/+3
* First step towards cleaning up the Ethernet driver ioctl handling.brad2008-10-021-9/+2
* 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-3/+3
* unknown ioctl is ENOTTY not EINVALjason2006-05-281-2/+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
* allow bpf(4) to ignore packets based on their direction (inbound ordjm2006-03-251-3/+3
* remove the colon between "address" and the MAC address.brad2006-03-041-2/+2
* Do not bother enabling HW TX checksum offload since the code tobrad2006-02-161-12/+9
* assume vtophys(vaddr_t) just what all the other archs expect; no functional changemickey2005-11-231-9/+10
* - splimp -> splnetbrad2005-11-041-50/+46
* fix bus_dmamem_alloc() failure case.brad2005-10-091-3/+2