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