summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_vmx.c
AgeCommit message (Expand)Author
2022-03-11Constify struct cfattach.Martin Pieuchot
2022-01-09spellingJonathan Gray
2021-08-09Remove useless code. The driver_data is ignored by the host system.jan
2021-07-23pci_intr_msix_count() is the function that drivers using multiple MSI-XJonathan Matthew
2020-12-12Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp.jan
2020-07-10Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API.Patrick Wildt
2020-07-07apparently vmx(4) needs a power of 2 number of interrupts.David Gwynne
2020-07-07add kstat support for reading the "hardware" counters for each ring.David Gwynne
2020-06-25report rx ring state for all rings, not just the first one.David Gwynne
2020-06-24actually use pci_intr_establish_cpu with cpus from the intrmap.David Gwynne
2020-06-17if the chip did rss, use the hash from the chip as an mbuf flowid.David Gwynne
2020-06-17enable multiple queues (and interrupts on multiple cpus) on vmx(4).David Gwynne
2020-06-16configure toeplitz using the kernel stoeplitz key if needed.David Gwynne
2020-05-28Use MSI-X interrupts where available, and rearrange structures to allowJonathan Matthew
2019-10-27tweak the rx path to look more like the tx path.David Gwynne
2019-10-27fix the last commit.David Gwynne
2019-10-26put vlan tag offload back inDavid Gwynne
2019-10-26make vmx transmit (vmxnet3_start) mpsafe.David Gwynne
2019-10-26avoid rxr races between rxfill from the interrupt and timeout pathsDavid Gwynne
2019-08-06remove some debug cruft i should have removed before the last commit.David Gwynne
2019-08-06have a go at using msi interrupts.David Gwynne
2019-08-06i replaced a misplaced tab with g, not a space. make this work again.David Gwynne
2019-08-06if the rx ring gets empty and can't be filled, retry in the futureDavid Gwynne
2019-08-06use ifiq_input so we can call if_rxr_livelocked to apply backpressureDavid Gwynne
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