Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-02-04 | add hme(4) RX TCP/UDP checksum offload | Brad Smith | |
From a diff posted to sparc@ by Pyun YongHyeon ok dlg@, tested by mickey@ "i get some badass improvement here." and a few other users. | |||
2005-01-15 | make sure interface is in RUNNING state before touching the multicast filters | Brad Smith | |
From NetBSD NetBSD PR 27678 for details ok mcbride@ | |||
2004-09-28 | - Use ETHER_MAX_LEN + ETHER_VLAN_ENCAP_LEN instead of HME_MTU | Brad Smith | |
- Use ETHER_CRC_POLY_LE instead of MC_POLY_LE from hmereg.h | |||
2004-08-08 | do not reset the chip (and subsequently the phy) when unnecessary; that is, | Brad Smith | |
for address changes, multicast filter changes, or adjusting promiscuous mode. Fixes resetting the phy for things like start/stopping tcpdump. From NetBSD tested by me, miod@, otto@ and a few others. ok deraadt@ | |||
2004-05-31 | Don't reinvent the wheel, use ether_crc32_le() instead. | Ryan Thomas McBride | |
2004-05-12 | network drivers don't need to include bpfdesc.h | Ted Unangst | |
ok krw@ canacar@ | |||
2003-06-18 | we already set the rx descriptor length to accept vlan packets... just | Jason Wright | |
need to advertise the capability; tested by tsar at polarcap dot org | |||
2003-04-27 | strcpy/sprintf cleanup of sys/dev. miod@, deraadt@ says to commit. | Hakan Olsson | |
2003-04-26 | managment -> management; | Jason McIntyre | |
ok mickey@ | |||
2003-03-05 | update media handling based on NetBSD: mainly fix setting up of the output | Jason Wright | |
drivers also, force a preference of the external phy a little earlier: both ports on the netra T1/105 now work. | |||
2003-02-08 | avoid more spurious printfs (account for other uninteresting events). | Jason Wright | |
2003-02-01 | Look, noone cares if you run of out rx descriptors and whining about it just ↵ | Jason Wright | |
makes the situation worse. | |||
2002-11-26 | re-enable if_timer; jason@ ok. | Federico G. Schwindt | |
2002-11-20 | If both phys are available, prefer the external one. | Jason Wright | |
2002-11-14 | Don't complain about the defer timer expiring, call it an oerror instead. | Jason Wright | |
2002-09-28 | - disable if_timer handling (there's a bug which causes this not to get | Jason Wright | |
reset, causing watchdog timeouts). The interfaces work fine, but the timer doesn't get reset correctly. - make IFF_SIMPLEX only set iff the media is IFM_FDX (prevents ip6 from seeing it's packets and thinking another machine with the same mac is on the wire when running half-duplex); from NetBSD. | |||
2002-08-07 | Hrmph, part of the logic was correct: turn off if_timer when all descriptors ↵ | Jason Wright | |
are found to be empty. | |||
2002-08-07 | fix if_timer handling: | Jason Wright | |
- only set it to non-zero when at least on packet is enqueued - zero it if we tx'd at least one packet | |||
2002-08-06 | be sure to unmap/deallocate buffers when hme_stop() is called | Jason Wright | |
2002-06-14 | spelling; from Brian Poole <raj@cerias.purdue.edu> | Todd T. Fries | |
2002-06-05 | fix dma map handling logic in hme_newbuf(); from jason@. | Federico G. Schwindt | |
2002-03-14 | First round of __P removal in sys | Todd C. Miller | |
2002-02-18 | call ether_ioctl(), fix pr/2371; jason@ ok | Michael Shalayeff | |
2001-10-09 | - keep a spare dmamap_t around for rx (use it to keep the old mbuf loaded | Jason Wright | |
while trying to get the next buffer setup). - reduce ring size for both rx & tx | |||
2001-10-04 | move stats update into ticker | Jason Wright | |
allocate all dmamaps in advance (and use load/unload/sync as appropriate) | |||
2001-10-04 | Fix up tx logic: can't free zero length mbufs (may have to requeue, and it's | Jason Wright | |
not polite to modify the mbuf chain and requeue). | |||
2001-10-02 | style | Jason Wright | |
2001-10-02 | De uglify (a bit) and garbage collect a bunch of now unused functions. | Jason Wright | |
2001-10-02 | Pull in a change I wrote a -long- time ago: avoid {bcopy/memcpy} into statically | Jason Wright | |
allocated buffers. Use the buffer provided in the mbuf (after bus_dmaifying it, of course) instead [This is only step one: next step, garbage collection and deuglification] | |||
2001-09-23 | solve mtu problem a little more elegantly (ramdisk works on blade100 and | Jason Wright | |
u5 now). | |||
2001-09-20 | undef HMEDEBUG by default, and maximum rx/tx size is | Jason Wright | |
ETHERMTU + sizeof(struct ether_header) not ETHERMTU | |||
2001-08-29 | initialize ac_enaddr from sc_enaddr | Jason Wright | |
2001-08-23 | decruftify: remove unnecessary/unused functions | Jason Wright | |
2001-08-23 | need bpfilter.h | Jason Wright | |
2001-08-21 | bus independent part of hme driver from netbsd | Jason Wright | |