| 2117 | } |
| 2118 | |
| 2119 | static uint8_t |
| 2120 | tx_offload_enabled(struct virtio_hw *hw) |
| 2121 | { |
| 2122 | return virtio_with_feature(hw, VIRTIO_NET_F_CSUM) || |
| 2123 | virtio_with_feature(hw, VIRTIO_NET_F_HOST_TSO4) || |
| 2124 | virtio_with_feature(hw, VIRTIO_NET_F_HOST_TSO6); |
| 2125 | } |
| 2126 | |
| 2127 | /* |
| 2128 | * Configure virtio device |
no test coverage detected