• Home
  • Raw
  • Download

Lines Matching refs:rfd

435 struct rfd {  struct
575 struct rfd blank_rfd;
1946 #define RFD_BUF_LEN (sizeof(struct rfd) + VLAN_ETH_FRAME_LEN + ETH_FCS_LEN)
1953 skb_copy_to_linear_data(rx->skb, &nic->blank_rfd, sizeof(struct rfd)); in e100_rx_alloc_skb()
1968 struct rfd *prev_rfd = (struct rfd *)rx->prev->skb->data; in e100_rx_alloc_skb()
1971 sizeof(struct rfd), PCI_DMA_BIDIRECTIONAL); in e100_rx_alloc_skb()
1982 struct rfd *rfd = (struct rfd *)skb->data; in e100_rx_indicate() local
1991 sizeof(struct rfd), PCI_DMA_BIDIRECTIONAL); in e100_rx_indicate()
1992 rfd_status = le16_to_cpu(rfd->status); in e100_rx_indicate()
2005 if ((le16_to_cpu(rfd->command) & cb_el) && in e100_rx_indicate()
2011 sizeof(struct rfd), in e100_rx_indicate()
2019 actual_size = le16_to_cpu(rfd->actual_size) & 0x3FFF; in e100_rx_indicate()
2020 if (unlikely(actual_size > RFD_BUF_LEN - sizeof(struct rfd))) in e100_rx_indicate()
2021 actual_size = RFD_BUF_LEN - sizeof(struct rfd); in e100_rx_indicate()
2033 if ((le16_to_cpu(rfd->command) & cb_el) && in e100_rx_indicate()
2041 skb_reserve(skb, sizeof(struct rfd)); in e100_rx_indicate()
2082 struct rfd *old_before_last_rfd, *new_before_last_rfd; in e100_rx_clean()
2103 old_before_last_rfd = (struct rfd *)old_before_last_rx->skb->data; in e100_rx_clean()
2123 (struct rfd *)new_before_last_rx->skb->data; in e100_rx_clean()
2127 new_before_last_rx->dma_addr, sizeof(struct rfd), in e100_rx_clean()
2135 old_before_last_rx->dma_addr, sizeof(struct rfd), in e100_rx_clean()
2140 old_before_last_rx->dma_addr, sizeof(struct rfd), in e100_rx_clean()
2179 struct rfd *before_last; in e100_rx_alloc_list()
2203 before_last = (struct rfd *)rx->skb->data; in e100_rx_alloc_list()
2207 sizeof(struct rfd), PCI_DMA_BIDIRECTIONAL); in e100_rx_alloc_list()
2415 if (memcmp(nic->rx_to_clean->skb->data + sizeof(struct rfd), in e100_loopback_test()