Lines Matching refs:gso
808 struct xen_netif_extra_info *gso;
810 gso = (struct xen_netif_extra_info *)
815 gso->u.gso.size = skb_shinfo(skb)->gso_size;
816 gso->u.gso.type = (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) ?
819 gso->u.gso.pad = 0;
820 gso->u.gso.features = 0;
822 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
823 gso->flags = 0;
1133 struct xen_netif_extra_info *gso)
1135 if (!gso->u.gso.size) {
1141 if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4 &&
1142 gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV6) {
1144 pr_warn("Bad GSO type %d\n", gso->u.gso.type);
1148 skb_shinfo(skb)->gso_size = gso->u.gso.size;
1150 (gso->u.gso.type == XEN_NETIF_GSO_TYPE_TCPV4) ?
1317 struct xen_netif_extra_info *gso;
1318 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1320 if (unlikely(xennet_set_skb_gso(skb, gso))) {
1492 !xenbus_read_unsigned(np->xbdev->otherend, "feature-gso-tcpv4", 0))
1496 !xenbus_read_unsigned(np->xbdev->otherend, "feature-gso-tcpv6", 0))
2405 err = xenbus_printf(xbt, dev->nodename, "feature-gso-tcpv4", "%d", 1);
2407 message = "writing feature-gso-tcpv4";
2411 err = xenbus_write(xbt, dev->nodename, "feature-gso-tcpv6", "1");
2413 message = "writing feature-gso-tcpv6";