aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/tx
Commit message (Expand)AuthorAgeFilesLines
* Make sure that we call if_free(ifp) after bus_teardown_intr. Since weWarner Losh2005-09-191-1/+0
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-9/+9
* 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-30/+36
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-291-2/+0
* Use BUS_PROBE_DEFAULT in preference to 0. Also for vx, returnWarner Losh2005-03-011-1/+1
* Since if_tx doesn't contain locking or run with INTR_MPSAFE, markRobert Watson2004-08-131-1/+1
* Replace handrolled CRC calculation with ether_crc32_[lb]e().Christian Weisgerber2004-06-091-28/+2
* Add missing <sys/module.h> includesPoul-Henning Kamp2004-05-301-0/+1
* Mark the VLAN_MTU capability as initially enabled since it'sYaroslav Tykhiy2004-05-231-0/+1
* 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-3/+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-4/+0
* Try to create some sort of consistency in how the routings to find theDavid E. O'Brien2003-11-131-12/+9
* Replace the if_name and if_unit members of struct ifnet with new membersBrooks Davis2003-10-311-2/+1
* Use PCIR_BAR(x) instead of PCIR_MAPS.John Baldwin2003-09-021-2/+2
* 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
* - No need to bzero() the softc structure.Maxime Henrion2003-08-121-7/+3
* Mega busdma API commit.Scott Long2003-07-011-4/+7
* Convert the tx(4) driver to use the busdma API.Maxime Henrion2003-04-202-126/+328
* Better comment, more style(9) fixes.Maxime Henrion2003-04-201-4/+4
* style(9).Maxime Henrion2003-04-201-8/+11
* Make this file closer to style(9) paradigm.Maxime Henrion2003-04-191-212/+215
* - Enable interrupts only at the end of epic_attach() when all theMaxime Henrion2003-04-191-39/+35
* - Correct a comment made bogus by my last commit.Maxime Henrion2003-04-191-2/+4
* Various cleanups:Maxime Henrion2003-04-191-20/+1
* - Express hard dependencies on bus (pci, isa, pccard) andMatthew N. Dodd2003-04-151-1/+3
* Nuke EPIC_MGETCLUSTER entirely. Since 1.60 we don't use it anymore andBosko Milekic2003-02-211-13/+0
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-192-6/+6
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-212-6/+6
* Remove miidevs.h and generate it from miidevs at compile time.David E. O'Brien2003-01-191-1/+1
* network interface driver changes:Sam Leffler2002-11-141-14/+8
* o m_adj rx buffer so IP header is 32-bit alignedSam Leffler2002-10-252-18/+21
* Remove the OpenBSD comatibility stuff. Many changes to be more style(9)Semen Ustimenko2002-10-223-621/+355
* Stop trying to align malloc()ed memory. Rely on malloc() instead, just likeSemen Ustimenko2002-08-192-25/+18
* Do not reset card in epic_freebsd_attach() as reset is done inSemen Ustimenko2002-08-191-7/+0
* Add an epic_stats_update() function (called once per second). Even thoughSemen Ustimenko2002-05-011-9/+27
* Implement true multicast filtering.Semen Ustimenko2002-04-251-16/+64
* Update the email appearing in copyright string.Semen Ustimenko2002-04-201-1/+1
* Merge ``&& must be ||'' bug noticed and fixed in OpenBSD. The only ill effectSemen Ustimenko2002-04-201-1/+1
* Move tx(4) driver to sys/dev/tx. BTW split hardware structures and constantsSemen Ustimenko2002-04-193-380/+12
* Remove __P.Alfred Perlstein2002-03-201-41/+41
* Cast pointers to uintptr_t rather than u_int32_t. This doesn't work tooPeter Wemm2002-03-191-1/+1
* Remove mbuf exhaustion warning messages; these are handled by theMike Silbersack2002-02-111-2/+0
* Update tx(4) to always enable vlan(4) support.Brooks Davis2001-09-051-6/+0
* Fix an bug in FreeBSD attach routine - attaching MII interfaces before doingSemen Ustimenko2001-08-131-9/+7
* Add support for 802.1Q VLAN and oversized ethernet frames.Semen Ustimenko2001-08-133-4/+34
* Add initializetion of NVCTL register with EEPROM stored value.Semen Ustimenko2001-06-233-0/+29