Re: [PATCH bpf-next 0/9] bpf: cpumap: enable GRO for XDP_PASS frames
From: Alexander Lobakin
Date: Wed Sep 04 2024 - 09:15:24 EST
From: Jakub Kicinski <kuba@xxxxxxxxxx>
Date: Tue, 3 Sep 2024 13:51:58 -0700
> On Fri, 30 Aug 2024 18:24:59 +0200 Alexander Lobakin wrote:
>> * patch 4: switch cpumap from a custom kthread to a CPU-pinned
>> threaded NAPI;
>
> Could you try to use the backlog NAPI? Allocating a fake netdev and
> using NAPI as a threading abstraction feels like an abuse. Maybe try
> to factor out the necessary bits? What we want is using the per-cpu
> caches, and feeding GRO. None of the IRQ related NAPI functionality
> fits in here.
Lorenzo will try as he wrote. I can only add that in my old tree, I
factored out GRO bits and used them here just as you wrote. The perf was
the same, but the diffstat was several hundred lines only to factor out
stuff, while here the actual switch to NAPI removes more lines than
adds, also custom kthread logic is gone etc. It just looks way more
elegant and simple.
I could say that gro_cells also "abuses" NAPI the same way, don't you
think? But nobody ever objected :>
Thanks,
Olek