aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/virtio/network
Commit message (Expand)AuthorAgeFilesLines
...
* Convert to if_foreach_llmaddr() KPI.Gleb Smirnoff2019-10-211-41/+38
* tap: add support for virtio-net offloadsVincenzo Maffione2019-10-181-0/+293
* Split out a more generic debugnet(4) from netdump(4)Conrad Meyer2019-10-171-12/+12
* virtio(4): Add PNP match metadata for virtio devicesConrad Meyer2019-06-041-7/+5
* Remove non-functional SCTP checksum offload support for virtio.Michael Tuexen2019-05-072-11/+2
* vtnet: fix typo in vtnet_free_taskqueuesVincenzo Maffione2019-01-291-1/+1
* vtnet: fix netmap supportVincenzo Maffione2018-11-142-34/+42
* ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy2018-05-181-3/+2
* Add netdump support to vtnet(4).Mark Johnston2018-05-061-5/+76
* Revert r327828, r327949, r327953, r328016-r328026, r328041:Pedro F. Giffuni2018-01-211-4/+3
* dev: make some use of mallocarray(9).Pedro F. Giffuni2018-01-131-3/+4
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-272-0/+4
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-0/+2
* vtnet: Support jumbo frames without TSO/GSOKristof Provost2017-07-291-1/+1
* vtnet: don't update VLAN filter when parent is not runningPhilip Paeps2017-02-131-0/+1
* Fix vtnet hang with max_virtqueue_pairs > VTNET_MAX_QUEUE_PAIRSSteven Hartland2016-08-112-24/+38
* vtnet: fix panic on unloadKristof Provost2016-05-141-8/+9
* Lower the compiler warning: unused-but-set-variable.Marcelo Araujo2015-09-031-4/+0
* add netmap dependency when compiled as a moduleLuigi Rizzo2015-07-101-0/+3
* Fix panic when adding vtnet interfaces to a bridgeKristof Provost2015-06-131-2/+6
* Fix typo when deregistering the VLAN unconfig event handlerBryan Venteicher2015-06-131-1/+1
* Don't free mbufs when stopping an interface in netmap mode.John Baldwin2015-04-291-0/+5
* Add softc flag for when the indirect descriptor feature was negotiatedBryan Venteicher2015-01-012-2/+5
* Use the appropriate IPv4 or IPv6 TSO HW assist flagBryan Venteicher2015-01-011-2/+2
* Attach vtnet to virtio_mmio. Qemu provides this as an option with AArch64.Andrew Turner2014-12-291-0/+2
* Start process of removing the use of the deprecated "M_FLOWID" flagHans Petter Selasky2014-12-011-2/+3
* Enable LRO by default when available on vtnet interfacesBryan Venteicher2014-11-091-7/+6
* - Provide if_get_counter() method for vtnet(4).Gleb Smirnoff2014-09-181-62/+57
* Use define from if_var.h to access a field inside struct if_data,Gleb Smirnoff2014-08-301-1/+1
* Update to the current version of netmap.Luigi Rizzo2014-08-161-0/+37
* Rework when the Tx queue completion interrupt is enabledBryan Venteicher2014-07-102-65/+155
* Force two byte alignment for all control message headersBryan Venteicher2014-06-161-5/+5
* Make the feature negotiation code easier to followBryan Venteicher2014-06-161-22/+23
* - Remove two write-only local variablesBryan Venteicher2014-06-162-5/+0
* make sure ifp->if_transmit returns 0 if a buffer is enqueued.Luigi Rizzo2014-06-041-2/+1
* Since 32-bit if_baudrate isn't enough to describe a baud rate of a 10 GbitGleb Smirnoff2014-03-131-1/+1
* Use m_defrag() instead of m_collapse() to compact a long mbuf chainBryan Venteicher2014-02-022-14/+16
* Do not place the sglist used for Rx/Tx on the stackBryan Venteicher2014-02-022-38/+65
* Check for a full virtqueue in the multiqueue transmit pathBryan Venteicher2014-01-251-0/+6
* Avoid queue unlock followed by relock when the enable interrupt race is lostBryan Venteicher2014-01-251-5/+7
* Move duplicated transmit start code into a single functionBryan Venteicher2014-01-251-23/+22
* Remove stray spaceBryan Venteicher2014-01-251-1/+1
* Also include the mbuf's csum_flags in an assert messageBryan Venteicher2014-01-251-1/+2
* Read and write the MAC address in the config space byte by byteBryan Venteicher2014-01-251-5/+11
* Include necessary headers that now are available due to pollutionGleb Smirnoff2013-10-281-0/+1
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* Do not hold the vtnet Rx queue lock when calling up into the stackBryan Venteicher2013-10-051-2/+6
* Complete any pending Tx frames before attempting the next transmitBryan Venteicher2013-09-032-0/+10
* Fix build with gccEitan Adler2013-09-011-1/+1
* Import multiqueue VirtIO net driver from my user/bryanv/vtnetmq branchBryan Venteicher2013-09-012-1326/+2540