summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_stge.c
AgeCommit message (Expand)Author
2024-05-24remove unneeded includes; ok miod@Jonathan Gray
2023-11-10Make ifq and ifiq interface MP safe.Alexander Bluhm
2022-03-11Constify struct cfattach.Martin Pieuchot
2022-01-09spellingJonathan Gray
2020-07-10Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API.Patrick Wildt
2017-01-22move counting if_opackets next to counting if_obytes in if_enqueue.David Gwynne
2016-11-29m_free() and m_freem() test for NULL. Simplify callers which had their ownJonathan Gray
2016-04-13G/C IFQ_SET_READY().Martin Pieuchot
2015-11-25replace IFF_OACTIVE manipulation with mpsafe operations.David Gwynne
2015-11-24You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.Martin Pieuchot
2015-11-20shuffle struct ifqueue so in flight mbufs are protected by a mutex.David Gwynne
2015-11-14Do not include <net/if_vlan_var.h> when it's not necessary.Martin Pieuchot
2015-10-25arp_ifinit() is no longer needed.Martin Pieuchot
2015-06-24Increment if_ipackets in if_input().Martin Pieuchot
2015-04-30Convert moar drivers to if_input().Martin Pieuchot
2015-03-14Remove some includes include-what-you-use claims don'tJonathan Gray
2014-12-22unifdef INETTed Unangst
2014-12-08Remove a few foo_start() calls within ioctl handlers. Odd spot to haveBrad Smith
2014-07-22Fewer <netinet/in_systm.h>Martin Pieuchot
2013-08-07Most network drivers include netinet/in_var.h, but apparently theyAlexander Bluhm
2012-10-18Convert a number of old private copies of code which predatesTheo de Raadt
2011-04-05mechanic rename M_{TCP|UDP}V4_CSUM_OUT -> M_{TCP|UDP}_CSUM_OUTHenning Brauer
2009-12-07Fix a spacing nit, and replace a magic number with ETHER_ADDR_LEN.Stuart Henderson
2009-12-03Use 16-bit writes instead of 8-bit writes for writing theJasper Lievisse Adriaanse
2009-08-13- consistify cfdriver for the ethernet drivers (0 -> NULL)Jasper Lievisse Adriaanse
2009-08-10A few more simple cases of shutdown hooks which only call xxstop, whenTheo de Raadt
2009-07-28Replace "XXX ? from linux" with a descriptive comment. From Brad.Stuart Henderson
2009-07-26Fix flow control support:Mark Kettenis
2009-07-21Rewrite ioctl parts and rx filter handling. From Brad, tested byStuart Henderson
2008-11-28Eliminate the redundant bits of code for MTU and multicast handlingBrad Smith
2008-11-09Introduce bpf_mtap_ether(), which for the benefit of bpf listenersChristian Weisgerber
2008-10-22Fix a typo with the VLAN code.Brad Smith
2008-10-22Add support TX VLAN tag insertion and RX VLAN tag stripping.Brad Smith
2008-10-02First step towards cleaning up the Ethernet driver ioctl handling.Brad Smith
2008-09-10Convert timeout_add() calls using multiples of hz to timeout_add_sec()Bret Lambert
2008-06-26First pass at removing clauses 3 and 4 from NetBSD licenses.Ray Lai
2007-10-23Sort the PCI id table and remove a comment which is no longer true.Brad Smith
2007-10-22only output on situations where power state is D3. unify the message inFederico G. Schwindt
2007-10-22Use pci_set_powerstate(), shrinking the code and unifying the differentFederico G. Schwindt
2006-12-29Pass MIIF_DOPAUSE to mii_attach().Mark Kettenis
2006-10-26Set Rx early threshold and Tx DMA thesholds.Brad Smith
2006-10-23use the Sundance TC9021 ids. this was done so that stge(4) will attachBrad Smith
2006-08-04simplify interface flags ioctl handler.Brad Smith
2006-07-12only call the init routine if the interface is not already running.Brad Smith
2006-07-12move a few structures and macros over to the header file.Brad Smith
2006-07-12use config space macros.Brad Smith
2006-07-12check ifp->if_hardmtu instead of ETHERMTU.Brad Smith
2006-07-12increase the maximum Jumbo frame length and correct the STGE_MaxFrameSizeBrad Smith
2006-06-11show the number of DMA segments that were in the packet that just failedBrad Smith
2006-05-28- remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.Brad Smith