Symbol: pkt_info
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
521
lm_pkt_rx_info_t *pkt_info;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
540
pkt_info = packet->u1.rx.rx_pkt_info;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
545
((u32_t *) pkt_info->mem_virt)[0] = 0;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
546
((u32_t *) pkt_info->mem_virt)[1] = 0;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
547
((u32_t *) pkt_info->mem_virt)[2] = 0;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
548
((u32_t *) pkt_info->mem_virt)[3] = 0;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
650
lm_pkt_rx_info_t *pkt_info;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
675
pkt_info = pkt->u1.rx.rx_pkt_info;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
690
rx_hdr = (l2_fhdr_t *) pkt_info->mem_virt;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
702
pkt_info->size = 0;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
708
pkt_info->size = rx_hdr->l2_fhdr_pkt_len - 4 /* CRC32 */;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
709
pkt_info->flags = 0;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
714
(pkt_info->size < MIN_ETHERNET_PACKET_SIZE ||
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
715
pkt_info->size > pdev->params.mtu+4));
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
719
(pkt_info->size < MIN_ETHERNET_PACKET_SIZE-4 ||
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
720
pkt_info->size > pdev->params.mtu));
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
723
(pkt_info->size < MIN_ETHERNET_PACKET_SIZE ||
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
724
pkt_info->size > pdev->params.mtu));
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
728
pkt_info->flags |= LM_RX_FLAG_VALID_HASH_VALUE;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
734
pkt_info->flags |= LM_RX_FLAG_VALID_VLAN_TAG;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
735
pkt_info->vlan_tag = rx_hdr->l2_fhdr_vlan_tag;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
742
pkt_info->flags |= LM_RX_FLAG_IS_IPV6_DATAGRAM;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
746
pkt_info->flags |= LM_RX_FLAG_IS_IPV4_DATAGRAM;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
751
pkt_info->flags |= LM_RX_FLAG_IP_CKSUM_IS_BAD;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
755
pkt_info->flags |= LM_RX_FLAG_IP_CKSUM_IS_GOOD;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
761
pkt_info->flags |= LM_RX_FLAG_IS_TCP_SEGMENT;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
765
pkt_info->flags |= LM_RX_FLAG_TCP_CKSUM_IS_BAD;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
769
pkt_info->flags |= LM_RX_FLAG_TCP_CKSUM_IS_GOOD;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
774
pkt_info->flags |= LM_RX_FLAG_IS_UDP_DATAGRAM;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
778
pkt_info->flags |= LM_RX_FLAG_UDP_CKSUM_IS_BAD;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
782
pkt_info->flags |= LM_RX_FLAG_UDP_CKSUM_IS_GOOD;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
798
CRC32(crc, (u8_t *)pkt_info->mem_virt + L2RX_FRAME_HDR_LEN,
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_recv.c
851
byte_cnt += pkt_info->size;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
346
lm_pkt_tx_info_t *pkt_info;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
407
pkt_info = packet->u1.tx.tx_pkt_info;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
411
if(pkt_info->flags & LM_TX_FLAG_INSERT_VLAN_TAG)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
416
if((pkt_info->flags & LM_TX_FLAG_TCP_LSO_FRAME) == 0)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
418
if(pkt_info->flags & LM_TX_FLAG_COMPUTE_IP_CKSUM)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
424
if(pkt_info->flags & LM_TX_FLAG_COMPUTE_TCP_UDP_CKSUM)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
427
if(pkt_info->flags & LM_TX_FLAG_IPV6_PACKET)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
438
if(pkt_info->flags & LM_TX_FLAG_DONT_COMPUTE_CRC)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
443
if(pkt_info->flags & LM_TX_FLAG_TCP_LSO_FRAME)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
445
if(pkt_info->flags & LM_TX_FLAG_IPV6_PACKET)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
456
if(pkt_info->flags & LM_TX_FLAG_TCP_LSO_SNAP_FRAME)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
461
DbgBreakIf(pkt_info->lso_tcp_hdr_len < 20 ||
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
462
pkt_info->lso_tcp_hdr_len > 84 ||
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
463
pkt_info->lso_tcp_hdr_len % 4);
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
467
flags |= (pkt_info->lso_tcp_hdr_len - 20) << 6;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
469
DbgBreakIf(pkt_info->lso_ip_hdr_len < 20 ||
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
470
pkt_info->lso_ip_hdr_len > 296 ||
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
471
(pkt_info->lso_ip_hdr_len - 40) % 8);
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
475
ipv6_ext_len = pkt_info->lso_ip_hdr_len - 40;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
484
lso_bd_reserved = pkt_info->lso_mss;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
496
if(pkt_info->flags & LM_TX_FLAG_TCP_LSO_SNAP_FRAME)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
501
DbgBreakIf(pkt_info->lso_ip_hdr_len +
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
502
pkt_info->lso_tcp_hdr_len > 120);
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
505
flags |= (pkt_info->lso_ip_hdr_len +
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
506
pkt_info->lso_tcp_hdr_len - 40) << 6;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
508
lso_bd_reserved = pkt_info->lso_mss;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
542
prod_bd->tx_bd_vlan_tag = pkt_info->vlan_tag;
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
545
if(pkt_info->flags & LM_TX_FLAG_TCP_LSO_FRAME)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
580
if(pkt_info->flags & LM_TX_FLAG_COAL_NOW)
usr/src/uts/common/io/bnx/570x/driver/common/lmdev/bnx_lm_send.c
621
if(!(pkt_info->flags & LM_TX_FLAG_SKIP_MBQ_WRITE))
usr/src/uts/common/io/e1000api/e1000_82575.h
204
__le16 pkt_info; /*RSS type, Pkt type*/
usr/src/uts/common/io/e1000api/e1000_vf.h
95
u16 pkt_info;
usr/src/uts/common/io/igc/core/igc_base.h
97
__le16 pkt_info; /*RSS type, Pkt type*/
usr/src/uts/common/io/ixgbe/core/ixgbe_type.h
3420
__le16 pkt_info; /* RSS, Pkt type */
usr/src/uts/common/io/scsi/targets/st.c
10128
pkt_info *pktinfo = BP_PKT(bp)->pkt_private;
usr/src/uts/common/io/scsi/targets/st.c
11321
pkt_info *pktinfo = BP_PKT(bp)->pkt_private;
usr/src/uts/common/io/scsi/targets/st.c
1683
ri->privatelen = sizeof (pkt_info);
usr/src/uts/common/io/scsi/targets/st.c
17277
ASSERT(rinfo->privatelen == sizeof (pkt_info) ||
usr/src/uts/common/io/scsi/targets/st.c
6610
pkt_info *pkti = BP_PKT(bp)->pkt_private;
usr/src/uts/common/io/scsi/targets/st.c
6664
pkt_info *pktinfo = BP_PKT(bp)->pkt_private;
usr/src/uts/common/io/scsi/targets/st.c
6820
pkt_info *pktinfo = pkt->pkt_private;
usr/src/uts/common/io/scsi/targets/st.c
883
st_recov_sz = sizeof (pkt_info);
usr/src/uts/common/io/scsi/targets/st.c
9178
pkt_info *pkti = BP_PKT(bp)->pkt_private;