Commit 0eb5acb1 authored by Vlad Buslov's avatar Vlad Buslov Committed by David S. Miller
Browse files

netfilter: flowtable: fixup UDP timeout depending on ct state



Currently flow_offload_fixup_ct() function assumes that only replied UDP
connections can be offloaded and hardcodes UDP_CT_REPLIED timeout value. To
enable UDP NEW connection offload in following patches extract the actual
connections state from ct->status and set the timeout according to it.

Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 29744a10
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -193,8 +193,11 @@ static void flow_offload_fixup_ct(struct nf_conn *ct)
		timeout -= tn->offload_timeout;
	} else if (l4num == IPPROTO_UDP) {
		struct nf_udp_net *tn = nf_udp_pernet(net);
		enum udp_conntrack state =
			test_bit(IPS_SEEN_REPLY_BIT, &ct->status) ?
			UDP_CT_REPLIED : UDP_CT_UNREPLIED;

		timeout = tn->timeouts[UDP_CT_REPLIED];
		timeout = tn->timeouts[state];
		timeout -= tn->offload_timeout;
	} else {
		return;