Searched defs:gso_type (Results 1 - 1 of 1) sorted by relevance

/drivers/net/
H A Dmacvtap.c564 unsigned short gso_type = 0; local
565 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
566 switch (vnet_hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
568 gso_type = SKB_GSO_TCPV4;
571 gso_type = SKB_GSO_TCPV6;
574 gso_type = SKB_GSO_UDP;
580 if (vnet_hdr->gso_type & VIRTIO_NET_HDR_GSO_ECN)
581 gso_type |= SKB_GSO_TCP_ECN;
593 if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
595 skb_shinfo(skb)->gso_type
[all...]

Completed in 40 milliseconds