Lines Matching defs:rx_desc

629 	union igc_adv_rx_desc *rx_desc;
695 rx_desc = IGC_RX_DESC(ring, 0);
696 rx_desc->wb.upper.length = 0;
1716 union igc_adv_rx_desc *rx_desc,
1722 if (igc_test_staterr(rx_desc, IGC_RXD_STAT_IXSM))
1730 if (igc_test_staterr(rx_desc,
1747 if (igc_test_staterr(rx_desc, IGC_RXD_STAT_TCPCS |
1752 le32_to_cpu(rx_desc->wb.upper.status_error));
1776 union igc_adv_rx_desc *rx_desc,
1780 u32 rss_hash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
1781 u32 rss_type = igc_rss_type(rx_desc);
1788 union igc_adv_rx_desc *rx_desc,
1795 igc_test_staterr(rx_desc, IGC_RXD_STAT_VP)) {
1796 if (igc_test_staterr(rx_desc, IGC_RXDEXT_STATERR_LB) &&
1798 vid = be16_to_cpu((__force __be16)rx_desc->wb.upper.vlan);
1800 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1809 * @rx_desc: pointer to the EOP Rx descriptor
1817 union igc_adv_rx_desc *rx_desc,
1820 igc_rx_hash(rx_ring, rx_desc, skb);
1822 igc_rx_checksum(rx_ring, rx_desc, skb);
1824 igc_rx_vlan(rx_ring, rx_desc, skb);
2084 * @rx_desc: Rx descriptor for current buffer
2092 union igc_adv_rx_desc *rx_desc)
2102 if (likely(igc_test_staterr(rx_desc, IGC_RXD_STAT_EOP)))
2111 * @rx_desc: pointer to the EOP Rx descriptor
2123 union igc_adv_rx_desc *rx_desc,
2130 if (unlikely(igc_test_staterr(rx_desc, IGC_RXDEXT_STATERR_RXE))) {
2229 union igc_adv_rx_desc *rx_desc;
2238 rx_desc = IGC_RX_DESC(rx_ring, i);
2256 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
2258 rx_desc++;
2262 rx_desc = IGC_RX_DESC(rx_ring, 0);
2268 rx_desc->wb.upper.length = 0;
2590 union igc_adv_rx_desc *rx_desc;
2601 rx_desc = IGC_RX_DESC(rx_ring, rx_ring->next_to_clean);
2602 size = le16_to_cpu(rx_desc->wb.upper.length);
2607 * any other fields out of the rx_desc until we know the
2617 if (igc_test_staterr(rx_desc, IGC_RXDADV_STAT_TSIP)) {
2629 ctx.rx_desc = rx_desc;
2668 if (igc_is_non_eop(rx_ring, rx_desc))
2672 if (igc_cleanup_headers(rx_ring, rx_desc, skb)) {
2681 igc_process_skb_fields(rx_ring, rx_desc, skb);
2792 * any other fields out of the rx_desc until we know the
2800 ctx->rx_desc = desc;
6778 *hash = le32_to_cpu(ctx->rx_desc->wb.lower.hi_dword.rss);
6779 *rss_type = igc_xdp_rss_type[igc_rss_type(ctx->rx_desc)];
6790 if (igc_test_staterr(ctx->rx_desc, IGC_RXDADV_STAT_TSIP)) {