RE: [PATCH rtw-next v2 3/4] wifi: rtl8xxxu: preserve RX requests across recoverable transfer errors
From: Ping-Ke Shih
Date: Thu Sep 17 2026 - 03:53:06 EST
김우석[학생](전자정보대학 전자공학과) <5mghybrid@xxxxxxxxx> wrote:
>
> I'd like to keep the retry list and delayed work separate from normal
> pending requests, though. Putting failed requests directly on the normal
> pending list can let normal completions bypass the error backoff, while
> delaying the shared submission work can also delay replenishment of
> normal RX requests. Keeping the two lists preserves the existing normal
> RX scheduling while removing the duplicated queueing code.
I think the retry list is to resolve resource temporarily unavailable, right?
If so, the normal pending list can also encounter if it immediately requests
the resource.
My thought is to use a flag (as function argument) for normal pending list,
and make a delay before it reschedules the work.
I'm trying to avoid very similar code.
Ping-Ke