summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_wb.c
AgeCommit message (Expand)Author
2019-04-01repair "} if" from an ancient merge error; ok deraadt@ kn@Christian Weisgerber
2017-07-13kill a prototype for a nonexisting function; ok mpi@Christian Weisgerber
2017-01-22move counting if_opackets next to counting if_obytes in if_enqueue.David Gwynne
2016-04-13G/C IFQ_SET_READY().Martin Pieuchot
2015-11-25replace IFF_OACTIVE manipulation with mpsafe operations.David Gwynne
2015-11-24You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.Martin Pieuchot
2015-11-24The only network driver needing <net/if_types.h> is upl(4) for IFT_OTHER.Martin Pieuchot
2015-10-25arp_ifinit() is no longer needed.Martin Pieuchot
2015-09-11Make room for media types of the future. Extend the ifmedia word to 64 bits.Stefan Sperling
2015-06-24Increment if_ipackets in if_input().Martin Pieuchot
2015-04-13Now that if_input() set the receiving interface pointer on mbufs for usMartin Pieuchot
2015-04-08Convert to if_input().Martin Pieuchot
2014-12-22unifdef INETTed Unangst
2014-12-03wb_init() calls wb_stop() and wb_reset() so remove some redundant callsBrad Smith
2014-07-22Fewer <netinet/in_systm.h>Martin Pieuchot
2013-11-26Instead of comparing the lower and higher addresses of all the multicastMartin Pieuchot
2013-10-01Use %z* for size_tStefan Fritsch
2013-08-21get rid of the copy argument in m_devget that let you provide anDavid Gwynne
2013-08-07Most network drivers include netinet/in_var.h, but apparently theyAlexander Bluhm
2012-11-29Remove setting an initial assumed baudrate upon driver attach which is notBrad Smith
2012-11-23set ifp->if_baudrate with IF_Gbps() / IF_Mbps().Gleydson Soares
2012-10-18Convert a number of old private copies of code which predatesTheo de Raadt
2011-06-22kill a few more casts that aren't helpful. ok krw miodTed Unangst
2011-04-03use nitems(); no binary change for drivers that are compiled on amd64.Jasper Lievisse Adriaanse
2010-05-19BUS_DMA_ZERO instead of alloc, map, bzero.Owain Ainsworth
2009-08-13- consistify cfdriver for the ethernet drivers (0 -> NULL)Jasper Lievisse Adriaanse
2009-08-10A few more simple cases of shutdown hooks which only call xxstop, whenTheo de Raadt
2008-11-28Eliminate the redundant bits of code for MTU and multicast handlingBrad Smith
2008-11-25Switch wb(4) from the insane ext buffer usage to a very simple m_devget()Claudio Jeker
2008-10-14Change m_devget()'s outdated and unused "offset" argument: It isChristian Weisgerber
2008-10-02First step towards cleaning up the Ethernet driver ioctl handling.Brad Smith
2008-09-10Convert timeout_add() calls using multiples of hz to timeout_add_sec()Bret Lambert
2007-05-26More comment typos from Diego Casati. Including winners like funtion, allmost,Kenneth R Westerback
2007-05-25"interupt" -> "interrupt" in various comments. Mostly from Diego Casati.Kenneth R Westerback
2006-10-25replace a few more instances of hand rolled code with theBrad Smith
2006-05-28unknown ioctl is ENOTTY not EINVALJason Wright
2006-03-25allow bpf(4) to ignore packets based on their direction (inbound orDamien Miller
2006-03-20de-register.Brad Smith
2005-11-23assume vtophys(vaddr_t) just what all the other archs expect; no functional c...Michael Shalayeff
2005-11-07- splimp -> splnetBrad Smith
2005-09-11do not inline pci_mapreg_map() anymore as it is olrite now; brad@ okMichael Shalayeff
2005-08-09do not set PCI_COMMAND_MASTER_ENABLE explicitly as it's already set in pcisub...Michael Shalayeff
2005-07-02clear IFF_RUNNING & IFF_OACTIVE in foo_stop() before de-allocating resources.Brad Smith
2005-01-15make sure interface is in RUNNING state before touching the multicast filtersBrad Smith
2004-12-11rev 1.51Brad Smith
2004-09-28Use ETHER_MAX_DIX_LEN/ETHER_MIN_LENBrad Smith
2004-09-23don't need to set ifp->if_mtu or ifp->if_output in each driver,Brad Smith
2004-06-06Multicast cleanupsRyan Thomas McBride
2003-08-19missing break.Mike Pechkin
2003-04-26managment -> management;Jason McIntyre