/src/sys/net/ |
if_vlan.c | 855 struct ifcapreq *ifcr; local in function:vlan_ioctl 1010 ifcr = data; 1026 if ((mib->ifvm_p->if_capenable & ifcr->ifcr_capenable) != 1027 ifcr->ifcr_capenable) {
|
if_bridge.c | 633 struct ifcapreq *ifcr = (struct ifcapreq *)data; local in function:bridge_ioctl 634 ifcr->ifcr_capabilities = sc->sc_capenable; 635 ifcr->ifcr_capenable = sc->sc_capenable;
|
if.c | 3184 struct ifcapreq *ifcr; local in function:ifioctl_common 3192 ifcr = data; 3193 if ((ifcr->ifcr_capenable & ~ifp->if_capabilities) != 0) 3196 if (ifcr->ifcr_capenable == ifp->if_capenable) 3199 ifp->if_capenable = ifcr->ifcr_capenable; 3289 ifcr = data; 3290 ifcr->ifcr_capabilities = ifp->if_capabilities; 3291 ifcr->ifcr_capenable = ifp->if_capenable;
|
/src/sys/dev/pci/ |
if_jme.c | 1279 struct ifcapreq *ifcr; local in function:jme_ifioctl 1299 ifcr = data; 1301 (ifcr->ifcr_capenable & (
|
if_ena.c | 2421 struct ifcapreq *ifcr = data; local in function:ena_ioctl 2424 if (ifcr->ifcr_capenable != ifp->if_capenable) { 2425 ifp->if_capenable = ifcr->ifcr_capenable;
|
if_mcx.c | 2748 struct ifcapreq ifcr; local in function:mcx_attach 3002 memset(&ifcr, 0, sizeof(ifcr)); 3003 ifcr.ifcr_capenable = ifp->if_capabilities; 3004 ifioctl_common(ifp, SIOCSIFCAP, &ifcr);
|
/src/sys/dev/pci/ixgbe/ |
ixv.c | 3157 struct ifcapreq *ifcr = data; local in function:ixv_ioctl 3248 l4csum_en = ifcr->ifcr_capenable & l4csum;
|
ixgbe.c | 6529 struct ifcapreq *ifcr = data; local in function:ixgbe_ioctl 6623 l4csum_en = ifcr->ifcr_capenable & l4csum;
|
/src/sbin/ifconfig/ |
ifconfig.c | 610 struct ifcapreq ifcr; local in function:do_setifcaps 617 assert(sizeof(ifcr) == prop_data_size(d)); 619 memcpy(&ifcr, prop_data_value(d), sizeof(ifcr)); 620 if (direct_ioctl(env, SIOCSIFCAP, &ifcr) == -1) 914 struct if_clonereq ifcr; local in function:list_cloners 918 memset(&ifcr, 0, sizeof(ifcr)); 922 if (prog_ioctl(s, SIOCIFGCLONERS, &ifcr) == -1) 925 buf = malloc(ifcr.ifcr_total * IFNAMSIZ) 1093 struct ifcapreq ifcr; local in function:getifcaps 1123 struct ifcapreq ifcr; local in function:setifcaps 1282 struct ifcapreq ifcr; local in function:status [all...] |
/src/sys/net/lagg/ |
if_lagg.c | 1878 struct ifcapreq ifcr; local in function:lagg_setifcaps 1884 memset(&ifcr, 0, sizeof(ifcr)); 1885 ifcr.ifcr_capenable = cap; 1888 error = LAGG_PORT_IOCTL(lp, SIOCSIFCAP, &ifcr);
|