pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-pfcp/+/39580?usp=email )
Change subject: pfcp_endpoint: Increase sent_{requests,responses}_by_seq_nr hashtable size ......................................................................
pfcp_endpoint: Increase sent_{requests,responses}_by_seq_nr hashtable size
Change-Id: Ie0bb28240b3a83a1776702f26d79a09e8f0e30f6 --- M src/libosmo-pfcp/pfcp_endpoint.c 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: fixeria: Looks good to me, but someone else must approve osmith: Looks good to me, approved Jenkins Builder: Verified
diff --git a/src/libosmo-pfcp/pfcp_endpoint.c b/src/libosmo-pfcp/pfcp_endpoint.c index d6c109b..7c1058f 100644 --- a/src/libosmo-pfcp/pfcp_endpoint.c +++ b/src/libosmo-pfcp/pfcp_endpoint.c @@ -52,12 +52,12 @@ * For a transmitted Request message, wait for a matching Response from a remote peer; if none arrives, * retransmit (see n1 and t1_ms). */ struct llist_head sent_requests; - DECLARE_HASHTABLE(sent_requests_by_seq_nr, 10); + DECLARE_HASHTABLE(sent_requests_by_seq_nr, 12); /* All transmitted PFCP Response messages, list of osmo_pfcp_queue_entry. * For a transmitted Response message, keep it in the queue for a fixed amount of time. If the peer retransmits * the original Request, do not dispatch the Request, but respond with the queued message directly. */ struct llist_head sent_responses; - DECLARE_HASHTABLE(sent_responses_by_seq_nr, 10); + DECLARE_HASHTABLE(sent_responses_by_seq_nr, 12); };
/*! Entry of pfcp_endpoint message queue of PFCP messages, for re-transsions. */