aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/nge
Commit message (Expand)AuthorAgeFilesLines
* - 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
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-062-2/+2
* Hide link up/down/media printfs behind bootverbosePoul-Henning Kamp2004-11-081-3/+4
* Fix a typo that affects !i386.Alan Cox2004-09-152-2/+2
* Add missing NGE_LOCK_DESTROY() to nge_detach().Bill Paul2004-09-141-0/+2
* Make two major changes to this code to address some stability/corruptionBill Paul2004-09-142-300/+239
* Since if_nge doesn't contain locking or run with INTR_MPSAFE, markRobert Watson2004-08-131-1/+2
* Remove the setting of the pci config variables on power state changes.Warner Losh2004-06-281-24/+0
* Replace handrolled CRC calculation with ether_crc32_[lb]e().Christian Weisgerber2004-06-091-29/+2
* Add missing <sys/module.h> includesPoul-Henning Kamp2004-05-301-0/+1