Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

net-rps: Fix brokeness causing OOO packets

In commit c445477d74ab3779 which adds aRFS to the kernel, the CPU
selected for RFS is not set correctly when CPU is changing.
This is causing OOO packets and probably other issues.

Signed-off-by: Tom Herbert <therbert@google.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Acked-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Tom Herbert and committed by
David S. Miller
baefa31d 2a953883

+3 -1
+3 -1
net/core/dev.c
··· 2818 2818 if (unlikely(tcpu != next_cpu) && 2819 2819 (tcpu == RPS_NO_CPU || !cpu_online(tcpu) || 2820 2820 ((int)(per_cpu(softnet_data, tcpu).input_queue_head - 2821 - rflow->last_qtail)) >= 0)) 2821 + rflow->last_qtail)) >= 0)) { 2822 + tcpu = next_cpu; 2822 2823 rflow = set_rps_cpu(dev, skb, rflow, next_cpu); 2824 + } 2823 2825 2824 2826 if (tcpu != RPS_NO_CPU && cpu_online(tcpu)) { 2825 2827 *rflowp = rflow;