Lines Matching refs:chunk
432 static inline bool sctp_chunk_pending(const struct sctp_chunk *chunk) in sctp_chunk_pending() argument
434 return !list_empty(&chunk->list); in sctp_chunk_pending()
442 #define sctp_walk_params(pos, chunk, member)\ argument
443 _sctp_walk_params((pos), (chunk), ntohs((chunk)->chunk_hdr.length), member)
445 #define _sctp_walk_params(pos, chunk, end, member)\ argument
446 for (pos.v = chunk->member;\
447 pos.v <= (void *)chunk + end - ntohs(pos.p->length) &&\
461 #define sctp_walk_fwdtsn(pos, chunk)\ argument
462 _sctp_walk_fwdtsn((pos), (chunk), ntohs((chunk)->chunk_hdr->length) - sizeof(struct sctp_fwdtsn_chu…
464 #define _sctp_walk_fwdtsn(pos, chunk, end)\ argument
465 for (pos = chunk->subh.fwdtsn_hdr->skip;\
466 (void *)pos <= (void *)chunk->subh.fwdtsn_hdr->skip + end - sizeof(struct sctp_fwdtsn_skip);\