Searched refs:remaining_length (Results 1 – 2 of 2) sorted by relevance
259 nl_receive_message(struct nlmsghdr *hdr, int remaining_length, in nl_receive_message() argument269 if (__predict_false(hdr->nlmsg_len > remaining_length)) { in nl_receive_message()271 hdr->nlmsg_len, remaining_length); in nl_receive_message()
1065 uint32_t remaining_length, adjust; in sctp_handle_error() local1072 remaining_length = ntohs(ch->chunk_length); in sctp_handle_error()1073 if (remaining_length > limit) { in sctp_handle_error()1074 remaining_length = limit; in sctp_handle_error()1076 if (remaining_length >= sizeof(struct sctp_chunkhdr)) { in sctp_handle_error()1077 remaining_length -= sizeof(struct sctp_chunkhdr); in sctp_handle_error()1079 remaining_length = 0; in sctp_handle_error()1082 while (remaining_length >= sizeof(struct sctp_error_cause)) { in sctp_handle_error()1086 if ((cause_length > remaining_length) || (cause_length == 0)) { in sctp_handle_error()1089 remaining_length, cause_length); in sctp_handle_error()[all …]