summaryrefslogtreecommitdiff
path: root/sys/dev/sf
AgeCommit message (Expand)Author
2019-05-17FCP-101: Remove sf(4).Brooks Davis
2018-10-25Deprecate a number of less used 10 and 10/100 Ethernet devices.Brooks Davis
2018-05-18ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy
2017-11-18spdx: initial adoption of licensing ID tags.Pedro F. Giffuni
2016-05-03sys/dev: minor spelling fixes.Pedro F. Giffuni
2016-04-19sys/dev: use our nitems() macro when it is avaliable through param.h.Pedro F. Giffuni
2014-09-19Fix typo.Gleb Smirnoff
2014-09-18Mechanically convert to if_inc_counter().Gleb Smirnoff
2014-08-30Use define from if_var.h to access a field inside struct if_data,Gleb Smirnoff
2014-06-11Fix various NIC drivers to properly cleanup static DMA resources.John Baldwin
2013-10-26The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff
2012-12-04Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff
2012-05-11Remove unused variable mii.Kevin Lo
2012-02-27Remove duplicate assignment of SF_IMR_RXDQ2_DMADONE bitKevin Lo
2012-02-23Add check for IFF_DRV_RUNNING flag after serving an interrupt andPyun YongHyeon
2012-02-23With r232015, sf(4) gets correct speed/duplex of established link.Pyun YongHyeon
2012-02-23Remove taskqueue based MII stat change handler.Pyun YongHyeon
2012-02-23No need to reprogram hardware RX filter when driver is not running.Pyun YongHyeon
2012-02-23Introduce sf_ifmedia_upd_locked() and have driver reset PHY beforePyun YongHyeon
2012-02-23If there are not enough RX buffers, release partially allocated RXPyun YongHyeon
2012-02-23Give hardware chance to drain active DMA cycles.Pyun YongHyeon
2011-11-22- There's no need to overwrite the default device method with the defaultMarius Strobl
2011-05-03- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOPMarius Strobl
2010-10-15Converted the remainder of the NIC drivers to use the mii_attach()Marius Strobl
2010-09-21Remove unnecessary controller reinitialization.Pyun YongHyeon
2009-06-26Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/Robert Watson
2009-05-30When user_frac in the polling subsystem is low it is going to busy theAttilio Rao
2008-01-21Fix build.Pyun YongHyeon
2008-01-21Overhaul sf(4) to make it run on all architectures and implementPyun YongHyeon
2008-01-21It seems that the firmware for TxGFP does not work at all. I couldPyun YongHyeon
2008-01-21Import AIC-6915 firmware for GFP from Adaptec.Pyun YongHyeon
2008-01-21Forced commit to note that sf(4) was repocopied from sys/pciPyun YongHyeon
2007-11-22Fix function prototype for device_shutdown method.Pyun YongHyeon
2007-02-23o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati
2006-09-15Whitespace nits.Ruslan Ermilov
2006-09-15Consistently use if_printf() only in interface methods: if_start,Gleb Smirnoff
2006-05-12Remove various bits of conditional Alpha code and fixup a few comments.John Baldwin
2006-02-14Do not touch ifp->if_baudrate in miibus aware drivers.Gleb Smirnoff
2005-11-11- Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov
2005-10-22Replace FreeBSD 3.x syntax (controller miibus0) with 4.x syntaxWarner Losh
2005-10-13In detach method, move if_free() after bus_teardown_intr().Ruslan Ermilov
2005-10-05- Don't pollute opt_global.h with DEVICE_POLLING and introduceGleb Smirnoff
2005-10-01Big polling(4) cleanup.Gleb Smirnoff
2005-09-16Fix "struct ifnet" leaks when attach() fails in the middle, e.g.Ruslan Ermilov
2005-08-18Fixup locking for sf(4) and mark MPSAFE:John Baldwin
2005-08-10Use if_printf() and device_printf() and axe sf_unit from the softc as aJohn Baldwin
2005-08-09Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson
2005-08-03Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson
2005-06-11Move if_alloc() up so it's before mii_phy_probe().Brooks Davis
2005-06-10Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis