summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_vr.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp.jan2020-12-121-2/+2
* Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API.patrick2020-07-101-3/+3
* Change users of IFQ_DEQUEUE(), IFQ_ENQUEUE() and IFQ_LEN() to use thepatrick2020-07-101-2/+2
* use ifiq_input and use it's return value to apply backpressure to rxrs.dlg2020-06-221-3/+4
* move counting if_opackets next to counting if_obytes in if_enqueue.dlg2017-01-221-2/+1
* G/C IFQ_SET_READY().mpi2016-04-131-2/+1
* Ethernet drivers no longer need to include if_vlan_var.h for the VLANnaddy2016-03-151-5/+1
* prettify a NULL test in vr_start.dlg2016-01-261-2/+2
* dont leak mbufs on encap failure.dlg2016-01-261-1/+2
* replace IFF_OACTIVE manipulation with mpsafe operations.dlg2015-11-251-6/+7
* You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.mpi2015-11-241-2/+1
* No need to include <net/if_types.h> for <net/if_vlan_var.h>mpi2015-11-241-2/+1
* rework the code to avoid IF_PREPEND.dlg2015-11-091-58/+43
* arp_ifinit() is no longer needed.mpi2015-10-251-4/+1
* Fix 802.1p VLAN priority code points for VLAN_HWTAGGING.chrisz2015-10-201-4/+9
* More ifmedia64 fallout; that should be the last.miod2015-09-121-3/+3
* Increment if_ipackets in if_input().mpi2015-06-241-3/+1
* Now that if_input() set the receiving interface pointer on mbufs for usmpi2015-04-131-3/+2
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* convert to if_input()jasper2015-03-131-11/+5
* unifdef INETtedu2014-12-221-5/+1
* rxr ioctl handling.brad2014-11-271-1/+6
* Fewer <netinet/in_systm.h>mpi2014-07-221-3/+1
* cut things that relied on mclgeti for rx ring accounting/restriction overdlg2014-07-081-14/+16
* sigh, another driver fiddling with altq outside #ifdef ALTQhenning2014-04-191-5/+2
* The few network drivers that called their children's (ie. mii PHYderaadt2013-12-281-2/+1
* Add a DVACT_WAKEUP op to the *_activate() API. This is called after thederaadt2013-12-061-4/+4
* get rid of the copy argument in m_devget that let you provide andlg2013-08-211-2/+2
* Most network drivers include netinet/in_var.h, but apparently theybluhm2013-08-071-2/+1
* remove spurious semicolon at end of if statement in vr_watchdog.sthen2013-03-071-2/+2
* Programme the VT6105M, VT6105 and RhineII-2 to permit frames of up tosthen2013-02-091-5/+13
* Add TX interrupt mitigation for vr(4) chips, loosely based on FreeBSD,dtucker2013-01-281-7/+32
* Don't try to access m_head after it may be freed (unlikely for VT6105M,chris2013-01-171-10/+11
* fix typo in commentdtucker2013-01-161-2/+2
* Add hardware VLAN tag/untag support for VT6105M chips. Help/feedback/okdtucker2013-01-161-1/+41
* Keep a count of packets added to the chip's TX queue and only poke the chipdtucker2013-01-161-2/+4
* Don't bother to zero initialize the if_capabilities field first andbrad2012-12-011-4/+5
* Remove setting an initial assumed baudrate upon driver attach which is notbrad2012-11-291-2/+1
* set ifp->if_baudrate with IF_Gbps() / IF_Mbps().gsoares2012-11-231-2/+2
* Do not try to transmit packets if the interface is not running.jsing2012-11-151-2/+5
* Implement transmit DMA segments. The descriptor usage is from FreeBSD,chris2012-10-201-91/+147
* Convert a number of old private copies of code which predatesderaadt2012-10-181-35/+2
* Wait until all xfers have finished before giving up DMA buffer mappings.gerhard2012-09-181-1/+12
* Remove redundant call to vr_reset. From Bryan Steele, ok mikeb@sthen2012-01-301-2/+1
* suspend/resume support for vr(4); from brynet@gmail.comderaadt2012-01-051-23/+57
* add timeout to fill rx-ring in case of mbuf shortage while in vr_intr();markus2011-12-081-2/+22
* kill a few more casts that aren't helpful. ok krw miodtedu2011-06-221-7/+5
* do not disable interrupts in the isr and then enable them againdlg2011-04-201-7/+1
* mechanic rename M_{TCP|UDP}V4_CSUM_OUT -> M_{TCP|UDP}_CSUM_OUThenning2011-04-051-3/+3
* Wake On LAN support for vr(4).stsp2011-03-131-1/+39