summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_tl.c
AgeCommit message (Collapse)Author
2003-08-19missing break.Mike Pechkin
jason@ ok
2003-06-30remove the use of tl_unitAnil Madhavapeddy
jason@ ok
2003-01-15Get rid of the remaining vm_offset_t in pci drivers.Artur Grabowski
2002-07-08tl* multicast filter is broken. use ALLMULTI for now.Jun-ichiro itojun Hagino
2002-07-05Typo; stobe -> strobeAaron Campbell
2002-03-14First round of __P removal in sysTodd C. Miller
2002-02-15Don't cast nonexistent return value from splx to (void). ok art@Thomas Nordin
2001-11-06Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.Miod Vallat
(Look ma, I might have broken the tree)
2001-08-25Change pci_intr_map to take pci_attach_args as an argument.Artur Grabowski
All callers actually took all arguments to pci_intr_map from pci_attach_args structs, so this simplifies code. This also allows more complicated interrupt assignment schemes like the one on sparc64. This makes sparc64 pci interrupts work. Inspired by the same change in NetBSD.
2001-08-12remove redundant vm includesMichael Shalayeff
2001-06-27ALTQ'ify network drivers.Kenjiro Cho
- use the new queue macros. - use IFQ_POLL() to peek at the next packet. - use IFQ_IS_EMPTY() for empty check. - drivers should always check if (m == NULL) after IFQ_DEQUEUE(), since it could return NULL even when IFQ_IS_EMPTY() is FALSE under rate-limiting. - drivers are supposed to call if_start from tx complete interrupts (in order to trigger the next dequeue under rate-limiting).
2001-06-24more ether_input_mbuf() conversion.Federico G. Schwindt
2001-04-05merge with freebsd/netbsd; mainly a conversion to miiJason Wright
2001-03-25Missing splx(s). Thanks to Dawson and teamConstantine Sapuntzakis
2001-02-20for ethernet ifaces attach bpf from ether_ifattach; jason@, aaron@, itojun@ okMichael Shalayeff
2001-02-03new timeoutsMichael Shalayeff
2001-01-25spellingTodd T. Fries
2000-11-14remove diagnostic around TL_INTR_INVALID (this is a valid condition when twoJason Wright
devices are on the same interrupt).
2000-09-21Patch from FreeBSD (wpaul):Jason Wright
Fix the tl driver so it doesn't run off the end of the RX descriptor list and panic in out of mbufs condition.
2000-06-20After bpf_mtap(), in promisc mode, don't drop packets that aren't for us here;Aaron Campbell
that is done in ether_input(); jason@ ok
2000-02-15make sure to call ether_{add,del}multi() as appropriate in xxx_ioctl()Jason Wright
1999-09-13openbsd-ifyJason Wright
merge with freebsd: alpha support (untested) missing ifmedia_set() larger value for ifq_maxlen
1999-03-03remove alot of verbosityJason Wright
1999-02-27Sync with FreeBSD:Jason Wright
o make sure ifp->if_snd.ifq_maxlen is initialized o proper handling of boards which report the TI product id
1998-12-31tl_tx_tail pointer was not always being updated correctly; freebsd.Jason Wright
1998-12-22sync with FreeBSD:Jason Wright
o sanity checking on foo_start() routines o ansification
1998-12-03o Don't match pci product 0xae33, as it's a pciide controller; reported by ↵Jason Wright
mickey@ (pr 652). o use switch for matching pci products
1998-11-23make quieter on out of memory conditionsJason Wright
1998-11-16Take advantage of generic pci io/mem/busmaster enabling and remove redundant ↵Jason Wright
code.
1998-11-11Merge with FreeBSD:Jason Wright
o size of tx & rx rings increased o rx ring init was using the tx ring size constant
1998-10-10Driver for ThunderLAN based ethernet cards ported from FreeBSD.Jason Wright