Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dsctp_var.h99 #define sctp_free_a_readq(_stcb, _readq) { \ argument
100 if ((_readq)->on_strm_q) \
101 panic("On strm q stcb:%p readq:%p", (_stcb), (_readq)); \
102 SCTP_ZONE_FREE(SCTP_BASE_INFO(ipi_zone_readq), (_readq)); \
106 #define sctp_free_a_readq(_stcb, _readq) { \ argument
107 SCTP_ZONE_FREE(SCTP_BASE_INFO(ipi_zone_readq), (_readq)); \
112 #define sctp_alloc_a_readq(_stcb, _readq) { \ argument
113 (_readq) = SCTP_ZONE_GET(SCTP_BASE_INFO(ipi_zone_readq), struct sctp_queued_to_read); \
114 if ((_readq)) { \