summaryrefslogtreecommitdiff
path: root/sys/dev/ic/awi.c
AgeCommit message (Collapse)Author
2002-03-14First round of __P removal in sysTodd C. Miller
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-27Hold on to m0->m_pkthdr.len (just being pendantic)Angelos D. Keromytis
2001-06-27Get rid of M_COPY_* macros; either use M_MOVE_* or M_DUP_*, dependingAngelos D. Keromytis
on how macros should be treated. Code by fgsch@, ok by me and itojun@
2001-06-24OpenBSD tag.Federico G. Schwindt
2001-06-23make use of ether_input_mbuf, easyMichael Shalayeff
2001-02-20for ethernet ifaces attach bpf from ether_ifattach; jason@, aaron@, itojun@ okMichael Shalayeff
2000-10-17compatibility issueMichael Shalayeff
2000-08-17replace if_awi w/ semi-current netbsd driver; still has problemsMichael Shalayeff
1999-12-16non-working awi driver; someone finish itTheo de Raadt