History log of /dflybsd-src/sys/dev/virtual/virtio/net/virtio_net.h (Results 1 – 3 of 3)
Revision Date Author Comments
# 10039f4e 29-Oct-2015 Imre Vadász <imre@vdsz.com>

if_vtnet: Recognize VIRTIO_NET_F_CTRL_GUEST_OFFLOADS feature bit.

Just adds the #define and prints a name for the feature bit instead of
the raw hex number in dmesg.


# 23ff515a 25-Oct-2015 Imre Vadász <imre@vdsz.com>

if_vtnet: Use SetMacAddress feature; Add some new feature flags.

* If the VTNET_FLAG_CTRL_MAC and VTNET_FLAG_CTRL_RX features are
available, we should set the MAC address via a control message.

*

if_vtnet: Use SetMacAddress feature; Add some new feature flags.

* If the VTNET_FLAG_CTRL_MAC and VTNET_FLAG_CTRL_RX features are
available, we should set the MAC address via a control message.

* Add VIRTIO_NET_F_GUEST_ANNOUNCE feature flag.
* Add VIRTIO_CONFIG_STATUS_DEVICE_NEEDS_RESET device status bit.

* Do some reordering of function declarations/implementations to reduce
differences to FreeBSD's code a bit.

Taken-From: FreeBSD

show more ...


# faa875a4 19-Apr-2014 Imre Vadasz <imre@vdsz.com>

Importing slightly modified virtio-net by vsrinivas

* TSO and LRO are off for now by default.

* Makefile changes. Adapting manpages. Fixing a typo in vtnet_tx_offload.

* Allocating tx headers with

Importing slightly modified virtio-net by vsrinivas

* TSO and LRO are off for now by default.

* Makefile changes. Adapting manpages. Fixing a typo in vtnet_tx_offload.

* Allocating tx headers with contigmalloc during attach instead of using
kmalloc in the transmit path.
In the worst case we need one tx header for two virtqueue ring entries.

* Additionally some whitespace fixes

show more ...