Searched refs:rxhdr (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/dev/cxgbe/crypto/ |
H A D | t4_keyctx.c | 550 kctx->u.rxhdr.flitcnt_hmacctrl = in t4_tls_key_ctx() 554 kctx->u.rxhdr.protover_ciphmode = in t4_tls_key_ctx() 558 kctx->u.rxhdr.authmode_to_rxvalid = in t4_tls_key_ctx() 563 kctx->u.rxhdr.ivpresent_to_rxmk_size = in t4_tls_key_ctx() 569 kctx->u.rxhdr.ivinsert_to_authinsrt = in t4_tls_key_ctx() 579 kctx->u.rxhdr.authmode_to_rxvalid |= in t4_tls_key_ctx() 581 kctx->u.rxhdr.ivpresent_to_rxmk_size |= in t4_tls_key_ctx() 583 kctx->u.rxhdr.ivinsert_to_authinsrt = in t4_tls_key_ctx()
|
H A D | t4_crypto.h | 231 } rxhdr; member
|
/freebsd/sys/dev/usb/net/ |
H A D | if_smsc.c | 954 uint32_t rxhdr; in smsc_bulk_read_callback() local 966 if (actlen < (sizeof(rxhdr) + ETHER_CRC_LEN)) in smsc_bulk_read_callback() 981 if ((off + sizeof(rxhdr)) > actlen) in smsc_bulk_read_callback() 984 usbd_copy_out(pc, off, &rxhdr, sizeof(rxhdr)); in smsc_bulk_read_callback() 985 off += (sizeof(rxhdr) + ETHER_ALIGN); in smsc_bulk_read_callback() 986 rxhdr = le32toh(rxhdr); in smsc_bulk_read_callback() 988 pktlen = (uint16_t)SMSC_RX_STAT_FRM_LENGTH(rxhdr); in smsc_bulk_read_callback() 991 "off %d\n", rxhdr, pktlen, actlen, off); in smsc_bulk_read_callback() 994 if (rxhdr & SMSC_RX_STAT_ERROR) { in smsc_bulk_read_callback() 995 smsc_dbg_printf(sc, "rx error (hdr 0x%08x)\n", rxhdr); in smsc_bulk_read_callback() [all …]
|
H A D | if_axge.c | 965 uint32_t rxhdr; in axge_rx_frame() local 972 if (actlen < (int)sizeof(rxhdr)) in axge_rx_frame() 977 usbd_copy_out(pc, actlen - sizeof(rxhdr), &rxhdr, sizeof(rxhdr)); in axge_rx_frame() 978 rxhdr = le32toh(rxhdr); in axge_rx_frame() 980 pkt_cnt = rxhdr & 0xFFFF; in axge_rx_frame() 981 hdr_off = pkt_end = (rxhdr >> 16) & 0xFFFF; in axge_rx_frame()
|
/freebsd/sys/dev/bwn/ |
H A D | if_bwn.c | 3507 struct bwn_rxhdr4 *rxhdr; in bwn_dma_set_redzone() local 3510 rxhdr = mtod(m, struct bwn_rxhdr4 *); in bwn_dma_set_redzone() 3511 rxhdr->frame_len = 0; in bwn_dma_set_redzone() 5558 struct bwn_rxhdr4 *rxhdr; in bwn_dma_rxeof() local 5575 rxhdr = mtod(m, struct bwn_rxhdr4 *); in bwn_dma_rxeof() 5576 len = le16toh(rxhdr->frame_len); in bwn_dma_rxeof() 5610 macstat = le32toh(rxhdr->ps4.r351.mac_status); in bwn_dma_rxeof() 5613 macstat = le32toh(rxhdr->ps4.r598.mac_status); in bwn_dma_rxeof() 5627 bwn_rxeof(dr->dr_mac, m, rxhdr); in bwn_dma_rxeof() 5663 struct bwn_rxhdr4 rxhdr; in bwn_pio_rxeof() local [all …]
|
/freebsd/sys/dev/virtio/network/ |
H A D | if_vtnet.c | 1709 struct vtnet_rx_header *rxhdr = in vtnet_rxq_enqueue_buf() local 1714 error = sglist_append(sg, &rxhdr->vrh_hdr, sc->vtnet_hdr_size); in vtnet_rxq_enqueue_buf() 1717 error = sglist_append(sg, &rxhdr[1], in vtnet_rxq_enqueue_buf()
|