summaryrefslogtreecommitdiff
path: root/sys/dev/ic/i82596.c
AgeCommit message (Collapse)Author
2003-08-09need to include bpfilter.h for bpf to work (noticed by weissmanndude). put ↵Michael Shalayeff
some non-fatal printfs into ifdef debug
2003-01-27pad tx buffer on < minimum length frames; based on NetBSD; tested on hppa.Jason Wright
2003-01-07do the busy wait loops my favourite style and merry xmasMichael Shalayeff
2002-12-19fix a debugging printf on cmd wait timeoutMichael Shalayeff
2002-12-11smaller delays, unneeded splsMichael Shalayeff
2002-11-01fight the grammar in the tdr messagesMichael Shalayeff
2002-10-30bring on a few changes from netbsd, such as better rx mbuf calculation, ram ↵Michael Shalayeff
probe fix in byte vs word, M_IFMADDR vs M_IPMADDR. some knf
2002-10-13do not flush cache here, better support for intrhook, increase number of ↵Michael Shalayeff
transmit cmds and properly align the rings
2002-10-09Remove trailing '\n's from panic messages.Kenneth R Westerback
Started by a commit to siop from provos@netbsd.org. ok miod@ millert@
2002-09-23make the leds blink (on those machines where we have 'em).Michael Shalayeff
simple logic is to light up the led in the intrhook and dim in the heartbeat always, makes a believable impression. upper four bits represent a cpu usage w/in the last Hz/8 made up from the cp_time[] times.
2002-07-31mop up after federico who is not capable of comitting the same diffs he ↵Michael Shalayeff
sents for testing or compiling code before he commits it even
2002-07-29switch to ether_input_mbuf(); mickey@ tested and ok.Federico G. Schwindt
2002-03-14First round of __P removal in sysTodd C. Miller
2002-03-08do not add maddr twice, break out of the loop if cmd post failsMichael Shalayeff
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-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-03-23cache alignment gamesMichael Shalayeff
2001-02-20for ethernet ifaces attach bpf from ether_ifattach; jason@, aaron@, itojun@ okMichael Shalayeff
2001-01-12this is an ugly quick hack, but it works; theo helped (;Michael Shalayeff
1999-11-26provide general "probing" routine, also used in isa cards memory sizing;Michael Shalayeff
also utilize port commands (if provided by the md backend); prefix macros w/ IE_; build control structures here, providing sysbus byte in the softc.
1999-08-15i82586/96 MI stuff currently in 586 mode, tested on hppa; from netbsd i82586Michael Shalayeff