aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/nge
Commit message (Expand)AuthorAgeFilesLines
* 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
* A handler for ioctl(SIOCSIFCAP) should not alter a bit inYaroslav Tykhiy2004-05-231-1/+2
* According to the design of checksum offloading framework,Yaroslav Tykhiy2004-05-231-2/+5
* We don't need to initialize if_output, ether_ifattach() does itMaxime Henrion2004-05-231-1/+0
* Implemented per-interface polling(4) control.Ruslan Ermilov2004-04-111-1/+12
* Fixed resetting of the watchdog timer and queue full flag.Ruslan Ermilov2004-04-111-7/+4
* Compare IFF_POLLING flag with ifp->if_flags rather than ifp->if_ipending,Robert Watson2004-04-111-3/+3
* The VLAN TCI field should be operated in network byte order.Ruslan Ermilov2004-03-301-2/+2
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-171-3/+2
* Announce ethernet MAC addresss in ether_ifattach().Matthew N. Dodd2004-03-141-5/+0
* Don't use caddr_t in mchash(). Also use C99 spellings over BSD ones.David E. O'Brien2003-12-081-5/+5
* Remove duplicate FBSDID's, move others to their right place.David E. O'Brien2003-11-141-3/+0
* Try to create some sort of consistency in how the routings to find theDavid E. O'Brien2003-11-131-13/+10
* Replace the if_name and if_unit members of struct ifnet with new membersBrooks Davis2003-10-311-2/+1
* Use __FBSDID().David E. O'Brien2003-08-241-0/+3
* Prefer new location of pci include files (which have only been in theWarner Losh2003-08-221-2/+2
* All current uses of pci_set_powerstate are bogus, at least in theory.Warner Losh2003-07-031-2/+2
* - Don't call pci_enable_io() in drivers (unless needed for resume).Matthew N. Dodd2003-04-161-18/+0
* - Express hard dependencies on bus (pci, isa, pccard) andMatthew N. Dodd2003-04-151-1/+3