summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_vmx.c
AgeCommit message (Expand)Author
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
2016-01-26Improve the previous fix: call vmxnet3_load_mbuf, bpf_mtap, and flipReyk Floeter
2016-01-25In vmxnet3_start(), do not send the mbuf to bpf after passing it toReyk Floeter
2016-01-04Record the modified mbuf chain after transmit checksum setup codeMike Belopuhov
2015-11-25replace IFF_OACTIVE manipulation with mpsafe operations.David Gwynne
2015-11-24No need for "vlan.h" if you don't check for "#if NVLAN > 0".Martin Pieuchot
2015-11-24No need to include <net/if_arp.h>Martin Pieuchot
2015-11-24The only network driver needing <net/if_types.h> is upl(4) for IFT_OTHER.Martin Pieuchot
2015-11-23Include <sys/atomic.h> when atomic operations are used.Martin Pieuchot
2015-11-14Do not include <net/if_vlan_var.h> when it's not necessary.Martin Pieuchot
2015-10-25arp_ifinit() is no longer needed.Martin Pieuchot
2015-09-20brad points out i need bpf_mtap_ether to reconstruct vlan headersDavid Gwynne
2015-09-20need to keep bpf in the tx path. got a bit ahead of myself there...David Gwynne
2015-09-18make vmx(4) interrupts mpsafe.David Gwynne
2015-06-24Increment if_ipackets in if_input().Martin Pieuchot
2015-06-04Check if interface was stopped before calling rx/tx interrupt routines.Mike Belopuhov
2015-05-29Revert unrelated changes in previous.Masao Uebayashi
2015-05-29Initial addition of ``Patrol Read'' support in bio(4), biocto(8), andMasao Uebayashi
2015-05-26bump the number of tx and rx descriptors from 128 up to 512.David Gwynne
2015-03-14Remove some includes include-what-you-use claims don'tJonathan Gray
2015-02-10convert VMXNET drivers to ml_enqueue + if_inputMartin Pelikan
2015-02-09fix print/panic messages + remove superfluous if_ibytes additionMartin Pelikan
2014-12-22unifdef INETTed Unangst
2014-12-19Rearrange mostly vmxnet3_init() to look like other Ethernet drivers.Brad Smith
2014-08-26dont base the mru on the mtu. unconditionally make it what theDavid Gwynne
2014-07-22Fewer <netinet/in_systm.h>Martin Pieuchot
2014-07-08Remove left-over call to removed function m_clsetwms().Stefan Sperling
2014-07-08cut things that relied on mclgeti for rx ring accounting/restriction overDavid Gwynne
2014-01-22- Unconditionally set IFCAP_VLAN_MTUBrad Smith
2013-11-11bump the ring sizes up.David Gwynne
2013-11-08advertise the ring sizes through the stack. specifically:David Gwynne
2013-09-08Unbreak vmx(4) on i386. The right shift of 32 bits for the DSHReyk Floeter
2013-08-28vmx(4) uses 4 different types of 128bit descriptors in little-endianReyk Floeter
2013-06-22Prefix all functions. Pointed out by brad@.Masao Uebayashi
2013-06-21De-static.Masao Uebayashi
2013-06-12Don't rely on __attribute__((__aligned__(x))) GCC extension. Explicitly pad ...Masao Uebayashi
2013-06-12Consistenly use bpf_mtap_ether(). From tsubai@.Masao Uebayashi
2013-06-12Almost identical diffs from brad@ and dlg@:Masao Uebayashi
2013-06-10Make use of pci_matchbyid().Brad Smith
2013-06-08Remove redundant code setting PCI_COMMAND_MASTER_ENABLE as this is alreadyBrad Smith
2013-06-05tweak vmxnet3_load_mbuf to use m_pulldown to safely reach into the mbuf forDavid Gwynne
2013-06-03vmxnet3_load_mbuf() could replace the mbuf but did not return the newReyk Floeter
2013-06-03Use IF_POLL to check for available transmit descriptors before IF_DEQUEUE.Reyk Floeter
2013-05-31Add vmx(4), driver for VMware's VMXNET3 ethernet controller, written for IIJ.uebayasi