Importing slightly modified virtio-net by vsrinivas
authorImre Vadasz <imre@vdsz.com>
Sat, 19 Apr 2014 16:44:45 +0000 (18:44 +0200)
committerSascha Wildner <saw@online.de>
Mon, 21 Apr 2014 21:40:43 +0000 (23:40 +0200)
commitfaa875a424df6c2018178b84f5b73a0971999fde
tree342ba4c252d07fe699f6b0469013005ee8925f9b
parent11c3c8f76065dbf3cb8a3a5a299b1777b71274d9
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
12 files changed:
share/man/man4/Makefile
share/man/man4/virtio.4
share/man/man4/vtnet.4 [new file with mode: 0644]
sys/conf/files
sys/config/GENERIC
sys/config/LINT
sys/config/LINT64
sys/config/X86_64_GENERIC
sys/dev/virtual/virtio/Makefile
sys/dev/virtual/virtio/net/Makefile [new file with mode: 0644]
sys/dev/virtual/virtio/net/if_vtnet.c [new file with mode: 0644]
sys/dev/virtual/virtio/net/virtio_net.h [new file with mode: 0644]