aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ed/if_ed.c
Commit message (Expand)AuthorAgeFilesLines
* ifp->if_softc is managed entirely by the driver. We never set it toWarner Losh2009-05-131-8/+0
* Sometimes we can call ed_detach() before the mtx has been initialized.Warner Losh2009-04-201-2/+4
* Cleanup resource allocation code a bit. Store the rids on theWarner Losh2009-04-201-18/+12
* Provide a generic ifmedia set of routines as a fallback. TheWarner Losh2009-04-071-0/+35
* Two fixes:Warner Losh2009-03-301-7/+11
* This is a major reworking of the AX88x90 support.Warner Losh2009-03-301-10/+20
* When reading via memory, read in (amount + 1) / 2 (to properly roundWarner Losh2009-03-281-1/+1
* Allow the attach routine to fail gracefully and not panic the system.Warner Losh2009-03-261-1/+2
* Tweak comments.Warner Losh2009-03-251-15/+16
* When the miibus for the AX88x90 or TC5299J cards fails to attach, weWarner Losh2008-08-061-7/+9
* Don't call bus_deactivate_resource() explicitly before callingYoshihiro Takahashi2007-03-211-6/+0
* MFp4:Warner Losh2006-06-121-1/+20
* Have a function pointer to the routine to call for writing an mbufWarner Losh2006-01-271-81/+81
* Create mediachg functions for the 3c503 and hpp cards. This is usedWarner Losh2006-01-271-30/+4
* Transition from ALTPHYS to LINK2. We already document in the ed(4)Warner Losh2006-01-271-9/+13
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-1/+1
* Go ahead and detach our children in our detach routine. I'm undecidedWarner Losh2005-09-261-0/+1
* Remove duplicate if_free().Warner Losh2005-09-191-1/+0
* Make sure that we call if_free(ifp) after bus_teardown_intr. Since weWarner Losh2005-09-191-1/+1
* MFp4:Warner Losh2005-09-181-92/+11
* Fix "struct ifnet" leaks when attach() fails in the middle.Ruslan Ermilov2005-09-161-1/+2
* MFp4: Omnibus ed changesWarner Losh2005-09-131-37/+0
* The ed driver lock is already held in the mii frobbing routines. RemoveWarner Losh2005-09-081-11/+0
* MFp4: kill bogus commentWarner Losh2005-09-021-5/+0
* Finish conversion to bus space and make ed MP safe.Warner Losh2005-08-281-142/+182
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-12/+12
* Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson2005-08-031-0/+2
* Fix four casts of the softc to a struct ifnet.Brooks Davis2005-06-151-4/+4
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-101-8/+16
* Add a stratigic newlineWarner Losh2005-02-221-0/+1
* MFp4: Optimize in/out macros. Cache the handle and tag in softc andWarner Losh2005-02-221-0/+4
* Minor style(9)isms.Warner Losh2005-02-211-40/+32
* Minor optimizations to compile out bits that aren't necessary whenWarner Losh2005-02-201-5/+18
* Add some comments in preparation for converting bcopy/bzero to busspace.Warner Losh2005-02-141-9/+14
* Diff reduction with p4.Warner Losh2005-02-111-6/+3
* Move enable/disable 16bit access routines into if_ed. SlightlyWarner Losh2005-02-101-21/+27
* useWarner Losh2005-02-101-3/+8
* Break out obscure ISA cards into their own files, as well as ne2000Warner Losh2005-02-091-1720/+25
* Convenience function to clear memory of the card, and then check to makeWarner Losh2005-02-081-0/+22
* Use ANSI function definitions, tweak a couple of prototypes to match (sinceWarner Losh2005-02-081-116/+48
* use fixed types for the calls to ed_pio_readmem, ed_pio_writemem.Warner Losh2005-02-081-31/+14
* Make it possible to unload ed. Move the ed_pccard_detach routine toWarner Losh2005-02-081-0/+20
* Repair probe messages a bit. Previously, we'd print the ethernetWarner Losh2005-01-261-14/+17
* MFp4: u_intXX_t to uintXX_t.Warner Losh2005-01-191-12/+12
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-061-1/+1
* Commit ALTQ-patch for ed(4).Max Laier2004-11-211-2/+4
* Fix build error with ED_DEBUG.Yoshihiro Takahashi2004-11-101-2/+2
* Remove layer intermixing. Device driver should pass the frame shouldGleb Smirnoff2004-09-061-20/+2
* Since if_ed doesn't contain locking or run with INTR_MPSAFE, markRobert Watson2004-08-131-2/+2
* Replace handrolled CRC calculation with ether_crc32_[lb]e().Christian Weisgerber2004-06-091-28/+2