aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ti
Commit message (Expand)AuthorAgeFilesLines
* Prefer new location of pci include files (which have only been in theWarner Losh2003-08-221-2/+2
* Enable IFCAP_VLAN_MTU and increase MTU for it.Hidetoshi Shimokawa2003-08-051-2/+3
* Remove code that tries to detect if the MCLSHIFT and MSIZE macrosMaxime Henrion2003-06-131-46/+0
* Remove now unused pointer to etherheader.Poul-Henning Kamp2003-05-311-2/+0
* Use newly minted device_is_attached rather than device_is_alive to seeWarner Losh2003-04-211-1/+1
* Revise attach/detach resource cleanupNate Lawson2003-04-171-5/+13
* - Don't call pci_enable_io() in drivers (unless needed for resume).Matthew N. Dodd2003-04-161-9/+0
* - 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-7/+3
* Fix KASSERT syntax error.Poul-Henning Kamp2003-04-011-1/+1
* Clean up locking and resource management for pci/if_*Nate Lawson2003-03-311-50/+32
* Gigacommit to improve device-driver source compatibility betweenPoul-Henning Kamp2003-03-031-13/+5
* Spell noread() and nowrite() correctly (ie: not "NULL")Poul-Henning Kamp2003-03-021-2/+2
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-8/+8
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-8/+8
* o track either_ifattach/ether_ifdetach API changesSam Leffler2002-11-141-29/+16
* Fix instances of macros with improperly parenthasized arguments.Alfred Perlstein2002-11-091-7/+7
* Use %z to print a size_t value.John Baldwin2002-11-081-1/+1
* Be consistent about functions being static.Poul-Henning Kamp2002-10-161-2/+2
* Static'ify a variable.Alfred Perlstein2002-10-031-1/+1
* style: put return types on a line by themselves.Alfred Perlstein2002-08-241-40/+80
* catch up with mextfree callback change when TI_PRIVATE_JUMBOS is defined.Alfred Perlstein2002-06-291-2/+2
* Remove a couple of __P() stragglers.Peter Wemm2002-06-291-2/+2
* At long last, commit the zero copy sockets code.Kenneth D. Merry2002-06-264-5230/+6591
* Follow NetBSD and s/IFM_1000_TX/IFM_1000_T/Poul-Henning Kamp2002-04-281-4/+4
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-041-1/+2
* Remove __P.Alfred Perlstein2002-03-201-49/+47
* Remove mbuf exhaustion warning messages; these are handled by theMike Silbersack2002-02-111-4/+0
* Remove printf's on mbuf/cluster allocation failures. There are nowLuigi Rizzo2001-12-141-6/+1
* Don't pass an interface pointer to VLAN_INPUT{,_TAG}. Get it from theBrooks Davis2001-12-031-1/+1
* Have the driver advertise that it is capable of hardware checksums, andJonathan Lemon2001-09-181-2/+19
* Make vlan(4) loadable, unloadable, and clonable. As a side effect,Brooks Davis2001-09-051-26/+5
* IFT_8021_VLAN -> IFT_L2VLAN per if_vlan_var.h rev 1.9. With this changeBrooks Davis2001-07-251-1/+1
* Apply patch supplied by Jonathan Chen: use the correct arguments toBill Paul2001-07-091-1/+1
* Vlan tags are 12 bits, mask off anything above since the chip doesn'tPoul-Henning Kamp2001-05-231-2/+2
* Fix the definitions for memory bank sizes, which I somehow got wrong.Bill Paul2001-04-262-2/+7
* Big round of minor updates:Bill Paul2001-02-211-3/+2
* Preceed/preceeding are not english words. Use precede and preceding.Jeroen Ruigrok van der Werven2001-02-181-1/+1
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-2/+2
* Convert if_multiaddrs from LIST to TAILQ so that it can be traversedPoul-Henning Kamp2001-02-061-1/+1
* Mechanical change to use <sys/queue.h> macro API instead ofPoul-Henning Kamp2001-02-041-2/+2
* Use LIST_FOREACH() to traverse ifp->if_multiaddrs list, instead ofPoul-Henning Kamp2001-02-031-2/+1
* Implement MTX_RECURSE flag for mtx_init().Bosko Milekic2001-01-191-1/+1
* Initialize/grab the mutex earlier in the attach phase, so thatBill Paul2000-12-041-3/+3
* Change MEXTADD usage to pass the two new arguments.Bosko Milekic2000-11-111-1/+1
* (Introduce something sitting in my repo for 3 weeks now...)Bosko Milekic2000-10-212-24/+11
* Remove unneeded #include <machine/clock.h>Poul-Henning Kamp2000-10-151-1/+0
* Use device_get_nameunit(dev) as the mutex string when callingBill Paul2000-10-131-1/+1
* First round of converting network drivers from spls to mutexes. ThisBill Paul2000-10-132-18/+35
* * Completely rewrite the alpha busspace to hide the implementation fromDoug Rabson2000-08-281-17/+1