Re: [PATCH bpf-next 0/9] bpf: cpumap: enable GRO for XDP_PASS frames
From: Alexander Lobakin <aleksander.lobakin@intel.com>
Date: 2024-09-04 15:15:14
Also in:
bpf, lkml
From: Jakub Kicinski <kuba@kernel.org> Date: Wed, 4 Sep 2024 07:50:41 -0700
On Wed, 4 Sep 2024 15:13:54 +0200 Alexander Lobakin wrote:quoted
quoted
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.Once again we seem to be arguing whether lower LoC is equivalent to better code? :) If we can use backlog NAPI it hopefully won't be as
And once again I didn't say that explicitly :D When 2 patches work the same way, but one has far shorter diffstat, we often prefer this one if it's correct. This one for cpumap looked correct to me and Lorenzo and we didn't have any other ideas, so I picked it. I didn't say "it's better than backlog NAPI because it's shorter", the only thing I said re backlog NAPI is that we'll try it. I didn't think of this previously at all, I'm no backlog expert in general.
long. Maybe other, better approaches are within reach, too.quoted
I could say that gro_cells also "abuses" NAPI the same way, don't you think?"same way"? :] Does it allocate a fake netdev, use NAPI as a threading abstraction or add extra fields to napi_struct ?
Wait wait wait, you said "NAPI IRQ related logics doesn't fit here". I could say the same for gro_cells -- IRQ related NAPI logics doesn't fit there. gro_cells is an SW abstraction. A fake netdev is used by multiple drivers to use GRO, you know that (popular for wireless drivers). They also conflict with the queue config effort.
If other maintainers disagree I won't be upset, but I'm worried that letting NAPI grow into some generic SW abstraction with broad use cases will hinder the ongoing queue config efforts.quoted
But nobody ever objected :>
Thanks, Olek