| 2109 | } |
| 2110 | |
| 2111 | static uint8_t |
| 2112 | rx_offload_enabled(struct virtio_hw *hw) |
| 2113 | { |
| 2114 | return virtio_with_feature(hw, VIRTIO_NET_F_GUEST_CSUM) || |
| 2115 | virtio_with_feature(hw, VIRTIO_NET_F_GUEST_TSO4) || |
| 2116 | virtio_with_feature(hw, VIRTIO_NET_F_GUEST_TSO6); |
| 2117 | } |
| 2118 | |
| 2119 | static uint8_t |
| 2120 | tx_offload_enabled(struct virtio_hw *hw) |
no test coverage detected