Home
last modified time | relevance | path

Searched refs:eff_bw (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.61.12/bsd/net/
H A Dkpi_interface.c341 ifp->if_output_bw.eff_bw = einit.output_bw; in ifnet_allocate_extended()
347 ifp->if_input_bw.eff_bw = einit.input_bw; in ifnet_allocate_extended()
402 if (ifp->if_output_bw.eff_bw > ifp->if_output_bw.max_bw) { in ifnet_allocate_extended()
403 ifp->if_output_bw.max_bw = ifp->if_output_bw.eff_bw; in ifnet_allocate_extended()
404 } else if (ifp->if_output_bw.eff_bw == 0) { in ifnet_allocate_extended()
405 ifp->if_output_bw.eff_bw = ifp->if_output_bw.max_bw; in ifnet_allocate_extended()
408 if (ifp->if_input_bw.eff_bw > ifp->if_input_bw.max_bw) { in ifnet_allocate_extended()
409 ifp->if_input_bw.max_bw = ifp->if_input_bw.eff_bw; in ifnet_allocate_extended()
410 } else if (ifp->if_input_bw.eff_bw == 0) { in ifnet_allocate_extended()
411 ifp->if_input_bw.eff_bw = ifp->if_input_bw.max_bw; in ifnet_allocate_extended()
[all …]
H A Dif_var_private.h179 uint64_t eff_bw; /* effective bandwidth */ member
/xnu-12377.61.12/bsd/net/classq/
H A Dclassq_subr.c747 if ((eff_rate = ifp->if_output_bw.eff_bw) == 0) { in ifclassq_tbr_set_locked()