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

/freebsd-9.3-release/sys/dev/e1000/
H A Dif_igb.c318 static int igb_txd = IGB_DEFAULT_TXD; variable
320 TUNABLE_INT("hw.igb.txd", &igb_txd);
323 SYSCTL_INT(_hw_igb, OID_AUTO, txd, CTLFLAG_RDTUN, &igb_txd, 0,
529 if (((igb_txd * sizeof(struct e1000_tx_desc)) % IGB_DBA_ALIGN) != 0 ||
530 (igb_txd > IGB_MAX_TXD) || (igb_txd < IGB_MIN_TXD)) {
532 IGB_DEFAULT_TXD, igb_txd);
535 adapter->num_tx_desc = igb_txd;

Completed in 105 milliseconds