summaryrefslogtreecommitdiff
path: root/sys/dev/ic/rtl81x9.c
AgeCommit message (Expand)Author
2003-02-21hz -> Hztsutsui
2003-01-15Use a properly zero'd buffer to pad the packet to ETHER_MIN_LEN-ETHER_CRC_LENbouyer
2002-11-07Fix signed/unsigned comparison warnings.thorpej
2002-10-22Change the "dontcare bits" argument to ifmedia_init() to IFM_IMASKfair
2002-06-01SIMPLEQ rototill:lukem
2001-11-13add/cleanup RCSIDlukem
2001-08-20precede, not preceed, and a whitespace fix.wiz
2001-08-14mtod() with uintptr_t, not bus_addr_t.mrg
2001-08-07Fix typo in a message.kanaoka
2001-07-25 - Increase Early TX threshold if underrun occurred.kanaoka
2001-07-19Use BUS_DMA_READ and BUS_DMA_WRITE in some obvious places.thorpej
2001-07-07bzero -> memsetthorpej
2001-07-07bcopy -> strcpythorpej
2001-06-12Don't need INET or NS includes here.thorpej
2001-02-02Rework the transmit logic. Use a "free" and "dirty" list ofthorpej
2001-02-02Put the rx buf pointer into the softc directly.thorpej
2001-02-01Fix a bug in ring-buffer wrap calculation. On the Dreamcast,thorpej
2001-01-29Handle allmulti case correctly as a NetBSD network driver;enami
2001-01-11Don't copy Rx packet to mbuf if it has invalid length; just discard it.tsutsui
2000-12-19Fix a problem with the ALTQ changes that can cause bogus memorythorpej
2000-12-14ALTQ'ify.thorpej
2000-12-09Add (missed) bus_dmemem_free() in rtk_detach().tsutsui
2000-12-05- Since rtk_rxeof() was rewritten, we don't have to reserve a few bytestsutsui
2000-12-03Clean up receive interrupt routine:tsutsui
2000-11-30Clarify RX status header length and some cosmetics.tsutsui
2000-11-30After rev 1.16 rtk driver uses the CRC from the chip,tsutsui
2000-11-26Add new powerhook argument values, PWR_SOFTSUSPEND, PWR_SOFTSTANDBY andtakemura
2000-11-15Move bpfattach()/bpfdetach() calls into ether_ifattach()/ether_ifdetach().thorpej
2000-11-14NBPG -> PAGE_SIZEthorpej
2000-10-15Don't trim off the FCS, pass it up.thorpej
2000-10-11Use ether_ioctl().thorpej
2000-10-01Move the check for "promisc + unicast + not for us" into ether_input(),thorpej
2000-09-25Fix merge lossage in disabled code.enami
2000-09-01-fix multicast filter programmingdrochner
2000-05-21Call bus_dmamap_unload() if any Tx mbuf remains in rtk_stop().tsutsui
2000-05-19- Change RL_* -> RTK_*tsutsui
2000-05-15splimp() -> splnet()thorpej
2000-05-15Symbol namespace cleanup: rl_ -> rtk_thorpej
2000-05-12Use ether_crc32_be().thorpej
2000-05-01- Move some initialization into MI rl_attach() from each bus attachment.tsutsui
2000-04-30Modify EEPROM read functions and handle also 9356 EEPROM.tsutsui
2000-04-26- Allocate mbuf dynamically on Tx and use bus_dmamap_load_mbuf(9).tsutsui
2000-04-25Fix two endian problems. rtk now works on macppc.tsutsui
2000-04-24Merge changes of sys/pci/if_rl.c rev. 1.8->1.10. (from kern/9870)tsutsui
2000-04-10Incorporate the changes of RL81x9 driver provided by M. Kanaokahaya