summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_stge.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* move counting if_opackets next to counting if_obytes in if_enqueue.dlg2017-01-221-4/+1
* m_free() and m_freem() test for NULL. Simplify callers which had their ownjsg2016-11-291-3/+2
* 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-5/+8
* 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-5/+1
* Increment if_ipackets in if_input().mpi2015-06-241-4/+1
* Convert moar drivers to if_input().mpi2015-04-301-13/+5
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* unifdef INETtedu2014-12-221-5/+1
* Remove a few foo_start() calls within ioctl handlers. Odd spot to havebrad2014-12-081-4/+1
* 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
* Convert a number of old private copies of code which predatesderaadt2012-10-181-12/+2
* mechanic rename M_{TCP|UDP}V4_CSUM_OUT -> M_{TCP|UDP}_CSUM_OUThenning2011-04-051-3/+3
* Fix a spacing nit, and replace a magic number with ETHER_ADDR_LEN.sthen2009-12-071-3/+3
* Use 16-bit writes instead of 8-bit writes for writing thejasper2009-12-031-8/+13
* - consistify cfdriver for the ethernet drivers (0 -> NULL)jasper2009-08-131-2/+2
* A few more simple cases of shutdown hooks which only call xxstop, whenderaadt2009-08-101-24/+1
* Replace "XXX ? from linux" with a descriptive comment. From Brad.sthen2009-07-281-2/+3
* Fix flow control support:kettenis2009-07-261-8/+13
* Rewrite ioctl parts and rx filter handling. From Brad, tested bysthen2009-07-211-73/+46
* Eliminate the redundant bits of code for MTU and multicast handlingbrad2008-11-281-26/+8
* Introduce bpf_mtap_ether(), which for the benefit of bpf listenersnaddy2008-11-091-3/+3
* Fix a typo with the VLAN code.brad2008-10-221-2/+2
* Add support TX VLAN tag insertion and RX VLAN tag stripping.brad2008-10-221-16/+39
* First step towards cleaning up the Ethernet driver ioctl handling.brad2008-10-021-11/+3
* Convert timeout_add() calls using multiples of hz to timeout_add_sec()blambert2008-09-101-3/+3
* First pass at removing clauses 3 and 4 from NetBSD licenses.ray2008-06-261-8/+1
* Sort the PCI id table and remove a comment which is no longer true.brad2007-10-231-9/+5
* only output on situations where power state is D3. unify the message infgsch2007-10-221-12/+9
* Use pci_set_powerstate(), shrinking the code and unifying the differentfgsch2007-10-221-12/+7
* Pass MIIF_DOPAUSE to mii_attach().kettenis2006-12-291-2/+2
* Set Rx early threshold and Tx DMA thesholds.brad2006-10-261-3/+10
* use the Sundance TC9021 ids. this was done so that stge(4) will attachbrad2006-10-231-3/+3
* simplify interface flags ioctl handler.brad2006-08-041-7/+3
* only call the init routine if the interface is not already running.brad2006-07-121-17/+16
* move a few structures and macros over to the header file.brad2006-07-121-150/+1
* use config space macros.brad2006-07-121-91/+76
* check ifp->if_hardmtu instead of ETHERMTU.brad2006-07-121-2/+2
* increase the maximum Jumbo frame length and correct the STGE_MaxFrameSizebrad2006-07-121-1/+4
* show the number of DMA segments that were in the packet that just failedbrad2006-06-111-3/+3
* - remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.brad2006-05-281-2/+2
* unknown ioctl is ENOTTY not EINVALjason2006-05-281-2/+2
* allow bpf(4) to ignore packets based on their direction (inbound ordjm2006-03-251-3/+3
* do not inline pci_mapreg_map() anymore as it is olrite now; brad@ okmickey2005-09-111-5/+7
* Don't use a global variable to indicate that we arebrad2005-09-111-5/+6
* add support for Sundance ST1023 Gigabit chipset.brad2005-07-281-18/+33