Home
last modified time | relevance | path

Searched refs:mp_head (Results 1 – 10 of 10) sorted by relevance

/illumos-gate/usr/src/uts/intel/io/viona/
H A Dviona_tx.c512 mblk_t *mp_head, *mp_tail, *mp; in viona_tx() local
518 mp_head = mp_tail = NULL; in viona_tx()
564 if (mp_head != NULL) in viona_tx()
567 mp_head = allocb(VIONA_MAX_HDRS_LEN, 0); in viona_tx()
570 if (mp_head == NULL) in viona_tx()
573 mp_tail = mp_head; in viona_tx()
586 bcopy(iov[i].iov_base, mp_head->b_wptr, to_copy); in viona_tx()
587 mp_head->b_wptr += to_copy; in viona_tx()
611 ASSERT3P(mp_head, !=, NULL); in viona_tx()
663 mp = mp_head; in viona_tx()
[all …]
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsockcommon_subr.c579 (mp_head = sof_filter_data_in_proc(so, mp_head, in so_process_new_message()
583 ASSERT(mp_head->b_prev != NULL); in so_process_new_message()
585 so->so_rcv_q_head = mp_head; in so_process_new_message()
592 if (mp_head->b_next == NULL && in so_process_new_message()
593 DB_TYPE(mp_head) == M_DATA && in so_process_new_message()
597 mp_head->b_prev = NULL; in so_process_new_message()
603 ASSERT(mp_head->b_next != NULL); in so_process_new_message()
606 mp_head->b_prev = NULL; in so_process_new_message()
609 mp_head->b_next = NULL; in so_process_new_message()
615 tmp_mblk = mp_head; in so_process_new_message()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dmodctl.c1709 mperm_t **mp_head; in rem_minorperm() local
1724 mp_head = &dnp->dn_mperm; in rem_minorperm()
1725 while (*mp_head) { in rem_minorperm()
1728 mp_head = &(*mp_head)->mp_next; in rem_minorperm()
1732 freemp = *mp_head; in rem_minorperm()
1761 mperm_t **mp_head; in add_minorperm() local
1793 mp_head = &dnp->dn_mperm; in add_minorperm()
1794 if (*mp_head == NULL) { in add_minorperm()
1795 *mp_head = mp; in add_minorperm()
1797 mp->mp_next = *mp_head; in add_minorperm()
[all …]
H A Dstrsubr.c6978 mblk_t *bp, *mp_head, *mp_next, *mp_prev; in flush_syncq() local
7032 mp_head = q->q_sqhead; in flush_syncq()
7040 ASSERT(mp_head->b_queue && in flush_syncq()
7041 mp_head->b_queue->q_syncq == sq); in flush_syncq()
7046 for (bp = mp_head; bp != NULL; bp = mp_next) { in flush_syncq()
/illumos-gate/usr/src/uts/common/io/xge/drv/
H A Dxgell.c709 mblk_t *mp_head = NULL; in xgell_rx_1b_callback() local
799 if (mp_head == NULL) { in xgell_rx_1b_callback()
800 mp_head = mp; in xgell_rx_1b_callback()
811 ring->poll_mp = mp_head; in xgell_rx_1b_callback()
835 if (mp_head != NULL) { in xgell_rx_1b_callback()
836 mac_rx_ring(lldev->mh, ring->ring_handle, mp_head, in xgell_rx_1b_callback()
839 mp_head = mp_end = NULL; in xgell_rx_1b_callback()
856 if ((ring->poll_mp == NULL) && (mp_head != NULL)) { in xgell_rx_1b_callback()
857 mac_rx_ring(lldev->mh, ring->ring_handle, mp_head, in xgell_rx_1b_callback()
/illumos-gate/usr/src/uts/common/io/igc/
H A Digc_ring.c769 mblk_t *mp_head = NULL, **mp_tail = NULL; in igc_ring_rx() local
781 mp_head = NULL; in igc_ring_rx()
782 mp_tail = &mp_head; in igc_ring_rx()
876 return (mp_head); in igc_ring_rx()
/illumos-gate/usr/src/uts/common/io/sfe/
H A Dsfe_util.c1426 gem_send_common(struct gem_dev *dp, mblk_t *mp_head, uint32_t flags) in gem_send_common() argument
1440 ASSERT(mp_head != NULL); in gem_send_common()
1442 mp = mp_head; in gem_send_common()
1457 mp = mp_head; in gem_send_common()
1470 return (mp_head); in gem_send_common()
1512 ASSERT(mp_head != NULL); in gem_send_common()
1513 mp = mp_head; in gem_send_common()
1514 mp_head = mp_head->b_next; in gem_send_common()
1566 return (mp_head); in gem_send_common()
/illumos-gate/usr/src/uts/common/io/i40e/
H A Di40e_transceiver.c1446 mblk_t *mp, *mp_head, **mp_tail; in i40e_ring_rx() local
1478 mp_head = NULL; in i40e_ring_rx()
1479 mp_tail = &mp_head; in i40e_ring_rx()
1631 return (mp_head); in i40e_ring_rx()
/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_output.c1463 mblk_t *mp_head = mp; in sctp_make_ftsns() local
1543 mp1 = mp_head; in sctp_make_ftsns()
/illumos-gate/usr/src/uts/common/io/usbgem/
H A Dusbgem.c3536 usbgem_m_tx(void *arg, mblk_t *mp_head) in usbgem_m_tx() argument
3545 mp = mp_head; in usbgem_m_tx()
3573 if (mp == mp_head) { in usbgem_m_tx()