summaryrefslogtreecommitdiff
path: root/sys/dev/virtio/network
Commit message (Expand)AuthorAgeFilesLines
* net: Remove unneeded NULL check for the allocated ifnetZhenlei Huang2024-07-121-13/+3
* vtnet: set VNET context in RX handlerGleb Smirnoff2024-04-161-0/+2
* vtnet: Avoid ifdefs based on __NO_STRICT_ALIGNMENTWarner Losh2024-02-191-12/+12
* vtnet: Account for the padding when selecting allocation sizeWarner Losh2024-02-192-1/+16
* vtnet: Adjust for ethernet alignment.Warner Losh2024-02-191-0/+21
* virtio(4): Fix a typo in a source code commentGordon Bergling2024-01-251-1/+1
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* sys: Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-162-4/+0
* vtnet: allow IFF_ALLMULTI to be set without VIRTIO_NET_F_CTRL_RXKristof Provost2023-08-111-2/+5
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-122-2/+2
* net: replace IFF_KNOWSEPOCH with IFF_NEEDSEPOCHGleb Smirnoff2023-04-171-2/+1
* net: use pfil_mbuf_{in,out} where we always have an mbufGleb Smirnoff2023-02-141-5/+1
* Mechanically convert if_vtnet(4) to IfAPIJustin Hibbits2023-01-242-169/+167
* virtio: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin2022-05-061-4/+1
* if_vtnet: improve dumping a kernelMichael Tuexen2022-04-181-1/+20
* vtnet: offset is only used for INET or INET6.John Baldwin2022-04-131-0/+6
* if_vtnet(4): Restore the ability to set promisc mode.Aleksandr Fedorov2022-02-051-3/+7
* vtnet: Mark MRG_RXBUF headers as initialized before loading fieldsMark Johnston2022-01-201-0/+1
* vtnet: don't leak pfil(9) data on detachGleb Smirnoff2022-01-051-0/+5
* virtio: plug some of set-but-not-used varsMateusz Guzik2021-12-141-0/+6
* vtnet: plug set-but-not-used varsMateusz Guzik2021-12-141-5/+5
* virtio: Add KMSAN hooks for network and block devicesMark Johnston2021-08-111-1/+4
* virtio: enable VTNET_LEGACY_TX when ALTQ is enabled.Luiz Otavio O Souza2021-07-291-0/+4
* Fix vtnet TCP lro panicAlexander V. Chernikov2021-04-191-1/+2
* vtnet: fix TSO for TCP/IPv6Michael Tuexen2021-03-181-4/+4
* if_vtnet: Fix pointer-sign and used parameter warningsAlex Richardson2021-02-222-24/+24
* virtio: Reduce boilerplate for device driver module definitionsJessica Clarke2021-01-211-6/+2
* virtio: Handle possible failure of virtio_finalize_features()Bryan Venteicher2021-01-191-8/+17
* if_vtnet: Add counter for received host LROBryan Venteicher2021-01-192-0/+4
* if_vtnet: Misc Tx path cleanupBryan Venteicher2021-01-192-29/+41
* if_vtnet: Set lro_nsegs for host LRO packetsBryan Venteicher2021-01-191-0/+10
* if_vtnet: Resort softc fieldsBryan Venteicher2021-01-191-7/+7
* if_vtnet: Remove unnecessary TUNABLE_INTs because of CTLFLAG_RDTUNBryan Venteicher2021-01-191-15/+9
* if_vtnet: Schedule Rx task if pending items when enabling interruptBryan Venteicher2021-01-191-4/+10
* if_vtnet: Disable F_MTU feature if MTU is invalidBryan Venteicher2021-01-192-0/+15
* if_vtnet: Limit allocations of unused virtqueuesBryan Venteicher2021-01-191-13/+27
* if_vtnet: Rework 4be723f63 max multiqueue pairs checkBryan Venteicher2021-01-192-18/+32
* if_vtnet: Add support for software LROBryan Venteicher2021-01-192-24/+122
* if_vtnet: Set the interface max TSO valuesBryan Venteicher2021-01-191-1/+16
* if_vtnet: Add support for CTRL_GUEST_OFFLOADS featureBryan Venteicher2021-01-192-31/+127
* if_vtnet: Move ioctl handlers into separate functionsBryan Venteicher2021-01-191-62/+106
* if_vtnet: Cleanup the reinit processBryan Venteicher2021-01-192-46/+46
* if_vtnet: Cleanup the interface setup methodsBryan Venteicher2021-01-191-38/+21
* if_vtnet: Only set IFCAP_JUMBO_MTU when jumbo MTU is supportedBryan Venteicher2021-01-191-4/+7
* if_vtnet: Move the Tx interrupt threshold into the Txq structureBryan Venteicher2021-01-192-36/+33
* if_vtnet: Defer updating generated MAC address until attachedBryan Venteicher2021-01-191-23/+37
* if_vtnet: Remove at attach PROMISC handlingBryan Venteicher2021-01-191-25/+0
* if_vtnet: Support VIRTIO_NET_F_SPEED_DUPLEXBryan Venteicher2021-01-192-23/+39
* if_vtnet: Support VIRTIO_NET_F_MTUBryan Venteicher2021-01-192-5/+12
* if_vtnet: Rx path cleanupBryan Venteicher2021-01-192-310/+295