Home
last modified time | relevance | path

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

/f-stack/freebsd/netinet/
H A Dsctp_var.h102 #define sctp_free_a_readq(_stcb, _readq) { \ argument
103 if ((_readq)->on_strm_q) \
104 panic("On strm q stcb:%p readq:%p", (_stcb), (_readq)); \
105 SCTP_ZONE_FREE(SCTP_BASE_INFO(ipi_zone_readq), (_readq)); \
109 #define sctp_free_a_readq(_stcb, _readq) { \ argument
110 SCTP_ZONE_FREE(SCTP_BASE_INFO(ipi_zone_readq), (_readq)); \
115 #define sctp_alloc_a_readq(_stcb, _readq) { \ argument
116 (_readq) = SCTP_ZONE_GET(SCTP_BASE_INFO(ipi_zone_readq), struct sctp_queued_to_read); \
117 if ((_readq)) { \