Age | Commit message (Expand) | Author |
2014-07-22 | Fewer <netinet/in_systm.h> | Martin Pieuchot |
2014-07-08 | cut things that relied on mclgeti for rx ring accounting/restriction over | David Gwynne |
2014-04-19 | sigh, another driver fiddling with altq outside #ifdef ALTQ | Henning Brauer |
2013-12-28 | The few network drivers that called their children's (ie. mii PHY | Theo de Raadt |
2013-12-06 | Add a DVACT_WAKEUP op to the *_activate() API. This is called after the | Theo de Raadt |
2013-08-21 | get rid of the copy argument in m_devget that let you provide an | David Gwynne |
2013-08-07 | Most network drivers include netinet/in_var.h, but apparently they | Alexander Bluhm |
2013-03-07 | remove spurious semicolon at end of if statement in vr_watchdog. | Stuart Henderson |
2013-02-09 | Programme the VT6105M, VT6105 and RhineII-2 to permit frames of up to | Stuart Henderson |
2013-01-28 | Add TX interrupt mitigation for vr(4) chips, loosely based on FreeBSD, | Darren Tucker |
2013-01-17 | Don't try to access m_head after it may be freed (unlikely for VT6105M, | Chris Cappuccio |
2013-01-16 | fix typo in comment | Darren Tucker |
2013-01-16 | Add hardware VLAN tag/untag support for VT6105M chips. Help/feedback/ok | Darren Tucker |
2013-01-16 | Keep a count of packets added to the chip's TX queue and only poke the chip | Darren Tucker |
2012-12-01 | Don't bother to zero initialize the if_capabilities field first and | Brad Smith |
2012-11-29 | Remove setting an initial assumed baudrate upon driver attach which is not | Brad Smith |
2012-11-23 | set ifp->if_baudrate with IF_Gbps() / IF_Mbps(). | Gleydson Soares |
2012-11-15 | Do not try to transmit packets if the interface is not running. | Joel Sing |
2012-10-20 | Implement transmit DMA segments. The descriptor usage is from FreeBSD, | Chris Cappuccio |
2012-10-18 | Convert a number of old private copies of code which predates | Theo de Raadt |
2012-09-18 | Wait until all xfers have finished before giving up DMA buffer mappings. | Gerhard Roth |
2012-01-30 | Remove redundant call to vr_reset. From Bryan Steele, ok mikeb@ | Stuart Henderson |
2012-01-05 | suspend/resume support for vr(4); from brynet@gmail.com | Theo de Raadt |
2011-12-08 | add timeout to fill rx-ring in case of mbuf shortage while in vr_intr(); | Markus Friedl |
2011-06-22 | kill a few more casts that aren't helpful. ok krw miod | Ted Unangst |
2011-04-20 | do not disable interrupts in the isr and then enable them again | David Gwynne |
2011-04-05 | mechanic rename M_{TCP|UDP}V4_CSUM_OUT -> M_{TCP|UDP}_CSUM_OUT | Henning Brauer |
2011-03-13 | Wake On LAN support for vr(4). | Stefan Sperling |
2011-01-13 | Get rid of "forever" loop in the interrupt handler such that we drop out of the | Mark Kettenis |
2010-09-03 | bus_dmamap_sync() freshly initialized Rx descriptors before flipping the bit | Mark Kettenis |
2010-05-19 | BUS_DMA_ZERO instead of alloc, map, bzero. | Owain Ainsworth |
2009-11-25 | Just some minor cleanup. OK deraadt@ | Claudio Jeker |
2009-11-25 | Consider any tx buffer that is freed in vr_stop() to be an unsent | Theo de Raadt |
2009-11-25 | Re-enable the debug messages from bus errors and tx underruns so that | Theo de Raadt |
2009-11-25 | Do not call vr_stop() and vr_reset() before calling vr_init(), because | Theo de Raadt |
2009-08-13 | - consistify cfdriver for the ethernet drivers (0 -> NULL) | Jasper Lievisse Adriaanse |
2009-08-10 | A few more simple cases of shutdown hooks which only call xxstop, when | Theo de Raadt |
2009-08-09 | MCLGETI() will now allocate a mbuf header if it is not provided, thus | Theo de Raadt |
2009-06-18 | Remove the if (1) that makes blambert@ cry. Appreciated blambert@ | Claudio Jeker |
2009-06-18 | MCLGETI support for vr(4) interfaces. This will make the newer soekris and | Claudio Jeker |
2009-06-04 | move redundant bus_dmamap_sync calls outside an if/else block. | Stuart Henderson |
2009-05-29 | Return the RX descriptor after pointing it to the new mbuf. | Marco Pfatschbacher |
2009-05-21 | always set VR_RXCFG_RX_MULTI when setting the chip into promiscuous | Stuart Henderson |
2009-05-12 | cleanup and simplify promiscuous/multicast setup (setmulti -> iff). | Stuart Henderson |
2009-05-12 | Fix the URL for datasheets. | Stuart Henderson |
2009-05-11 | in the case where mbufs had to be copied _and_ checksums were enabled, | Stuart Henderson |
2009-05-11 | preliminary parts for hw vlan tag insertion/removal, ideas gleaned from | Stuart Henderson |
2009-05-11 | On VT6105M, use hardware IP, TCP and UDP checksums in and out. Tested on | Stuart Henderson |
2009-05-11 | Start using VR_RXSTAT_RX_OK instead of VR_RXSTAT_ERR (It exists | Stuart Henderson |
2009-05-10 | - fix whitespace problems (introduces no change with diff -w) | Stuart Henderson |