Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 38cb5245 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

tcp: call sk_mark_napi_id() on the child, not the listener



This fixes a typo : We want to store the NAPI id on child socket.
Presumably nobody really uses busy polling, on short lived flows.

Fixes: 3d97379a ("tcp: move sk_mark_napi_id() at the right place")
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8d2675f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1411,7 +1411,7 @@ int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)


		if (nsk != sk) {
		if (nsk != sk) {
			sock_rps_save_rxhash(nsk, skb);
			sock_rps_save_rxhash(nsk, skb);
			sk_mark_napi_id(sk, skb);
			sk_mark_napi_id(nsk, skb);
			if (tcp_child_process(sk, nsk, skb)) {
			if (tcp_child_process(sk, nsk, skb)) {
				rsk = nsk;
				rsk = nsk;
				goto reset;
				goto reset;
+1 −1
Original line number Original line Diff line number Diff line
@@ -1265,7 +1265,7 @@ static int tcp_v6_do_rcv(struct sock *sk, struct sk_buff *skb)
		 */
		 */
		if (nsk != sk) {
		if (nsk != sk) {
			sock_rps_save_rxhash(nsk, skb);
			sock_rps_save_rxhash(nsk, skb);
			sk_mark_napi_id(sk, skb);
			sk_mark_napi_id(nsk, skb);
			if (tcp_child_process(sk, nsk, skb))
			if (tcp_child_process(sk, nsk, skb))
				goto reset;
				goto reset;
			if (opt_skb)
			if (opt_skb)