Searched refs:ipg (Results 1 - 8 of 8) sorted by relevance

/freebsd-10-stable/sys/netinet/
H A Din_pcb.h529 #define INP_GROUP_LOCK_INIT(ipg, d) mtx_init(&(ipg)->ipg_lock, (d), NULL, \
531 #define INP_GROUP_LOCK_DESTROY(ipg) mtx_destroy(&(ipg)->ipg_lock)
533 #define INP_GROUP_LOCK(ipg) mtx_lock(&(ipg)->ipg_lock)
534 #define INP_GROUP_LOCK_ASSERT(ipg) mtx_assert(&(ipg)->ipg_lock, MA_OWNED)
535 #define INP_GROUP_UNLOCK(ipg) mtx_unlock(&(ipg)
[all...]
/freebsd-10-stable/sys/dev/cxgb/common/
H A Dcxgb_xgmac.c466 int ipg; local
540 ipg = (port_type == 9 || adap->params.rev != T3_REV_C) ? 1 : 0;
543 V_TXFIFOTHRESH(thres) | V_TXIPG(ipg));
H A Dcxgb_t3_hw.c3731 * @ipg: the interpacket delay in tenths of nanoseconds
3735 int t3_set_sched_ipg(adapter_t *adap, int sched, unsigned int ipg) argument
3739 /* convert ipg to nearest number of core clocks */
3740 ipg *= core_ticks_per_usec(adap);
3741 ipg = (ipg + 5000) / 10000;
3742 if (ipg > 0xffff)
3748 v = (v & 0xffff) | (ipg << 16);
3750 v = (v & 0xffff0000) | ipg;
3761 * @ipg
3765 t3_get_tx_sched(adapter_t *adap, unsigned int sched, unsigned int *kbps, unsigned int *ipg) argument
[all...]
H A Dcxgb_common.h790 int t3_set_sched_ipg(adapter_t *adap, int sched, unsigned int ipg);
792 unsigned int *ipg);
/freebsd-10-stable/sys/dev/cxgbe/common/
H A Dcommon.h659 unsigned int *ipg, bool sleep_ok);
683 int t4_set_sched_ipg(struct adapter *adap, int sched, unsigned int ipg);
H A Dt4_hw.c5638 * @ipg: the interpacket delay in tenths of nanoseconds
5642 int t4_set_sched_ipg(struct adapter *adap, int sched, unsigned int ipg) argument
5646 /* convert ipg to nearest number of core clocks */
5647 ipg *= core_ticks_per_usec(adap);
5648 ipg = (ipg + 5000) / 10000;
5649 if (ipg > M_TXTIMERSEPQ0)
5655 v = (v & V_TXTIMERSEPQ0(M_TXTIMERSEPQ0)) | V_TXTIMERSEPQ1(ipg);
5657 v = (v & V_TXTIMERSEPQ1(M_TXTIMERSEPQ1)) | V_TXTIMERSEPQ0(ipg);
8864 * @ipg
8868 t4_get_tx_sched(struct adapter *adap, unsigned int sched, unsigned int *kbps, unsigned int *ipg, bool sleep_ok) argument
[all...]
/freebsd-10-stable/sys/dev/cxgbe/
H A Dt4_main.c6622 unsigned int map, kbps, ipg, mode; local
6641 t4_get_tx_sched(sc, i, &kbps, &ipg, 1);
6649 if (ipg)
6650 sbuf_printf(sb, "%13u ", ipg);
/freebsd-10-stable/sys/dev/mlx5/
H A Dmlx5_ifc.h7937 u8 ipg[0x4]; member in struct:mlx5_ifc_pipg_reg_bits

Completed in 151 milliseconds