aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/my
Commit message (Expand)AuthorAgeFilesLines
* Remove some unused variables.Christian Brueffer2014-05-161-2/+0
* Remove superfluous old-style rcsid[] from if_my.c. There is already anDimitry Andric2013-12-291-5/+0
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* Use DEVMETHOD_END macro defined in sys/bus.h instead of {0, 0} sentinel on de...Sofian Brabez2013-01-301-1/+1
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-041-4/+4
* ether_ifattach() sets if_mtu to ETHERMTU, don't bother set it againKevin Lo2012-01-071-1/+0
* Remove duplicate header includesKevin Lo2011-06-281-1/+0
* Add new tunable 'net.link.ifqmaxlen' to set default send interfaceMaxim Sobolev2010-05-031-2/+2
* - This driver used the if_watchdog timer both as a watchdog on transmit andJohn Baldwin2009-11-192-23/+43
* Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/Robert Watson2009-06-261-2/+2
* Release driver lock at the end of the watchdog routine instead of trying toJohn Baldwin2009-03-231-1/+1
* Shutdown returns an int.Warner Losh2009-02-051-3/+3
* Spelling fix for interupt -> interruptKevin Lo2007-10-121-1/+1
* my(4) doesn't need miibus(4).Christian Brueffer2007-03-111-5/+0
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-231-1/+1
* Fix fat-fingering in previous commit.John Baldwin2006-12-291-1/+1
* Various bpf(4) related fixes to catch places up to the new bpf(4)John Baldwin2006-12-291-2/+2
* - Consistently use if_printf() only in interface methods: if_start(),Gleb Smirnoff2006-09-152-25/+35
* Add altq(4) support.Christian Brueffer2006-06-051-4/+6
* Since DELAY() was moved, most <machine/clock.h> #includes have beenPoul-Henning Kamp2006-05-161-1/+0
* Fix -Wundef from compiling the amd64 LINT.Ruslan Ermilov2005-12-041-1/+1
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-1/+1
* Fixup locking in if_my(4) and mark it MPSAFE:John Baldwin2005-08-162-104/+96
* - Remove pre-new-bus code under #if 0 and some other rotted code underJohn Baldwin2005-08-101-55/+2
* - Use if_printf() and device_printf() instead of outputting my%d:John Baldwin2005-08-102-68/+47
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-6/+6
* 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-21/+23
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-291-2/+0
* 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-061-1/+1
* Replace handrolled CRC calculation with ether_crc32_[lb]e().Christian Weisgerber2004-06-091-30/+2
* We don't need to initialize if_output, ether_ifattach() does itMaxime Henrion2004-05-231-1/+0
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-171-4/+3
* 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-6/+6
* Drop the driver lock around calls to if_input to avoid a LOR whenSam Leffler2003-11-141-0/+2
* Try to create some sort of consistency in how the routings to find theDavid E. O'Brien2003-11-131-11/+9
* 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-6/+3
* Prefer new location of pci include files (which have only been in theWarner Losh2003-08-221-3/+3
* - Express hard dependencies on bus (pci, isa, pccard) andMatthew N. Dodd2003-04-151-1/+3
* Use __FBSDID rather than rcsid[].David E. O'Brien2003-04-031-2/+4
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-4/+4
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-4/+4
* network interface driver changes:Sam Leffler2002-11-141-14/+6
* Fix instances of macros with improperly parenthasized arguments.Alfred Perlstein2002-11-091-2/+2
* Cast a pointer to a uintptr_t instead of a u_int.John Baldwin2002-11-071-1/+1
* Add missing unlockJulian Elischer2002-05-301-1/+3
* Add missing UNLOCKsJulian Elischer2002-05-021-1/+9