/src/sys/dev/pci/ixgbe/ |
ixgbe_netmap.c | 427 uint32_t staterr = le32toh(curr->wb.upper.status_error); local in function:ixgbe_netmap_rxsync 429 if ((staterr & IXGBE_RXD_STAT_DD) == 0)
|
ix_txrx.c | 1829 u32 staterr = 0; local in function:ixgbe_rxeof 1907 staterr = le32toh(cur->wb.upper.status_error); 1912 if ((staterr & IXGBE_RXD_STAT_DD) == 0) 1928 eop = ((staterr & IXGBE_RXD_STAT_EOP) != 0); 1931 if (eop && (staterr & IXGBE_RXDADV_ERR_FRAME_ERR_MASK) != 0) { 2012 nextp = ((staterr & IXGBE_RXDADV_NEXTP_MASK) >> 2100 if ((rxr->vtag_strip) && (staterr & IXGBE_RXD_STAT_VP)) 2106 ixgbe_rx_checksum(staterr, sendmp, ptype, 2209 if ((staterr & IXGBE_RXD_STAT_DD) != 0) 2224 ixgbe_rx_checksum(u32 staterr, struct mbuf * mp, u32 ptype [all...] |
/src/bin/ksh/ |
edit.c | 956 int staterr; local in function:glob_path 997 staterr = 0; 998 if ((search_access(words[i], X_OK, &staterr) >= 0) 999 || (staterr == EISDIR)) {
|
/src/sys/dev/pci/igc/ |
if_igc.c | 2091 const uint32_t staterr = le32toh(rxdesc->wb.upper.status_error); local in function:igc_rxeof 2093 if (!ISSET(staterr, IGC_RXD_STAT_DD)) { 2120 const bool eop = staterr & IGC_RXD_STAT_EOP; 2139 if (__predict_false(staterr & IGC_RXDEXT_STATERR_RXE)) { 2183 if (staterr & IGC_RXD_STAT_VP) 2197 ifp->if_capenable, staterr, ptype); 2227 if (!(staterr & IGC_RXD_STAT_DD)) 2242 igc_rx_checksum(struct igc_queue *q, uint64_t capenable, uint32_t staterr, 2245 const uint16_t status = (uint16_t)staterr; 2246 const uint8_t errors = (uint8_t)(staterr >> 24) [all...] |