Searched refs:gso_type (Results 26 - 50 of 101) sorted by relevance

12345

/linux-master/drivers/net/ethernet/fungible/funeth/
H A Dfuneth_tx.c186 if (shinfo->gso_type & (SKB_GSO_UDP_TUNNEL |
190 if (shinfo->gso_type & SKB_GSO_UDP_TUNNEL_CSUM)
219 } else if (shinfo->gso_type & SKB_GSO_UDP_L4) {
242 if (shinfo->gso_type & SKB_GSO_TCPV6)
/linux-master/drivers/net/ethernet/huawei/hinic/
H A Dhinic_tx.c290 u32 gso_type = skb_shinfo(skb)->gso_type; local
310 if (gso_type & SKB_GSO_UDP_TUNNEL_CSUM) {
313 } else if (gso_type & SKB_GSO_UDP_TUNNEL) {
/linux-master/drivers/net/ethernet/qlogic/qede/
H A Dqede_fp.c192 unsigned short gso_type = skb_shinfo(skb)->gso_type; local
194 if ((gso_type & SKB_GSO_UDP_TUNNEL_CSUM) ||
195 (gso_type & SKB_GSO_GRE_CSUM))
656 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
658 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
928 skb_shinfo(skb)->gso_type = 0;
/linux-master/drivers/net/ethernet/sun/
H A Dsunvnet_common.c1211 skb_shinfo(nskb)->gso_type = skb_shinfo(skb)->gso_type;
1230 int gso_size, gso_type, gso_segs; local
1251 gso_type = skb_shinfo(skb)->gso_type;
1290 skb_shinfo(curr)->gso_type = gso_type;
/linux-master/drivers/net/ethernet/intel/iavf/
H A Diavf_txrx.c1535 if (skb_shinfo(skb)->gso_type & (SKB_GSO_GRE |
1541 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) &&
1542 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM)) {
1572 if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) {
1695 !(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) &&
1696 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM))
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_txrx.c1890 gso_ena = skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL;
1893 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM))
2060 if (skb_shinfo(skb)->gso_type & (SKB_GSO_GRE |
2066 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) &&
2067 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM)) {
2098 if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) {
/linux-master/tools/testing/selftests/net/
H A Dpsock_snd.c94 vh->gso_type = VIRTIO_NET_HDR_GSO_UDP;
/linux-master/drivers/net/xen-netback/
H A Dcommon.h74 int gso_type; member in struct:xenvif_rx_meta
/linux-master/net/ipv4/
H A Daf_inet.c1410 udpfrag = !!(skb_shinfo(skb)->gso_type & SKB_GSO_UDP);
1411 fixedid = !!(skb_shinfo(skb)->gso_type & SKB_GSO_TCP_FIXEDID);
1428 gso_partial = !!(skb_shinfo(segs)->gso_type & SKB_GSO_PARTIAL);
1471 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_IPXIP4))
1638 skb_shinfo(skb)->gso_type |= SKB_GSO_IPXIP4;
/linux-master/arch/um/drivers/
H A Dvector_transports.c201 if ((vheader->gso_type != VIRTIO_NET_HDR_GSO_NONE) &&
/linux-master/drivers/net/wireless/ath/wil6210/
H A Dtxrx_edma.c1413 int gso_type; local
1435 gso_type = skb_shinfo(skb)->gso_type & (SKB_GSO_TCPV6 | SKB_GSO_TCPV4);
1436 switch (gso_type) {
H A Dtxrx.c1763 int gso_type; local
1787 gso_type = skb_shinfo(skb)->gso_type & (SKB_GSO_TCPV6 | SKB_GSO_TCPV4);
1788 switch (gso_type) {
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_rx.c1182 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1202 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1240 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_L4;
1259 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_L4;
1287 skb_shinfo(skb)->gso_type |= SKB_GSO_TCPV4;
1289 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_FIXEDID;
1295 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
1311 skb_shinfo(skb)->gso_type |= SKB_GSO_TCPV6;
1316 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_fcoe.c500 if (skb_is_gso(skb) && (skb_shinfo(skb)->gso_type != SKB_GSO_FCOE)) {
502 skb_shinfo(skb)->gso_type);
/linux-master/drivers/net/ethernet/intel/idpf/
H A Didpf_singleq_txrx.c101 !(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) &&
102 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM))
/linux-master/net/core/
H A Dgro.c505 (skb_shinfo(skb)->gso_type & SKB_GSO_DODGY))
663 skb_shinfo(skb)->gso_type = 0;
H A Dskbuff.c1319 sh->gso_size, sh->gso_type, sh->gso_segs,
2085 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
2119 if (WARN_ON_ONCE(skb_shinfo(skb)->gso_type & SKB_GSO_FRAGLIST))
2457 if (WARN_ON_ONCE(skb_shinfo(skb)->gso_type & SKB_GSO_FRAGLIST))
2848 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
4610 if ((skb_shinfo(head_skb)->gso_type & SKB_GSO_DODGY) &&
4645 !net_gso_ok(features, skb_shinfo(head_skb)->gso_type))
4900 int type = skb_shinfo(head_skb)->gso_type;
4913 skb_shinfo(iter)->gso_type
[all...]
H A Dfilter.c3306 if (shinfo->gso_type & SKB_GSO_TCPV4) {
3307 shinfo->gso_type &= ~SKB_GSO_TCPV4;
3308 shinfo->gso_type |= SKB_GSO_TCPV6;
3336 if (shinfo->gso_type & SKB_GSO_TCPV6) {
3337 shinfo->gso_type &= ~SKB_GSO_TCPV6;
3338 shinfo->gso_type |= SKB_GSO_TCPV4;
3454 unsigned int gso_type = SKB_GSO_DODGY; local
3459 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) ||
3513 gso_type |= SKB_GSO_UDP_TUNNEL;
3515 gso_type |
[all...]
/linux-master/drivers/net/ethernet/google/gve/
H A Dgve_rx_dqo.c876 shinfo->gso_type = SKB_GSO_TCPV4;
879 shinfo->gso_type = SKB_GSO_TCPV6;
/linux-master/net/openvswitch/
H A Dflow.c718 skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
844 if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
H A Ddatapath.c351 unsigned int gso_type = skb_shinfo(skb)->gso_type; local
363 if (gso_type & SKB_GSO_UDP) {
374 if (gso_type & SKB_GSO_UDP && skb != segs)
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dsge.c738 } else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) {
785 } else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) {
1372 if (ssi->gso_type & SKB_GSO_TCPV6)
1597 if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4)
1604 if (ssi->gso_size && !(ssi->gso_type & SKB_GSO_UDP_L4)) {
1925 bool v6 = (ssi->gso_type & SKB_GSO_TCPV6) != 0;
2166 !(skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4))
2202 !(skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4))
2363 if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4)
/linux-master/drivers/net/ethernet/marvell/octeontx2/nic/
H A Dotx2_txrx.c675 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
684 } else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) {
687 } else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) {
/linux-master/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_io.c1341 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1343 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1863 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1865 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
/linux-master/include/net/
H A Dip_tunnels.h611 skb_shinfo(skb)->gso_type &= ~(NETIF_F_GSO_ENCAP_ALL >>

Completed in 562 milliseconds

12345