Searched refs:sctp_pad_mp (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp.c813 if (sctp->sctp_pad_mp == NULL) {
815 sctp->sctp_pad_mp = allocb_wait(SCTP_ALIGN, BPRI_MED,
818 sctp->sctp_pad_mp = allocb(SCTP_ALIGN, BPRI_MED);
819 if (sctp->sctp_pad_mp == NULL)
822 bzero(sctp->sctp_pad_mp->b_rptr, SCTP_ALIGN);
2054 * sctp_pad_mp can be NULL if the memory allocation fails
2057 if (sctp->sctp_pad_mp != NULL) {
2058 freeb(sctp->sctp_pad_mp);
2059 sctp->sctp_pad_mp = NULL;
H A Dsctp_impl.h695 mblk_t *sctp_pad_mp; /* pad unaligned data chunks */ member in struct:sctp_s
H A Dsctp_output.c671 ASSERT(sctp->sctp_pad_mp != NULL);
672 if ((fill = dupb(sctp->sctp_pad_mp)) != NULL) {
678 * The memory saving path of reusing the sctp_pad_mp
/illumos-gate/usr/src/cmd/mdb/common/modules/sctp/
H A Dsctp.c796 sctp->sctp_pad_mp, sctp->sctp_err_chunks);

Completed in 61 milliseconds