summaryrefslogtreecommitdiffstats
path: root/sys/dev/isa/if_ex.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Make room for media types of the future. Extend the ifmedia word to 64 bits.stsp2015-09-111-3/+3
* Increment if_ipackets in if_input().mpi2015-06-241-2/+1
* Convert to if_input().mpi2015-05-191-8/+5
* unifdef INETtedu2014-12-221-5/+1
* some very obvious uninit bugs found when I turned off -Wno-uninitializedtedu2010-07-021-4/+3
* Eliminate the redundant bits of code for MTU and multicast handlingbrad2008-11-281-21/+8
* cast pointer to correct type before passing it to bus space. Noticed whileoga2008-11-221-3/+5
* First step towards cleaning up the Ethernet driver ioctl handling.brad2008-10-021-10/+2
* Remove a bogus and unnecessary check for if_addrlist from ex_init().brad2007-10-211-3/+1
* Add multicast support.brad2007-10-211-8/+109
* Add ifmedia support.brad2007-10-211-24/+75
* Eliminate unnecessary resets when calling the SIOCSIFADDR ioctl.brad2007-10-181-11/+5
* Rename bus_space macros. ISA_GET/PUT -> CSR_READ/WRITEbrad2007-10-061-100/+103
* replace the BANK_SEL bus space macro usage with the ISA_PUT macro and removebrad2007-09-201-12/+10
* a little more cleaning. removing some useless comments.brad2007-09-191-12/+1
* In ex_rx_intr() allocate an mbuf cluster if the pkt_len is >= MINCLSIZE.brad2007-09-191-2/+2
* sprinkle a few tabs on ex_ioctl() to make things easier on the eyes.brad2007-09-191-48/+47
* call ether_ioctl() from within ex_ioctl().brad2007-09-191-1/+6
* remove the SIOCGIFADDR ioctl handler and return ENOTTY instead of EINVALbrad2007-09-191-12/+2
* rename a few functions.brad2007-09-191-19/+18
* don't need to wrap the code in #if NEX > 0brad2007-09-191-5/+1
* ex_start() is always called at splnet, so remove the unnecessary splnet.brad2007-09-191-6/+2
* de-staticbrad2007-09-191-16/+16
* A little cleaning..brad2007-09-171-60/+20
* remove never used #ifdef IPX_NOTYET codehenning2007-06-061-28/+1
* allow bpf(4) to ignore packets based on their direction (inbound ordjm2006-03-251-3/+5
* splimp -> splnetbrad2005-11-091-6/+6
* remove netns crud.henning2005-06-081-22/+1
* ether_input_mbuf() conversion.brad2005-04-031-5/+2
* support setting the MTUbrad2005-04-021-5/+4
* Use list and queue macros where applicable to make the code easier to read;miod2004-12-261-2/+2
* don't need to set ifp->if_mtu or ifp->if_output in each driver,brad2004-09-231-3/+1
* First round of __P removal in sysmillert2002-03-141-15/+15
* ALTQ'ify network drivers.kjc2001-06-271-5/+8
* for ethernet ifaces attach bpf from ether_ifattach; jason@, aaron@, itojun@ okmickey2001-02-201-9/+1
* Fix a bug that prevents the correct detection of the card.fgsch1999-04-191-11/+7
* compensate for the test of packet ownership being moved to ether_input()jason1999-02-281-19/+2
* If the card is not present be sure to always call bus_space_unmap on exit.fgsch1999-02-131-10/+10
* Sweeping changes from Don Schmidt (yensid@imsa.edu) to busify this driver.gene1997-11-091-122/+130
* Driver for ISA EtherExpress Pro/10 ethernet card.gene1997-09-111-0/+998