aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/nge
Commit message (Expand)AuthorAgeFilesLines
* spdx: initial adoption of licensing ID tags.Pedro F. Giffuni2017-11-182-0/+4
* sys/dev: minor spelling fixes.Pedro F. Giffuni2016-05-031-1/+1
* Receive filter configuration is done in nge_rxfilter(). RemovePyun YongHyeon2015-01-121-23/+2
* Mechanically convert to if_inc_counter().Gleb Smirnoff2014-09-181-11/+12
* Use define from if_var.h to access a field inside struct if_data,Gleb Smirnoff2014-08-301-1/+1
* Fix various NIC drivers to properly cleanup static DMA resources.John Baldwin2014-06-111-8/+6
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-041-2/+2
* Remove duplicate const specifiers in many drivers (I hope I got all ofDimitry Andric2012-11-051-1/+1
* - There's no need to overwrite the default device method with the defaultMarius Strobl2011-11-221-5/+1
* - Import the common MII bitbang'ing code from NetBSD and convert drivers toMarius Strobl2011-11-012-203/+51
* Close a race where SIOCGIFMEDIA ioctl get inconsistent link status.Pyun YongHyeon2011-10-171-1/+1
* - Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOPMarius Strobl2011-05-031-4/+2
* Do a sweep of the tree replacing calls to pci_find_extcap() with calls toJohn Baldwin2011-03-231-3/+3
* Converted the remainder of the NIC drivers to use the mii_attach()Marius Strobl2010-10-151-3/+3
* Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/Robert Watson2009-06-261-2/+2
* Unbreak build.Attilio Rao2009-05-301-7/+12
* bus_dma(9) conversion and make nge(4) work on all architectures.Pyun YongHyeon2009-05-212-835/+1654
* Remove extra parenthesis used in macros. These macros are not usedPyun YongHyeon2009-05-181-2/+2
* Consistently use tab characters instead of spaces.Pyun YongHyeon2009-05-182-25/+25
* style(9)Pyun YongHyeon2009-05-181-76/+76
* s/u_int8_t/uint8_t/gPyun YongHyeon2009-05-182-46/+46
* style(9) - space after keyword.Pyun YongHyeon2009-05-181-25/+25
* Remove return statement at the end of functions that return void.Pyun YongHyeon2009-05-181-35/+0
* Remove trailling whitespaces.Pyun YongHyeon2009-05-182-37/+37
* Remove register keyword.Pyun YongHyeon2009-05-181-6/+6
* Use ANSI C declarations for all functions.Pyun YongHyeon2009-05-181-96/+37
* Fix function prototype for device_shutdown method.Pyun YongHyeon2007-11-221-3/+3
* Catch up the rest of the drivers with the ether_vlan_mtap modifications.Christian S.J. Peron2007-03-041-1/+1
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-231-1/+1
* Move ethernet VLAN tags from mtags to its own mbuf packet header fieldAndre Oppermann2006-09-171-8/+5
* - Consistently use if_printf() only in interface methods: if_start(),Gleb Smirnoff2006-09-152-5/+7
* Since DELAY() was moved, most <machine/clock.h> #includes have beenPoul-Henning Kamp2006-05-161-1/+0
* Remove various bits of conditional Alpha code and fixup a few comments.John Baldwin2006-05-121-5/+0
* Do not touch ifp->if_baudrate in miibus aware drivers.Gleb Smirnoff2006-02-141-1/+0
* - Fix VLAN_INPUT_TAG() macro, so that it doesn't touch mtag inGleb Smirnoff2005-12-181-1/+3
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-3/+3
* Replace FreeBSD 3.x syntax (controller miibus0) with 4.x syntaxWarner Losh2005-10-221-1/+1
* Minor tweaks and fixups:John Baldwin2005-10-132-69/+61
* - Don't pollute opt_global.h with DEVICE_POLLING and introduceGleb Smirnoff2005-10-051-0/+4
* Big polling(4) cleanup.Gleb Smirnoff2005-10-011-25/+37
* Make sure that we call if_free(ifp) after bus_teardown_intr. Since weWarner Losh2005-09-191-1/+1
* Add two missing if_free() calls.Ruslan Ermilov2005-09-151-0/+3
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-13/+13
* Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson2005-08-031-0/+2
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-102-16/+24
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-291-2/+0
* fix null ptr deref when nge_newbuf is called with an existing mbufSam Leffler2005-03-281-8/+6
* deref correct mbuf ptr to collect any vlan tagSam Leffler2005-03-261-1/+1
* Use BUS_PROBE_DEFAULT for pci probe return valueWarner Losh2005-03-051-1/+1