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

/freebsd-10.0-release/sys/netinet/
H A Din_pcb.h476 #define INP_GROUP_LOCK_INIT(ipg, d) mtx_init(&(ipg)->ipg_lock, (d), NULL, \
478 #define INP_GROUP_LOCK_DESTROY(ipg) mtx_destroy(&(ipg)->ipg_lock)
480 #define INP_GROUP_LOCK(ipg) mtx_lock(&(ipg)->ipg_lock)
481 #define INP_GROUP_LOCK_ASSERT(ipg) mtx_assert(&(ipg)->ipg_lock, MA_OWNED)
482 #define INP_GROUP_UNLOCK(ipg) mtx_unlock(&(ipg)
[all...]
/freebsd-10.0-release/sys/dev/cxgbe/common/
H A Dcommon.h491 unsigned int *ipg);
510 int t4_set_sched_ipg(struct adapter *adap, int sched, unsigned int ipg);
H A Dt4_hw.c3512 * @ipg: the interpacket delay in tenths of nanoseconds
3516 int t4_set_sched_ipg(struct adapter *adap, int sched, unsigned int ipg) argument
3520 /* convert ipg to nearest number of core clocks */
3521 ipg *= core_ticks_per_usec(adap);
3522 ipg = (ipg + 5000) / 10000;
3523 if (ipg > M_TXTIMERSEPQ0)
3529 v = (v & V_TXTIMERSEPQ0(M_TXTIMERSEPQ0)) | V_TXTIMERSEPQ1(ipg);
3531 v = (v & V_TXTIMERSEPQ1(M_TXTIMERSEPQ1)) | V_TXTIMERSEPQ0(ipg);
3542 * @ipg
3546 t4_get_tx_sched(struct adapter *adap, unsigned int sched, unsigned int *kbps, unsigned int *ipg) argument
[all...]
/freebsd-10.0-release/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.c3724 * @ipg: the interpacket delay in tenths of nanoseconds
3728 int t3_set_sched_ipg(adapter_t *adap, int sched, unsigned int ipg) argument
3732 /* convert ipg to nearest number of core clocks */
3733 ipg *= core_ticks_per_usec(adap);
3734 ipg = (ipg + 5000) / 10000;
3735 if (ipg > 0xffff)
3741 v = (v & 0xffff) | (ipg << 16);
3743 v = (v & 0xffff0000) | ipg;
3754 * @ipg
3758 t3_get_tx_sched(adapter_t *adap, unsigned int sched, unsigned int *kbps, unsigned int *ipg) argument
[all...]
H A Dcxgb_common.h783 int t3_set_sched_ipg(adapter_t *adap, int sched, unsigned int ipg);
785 unsigned int *ipg);
/freebsd-10.0-release/sys/dev/cxgbe/
H A Dt4_main.c5452 unsigned int map, kbps, ipg, mode; local
5471 t4_get_tx_sched(sc, i, &kbps, &ipg);
5479 if (ipg)
5480 sbuf_printf(sb, "%13u ", ipg);

Completed in 121 milliseconds