Home
last modified time | relevance | path

Searched refs:IFCAP_TSO6 (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/sys/dev/liquidio/
H A Dlio_ioctl.c185 if (features & IFCAP_TSO6) in lio_ioctl()
236 if (if_getcapabilities(ifp) & IFCAP_TSO6) { in lio_set_tso6()
237 if_togglecapenable(ifp, IFCAP_TSO6); in lio_set_tso6()
238 if (if_getcapenable(ifp) & IFCAP_TSO6) in lio_set_tso6()
/freebsd/sys/dev/mxge/
H A Dif_mxge_var.h64 #ifndef IFCAP_TSO6
65 #define IFCAP_TSO6 0 macro
H A Dif_mxge.c1722 #if IFCAP_TSO6 && defined(INET6) in mxge_parse_tx()
1760 #if IFCAP_TSO6 && defined(INET6) in mxge_parse_tx()
4081 #if IFCAP_TSO6 in mxge_ioctl()
4084 mask &= ~IFCAP_TSO6; in mxge_ioctl()
4086 IFCAP_TXCSUM_IPV6 | IFCAP_TSO6); in mxge_ioctl()
4102 if (mask & IFCAP_TSO6) { in mxge_ioctl()
4103 if (IFCAP_TSO6 & if_getcapenable(ifp)) { in mxge_ioctl()
4104 if_setcapenablebit(ifp, 0, IFCAP_TSO6); in mxge_ioctl()
4106 if_setcapenablebit(ifp, IFCAP_TSO6, 0); in mxge_ioctl()
4755 if_setcapabilitiesbit(ifp, IFCAP_TSO6, 0); in mxge_attach()
/freebsd/sys/dev/sfxge/
H A Dsfxge.c77 IFCAP_TSO4 | IFCAP_TSO6 | \
475 if ((capchg_mask & IFCAP_TSO6) && in sfxge_if_ioctl()
476 (reqcap & (IFCAP_TSO6 | IFCAP_TXCSUM_IPV6)) == IFCAP_TSO6) { in sfxge_if_ioctl()
497 if (reqcap & IFCAP_TSO6) { in sfxge_if_ioctl()
498 reqcap &= ~IFCAP_TSO6; in sfxge_if_ioctl()
/freebsd/sys/net/
H A Dif.h275 #define IFCAP_TSO6 IFCAP_BIT(IFCAP_B_TSO6) macro
309 #define IFCAP_TSO (IFCAP_TSO4 | IFCAP_TSO6)
H A Dif_vxlan.c3084 reqcap & IFCAP_TSO6) { in vxlan_set_reqcap()
3085 reqcap &= ~IFCAP_TSO6; in vxlan_set_reqcap()
3095 if (mask & IFCAP_TSO6 && reqcap & IFCAP_TSO6 && in vxlan_set_reqcap()
H A Dif_tuntap.c1244 if (ifp->if_capenable & IFCAP_TSO6) in tun_caps_changed()
/freebsd/sys/dev/iavf/
H A Diavf_iflib.h114 (IFCAP_TSO4 | IFCAP_TSO6 | \
/freebsd/sys/dev/mana/
H A Dmana_en.c249 if ((IFCAP_TSO6 & if_getcapenable(ifp)) && in mana_ioctl()
251 mask &= ~IFCAP_TSO6; in mana_ioctl()
252 if_setcapenablebit(ifp, 0, IFCAP_TSO6); in mana_ioctl()
280 if (mask & IFCAP_TSO6) { in mana_ioctl()
281 if (!(IFCAP_TSO6 & if_getcapenable(ifp)) && in mana_ioctl()
288 if_togglecapenable(ifp, IFCAP_TSO6); in mana_ioctl()
2947 IFCAP_TSO4 | IFCAP_TSO6 | in mana_probe_port()
2960 if (if_getcapenable(ndev) & (IFCAP_TSO4 | IFCAP_TSO6)) in mana_probe_port()
/freebsd/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_netdev.c2021 if (IFCAP_TSO6 & if_getcapenable(dev) && in mlx4_en_ioctl()
2023 mask &= ~IFCAP_TSO6; in mlx4_en_ioctl()
2024 if_setcapenablebit(dev, 0, IFCAP_TSO6); in mlx4_en_ioctl()
2045 if (mask & IFCAP_TSO6) { in mlx4_en_ioctl()
2046 if (!(IFCAP_TSO6 & if_getcapenable(dev)) && in mlx4_en_ioctl()
2052 if_togglecapenable(dev, IFCAP_TSO6); in mlx4_en_ioctl()
2256 if_setcapabilitiesbit(dev, IFCAP_TSO4 | IFCAP_TSO6 | IFCAP_VLAN_HWTSO, 0); in mlx4_en_init_netdev()
2266 if (if_getcapenable(dev) & (IFCAP_TSO4 | IFCAP_TSO6)) in mlx4_en_init_netdev()
/freebsd/sys/dev/ixl/
H A Dixl.h255 (IFCAP_TSO4 | IFCAP_TSO6 | \
/freebsd/sys/dev/cxgb/
H A Dcxgb_main.c1919 if (IFCAP_TSO6 & if_getcapenable(ifp) && in cxgb_ioctl()
1921 mask &= ~IFCAP_TSO6; in cxgb_ioctl()
1922 if_setcapenablebit(ifp, 0, IFCAP_TSO6); in cxgb_ioctl()
1947 if (mask & IFCAP_TSO6) { in cxgb_ioctl()
1948 if (!(IFCAP_TSO6 & if_getcapenable(ifp)) && in cxgb_ioctl()
1954 if_togglecapenable(ifp, IFCAP_TSO6); in cxgb_ioctl()
/freebsd/sys/dev/ice/
H A Dice_lib.h186 (IFCAP_TSO4 | IFCAP_TSO6 | \
/freebsd/sys/dev/qlxgbe/
H A Dql_os.c878 IFCAP_TSO6 | in qla_init_ifnet()
1169 if (mask & IFCAP_TSO6) in qla_ioctl()
1170 if_togglecapenable(ifp, IFCAP_TSO6); in qla_ioctl()
/freebsd/sys/dev/qlxgb/
H A Dqla_os.c905 if (mask & IFCAP_TSO6) in qla_ioctl()
906 if_togglecapenable(ifp, IFCAP_TSO6); in qla_ioctl()
/freebsd/sys/dev/virtio/network/
H A Dif_vtnet.c1124 if_setcapabilitiesbit(ifp, IFCAP_TSO6, 0); in vtnet_setup_interface()
1128 if (if_getcapabilities(ifp) & (IFCAP_TSO4 | IFCAP_TSO6)) { in vtnet_setup_interface()
1342 if (mask & IFCAP_TSO6) in vtnet_ioctl_ifcap()
1343 if_togglecapenable(ifp, IFCAP_TSO6); in vtnet_ioctl_ifcap()
3443 if (if_getcapenable(ifp) & IFCAP_TSO6) in vtnet_reinit()
/freebsd/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_main.c3635 if (IFCAP_TSO6 & if_getcapenable(ifp) && in mlx5e_ioctl()
3637 mask &= ~IFCAP_TSO6; in mlx5e_ioctl()
3638 if_setcapenablebit(ifp, 0, IFCAP_TSO6); in mlx5e_ioctl()
3668 if (mask & IFCAP_TSO6) { in mlx5e_ioctl()
3669 if (!(IFCAP_TSO6 & if_getcapenable(ifp)) && in mlx5e_ioctl()
3675 if_togglecapenable(ifp, IFCAP_TSO6); in mlx5e_ioctl()
/freebsd/sys/dev/hyperv/netvsc/
H A Dif_hn.c2411 if_setcapabilitiesbit(ifp, IFCAP_TSO6, 0); in hn_attach()
2422 if_setcapenablebit(ifp, 0, (IFCAP_TXCSUM_IPV6 | IFCAP_TSO6)); in hn_attach()
2425 if (if_getcapabilities(ifp) & (IFCAP_TSO6 | IFCAP_TSO4)) { in hn_attach()
2439 if ((if_getcapabilities(ifp) & (IFCAP_TSO6 | IFCAP_TSO4)) && bootverbose) { in hn_attach()
3935 if (mask & IFCAP_TSO6) { in hn_ioctl()
3936 if_togglecapenable(ifp, IFCAP_TSO6); in hn_ioctl()
3937 if (if_getcapenable(ifp) & IFCAP_TSO6) in hn_ioctl()
5566 if ((if_getcapabilities(ifp) & (IFCAP_TSO4 | IFCAP_TSO6)) == 0) in hn_set_tso_maxsize()
/freebsd/sys/dev/gve/
H A Dgve_main.c125 if (if_getcapenable(ifp) & IFCAP_TSO6) in gve_up()
/freebsd/sbin/ifconfig/
H A Difconfig.c2133 DEF_CMD("tso6", IFCAP_TSO6, setifcap),
2134 DEF_CMD("-tso6", IFCAP_TSO6, clearifcap),
/freebsd/sys/dev/mgb/
H A Dif_mgb.c371 IFCAP_TSO4 | IFCAP_TSO6 | in mgb_attach_pre()
/freebsd/sys/dev/usb/net/
H A Dif_muge.c1620 if_setcapabilitiesbit(ifp, IFCAP_TSO4 | IFCAP_TSO6, 0); in muge_attach_post_sub()
/freebsd/sys/dev/e1000/
H A Dif_em.c937 IFCAP_TSO6
943 IFCAP_TSO6
1114 scctx->isc_capabilities |= IFCAP_TSO6; in em_if_attach_pre()
/freebsd/sys/dev/ena/
H A Dena.c2489 caps |= IFCAP_TSO6; in ena_get_dev_offloads()
2537 if ((cap & IFCAP_TSO6) != 0) in ena_update_hwassist()
/freebsd/sys/dev/netmap/
H A Dif_ptnet.c862 if (if_getcapenable(ifp) & IFCAP_TSO6) in ptnet_init_locked()

12