| Commit message (Expand) | Author | Age | Files | Lines |
* | MFC: r266270 | brueffer | 2014-05-31 | 1 | -2/+0 |
* | MFC r260042: | dim | 2014-01-04 | 1 | -5/+0 |
* | Use DEVMETHOD_END macro defined in sys/bus.h instead of {0, 0} sentinel on de... | sbz | 2013-01-30 | 1 | -1/+1 |
* | Mechanically substitute flags from historic mbuf allocator with | glebius | 2012-12-04 | 1 | -4/+4 |
* | ether_ifattach() sets if_mtu to ETHERMTU, don't bother set it again | kevlo | 2012-01-07 | 1 | -1/+0 |
* | Remove duplicate header includes | kevlo | 2011-06-28 | 1 | -1/+0 |
* | Add new tunable 'net.link.ifqmaxlen' to set default send interface | sobomax | 2010-05-03 | 1 | -2/+2 |
* | - This driver used the if_watchdog timer both as a watchdog on transmit and | jhb | 2009-11-19 | 2 | -23/+43 |
* | Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/ | rwatson | 2009-06-26 | 1 | -2/+2 |
* | Release driver lock at the end of the watchdog routine instead of trying to | jhb | 2009-03-23 | 1 | -1/+1 |
* | Shutdown returns an int. | imp | 2009-02-05 | 1 | -3/+3 |
* | Spelling fix for interupt -> interrupt | kevlo | 2007-10-12 | 1 | -1/+1 |
* | my(4) doesn't need miibus(4). | brueffer | 2007-03-11 | 1 | -5/+0 |
* | o break newbus api: add a new argument of type driver_filter_t to | piso | 2007-02-23 | 1 | -1/+1 |
* | Fix fat-fingering in previous commit. | jhb | 2006-12-29 | 1 | -1/+1 |
* | Various bpf(4) related fixes to catch places up to the new bpf(4) | jhb | 2006-12-29 | 1 | -2/+2 |
* | - Consistently use if_printf() only in interface methods: if_start(), | glebius | 2006-09-15 | 2 | -25/+35 |
* | Add altq(4) support. | brueffer | 2006-06-05 | 1 | -4/+6 |
* | Since DELAY() was moved, most <machine/clock.h> #includes have been | phk | 2006-05-16 | 1 | -1/+0 |
* | Fix -Wundef from compiling the amd64 LINT. | ru | 2005-12-04 | 1 | -1/+1 |
* | - Store pointer to the link-level address right in "struct ifnet" | ru | 2005-11-11 | 1 | -1/+1 |
* | Fixup locking in if_my(4) and mark it MPSAFE: | jhb | 2005-08-16 | 2 | -104/+96 |
* | - Remove pre-new-bus code under #if 0 and some other rotted code under | jhb | 2005-08-10 | 1 | -55/+2 |
* | - Use if_printf() and device_printf() instead of outputting my%d: | jhb | 2005-08-10 | 2 | -68/+47 |
* | Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE and | rwatson | 2005-08-09 | 1 | -6/+6 |
* | Modify device drivers supporting multicast addresses to lock if_addr_mtx | rwatson | 2005-08-03 | 1 | -0/+2 |
* | Stop embedding struct ifnet at the top of driver softcs. Instead the | brooks | 2005-06-10 | 2 | -21/+23 |
* | Remove bus_{mem,p}io.h and related code for a micro-optimization on i386 | nyan | 2005-05-29 | 1 | -2/+0 |
* | Use BUS_PROBE_DEFAULT for pci probe return value | imp | 2005-03-05 | 1 | -1/+1 |
* | Start each of the license/copyright comments with /*-, minor shuffle of lines | imp | 2005-01-06 | 1 | -1/+1 |
* | Replace handrolled CRC calculation with ether_crc32_[lb]e(). | naddy | 2004-06-09 | 1 | -30/+2 |
* | We don't need to initialize if_output, ether_ifattach() does it | mux | 2004-05-23 | 1 | -1/+0 |
* | Convert callers to the new bus_alloc_resource_any(9) API. | njl | 2004-03-17 | 1 | -4/+3 |
* | Announce ethernet MAC addresss in ether_ifattach(). | mdodd | 2004-03-14 | 1 | -5/+0 |
* | Don't use caddr_t in mchash(). Also use C99 spellings over BSD ones. | obrien | 2003-12-08 | 1 | -6/+6 |
* | Drop the driver lock around calls to if_input to avoid a LOR when | sam | 2003-11-14 | 1 | -0/+2 |
* | Try to create some sort of consistency in how the routings to find the | obrien | 2003-11-13 | 1 | -11/+9 |
* | Replace the if_name and if_unit members of struct ifnet with new members | brooks | 2003-10-31 | 1 | -2/+1 |
* | Use __FBSDID(). | obrien | 2003-08-24 | 1 | -6/+3 |
* | Prefer new location of pci include files (which have only been in the | imp | 2003-08-22 | 1 | -3/+3 |
* | - Express hard dependencies on bus (pci, isa, pccard) and | mdodd | 2003-04-15 | 1 | -1/+3 |
* | Use __FBSDID rather than rcsid[]. | obrien | 2003-04-03 | 1 | -2/+4 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 1 | -4/+4 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | alfred | 2003-01-21 | 1 | -4/+4 |
* | network interface driver changes: | sam | 2002-11-14 | 1 | -14/+6 |
* | Fix instances of macros with improperly parenthasized arguments. | alfred | 2002-11-09 | 1 | -2/+2 |
* | Cast a pointer to a uintptr_t instead of a u_int. | jhb | 2002-11-07 | 1 | -1/+1 |
* | Add missing unlock | julian | 2002-05-30 | 1 | -1/+3 |
* | Add missing UNLOCKs | julian | 2002-05-02 | 1 | -1/+9 |
* | Need more includes. | julian | 2002-04-30 | 1 | -0/+2 |