aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/txp/if_txp.c
Commit message (Expand)AuthorAgeFilesLines
* - Provide txp_get_counter() to return counters that are not collected,Gleb Smirnoff2014-09-241-11/+30
* Use define from if_var.h to access a field inside struct if_data,Gleb Smirnoff2014-08-301-1/+1
* Remove ia64.Marcel Moolenaar2014-07-071-1/+1
* Fix teardown of static DMA allocations in various NIC drivers:John Baldwin2014-06-171-24/+34
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-041-3/+3
* Do a sweep of the tree replacing calls to pci_find_extcap() with calls toJohn Baldwin2011-03-231-3/+3
* sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly.Matthew D Fleming2011-01-121-1/+4
* Make sure rx descriptor ring align on 16 bytes. I guess thePyun YongHyeon2009-08-311-2/+4
* Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/Robert Watson2009-06-261-2/+2
* bus_dma(9) conversion and make txp(4) work on all architectures.Pyun YongHyeon2009-03-121-768/+1917
* Replace local CRC32 routine with ether_crc32_be(). This shouldPyun YongHyeon2009-03-111-46/+30
* s/u_int8_t/uint8_t/gPyun YongHyeon2009-03-111-55/+55
* style(9) - space after keywords.Pyun YongHyeon2009-03-111-14/+14
* Remove return statement at the end of function that returns void.Pyun YongHyeon2009-03-111-20/+1
* Remove extra tab characters.Pyun YongHyeon2009-03-111-3/+3
* K&R -> ANSI C function definitions.Pyun YongHyeon2009-03-111-72/+34
* Update to latest 3Com firmware image. The latest fimware isPyun YongHyeon2009-02-251-8/+22
* Change the functions to ANSI in those cases where it breaks promotionRoman Divacky2009-02-241-19/+7
* Read MII_ANAR register and get common denominator ability.Pyun YongHyeon2007-11-161-1/+6
* IEEE 802.3 Annex 28B.3 explicitly specifies the following relativePyun YongHyeon2007-11-161-3/+3
* Nuke duplicated __FBSDID.Pyun YongHyeon2007-06-121-4/+0
* Add checks for contigmalloc(9) failure.Pyun YongHyeon2007-06-121-0/+10
* 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-7/+4
* Since DELAY() was moved, most <machine/clock.h> #includes have beenPoul-Henning Kamp2006-05-161-1/+0
* - Fix VLAN_INPUT_TAG() macro, so that it doesn't touch mtag inGleb Smirnoff2005-12-181-2/+3
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-6/+6
* Remove call to txp_set_filter() from txp_attach(). txp_set_filter() needsBill Paul2005-10-291-2/+0
* - Add locking and mark MPSAFE. The driver had a mutex in the softc andJohn Baldwin2005-10-271-61/+81
* Make sure that we call if_free(ifp) after bus_teardown_intr. Since weWarner Losh2005-09-191-3/+3
* Fixed a diagnostic message.Ruslan Ermilov2005-09-151-1/+1
* - Only call txp_release_resources() once if attach fails.John Baldwin2005-08-311-38/+31
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-9/+10
* 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-101-25/+39
* 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
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-061-1/+1
* Since if_txp 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-23/+0
* Add missing <sys/module.h> includesPoul-Henning Kamp2004-05-301-0/+1
* 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-3/+3
* Announce ethernet MAC addresss in ether_ifattach().Matthew N. Dodd2004-03-141-3/+0
* 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
* 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