Hi Joe and all, I am part of the NVIDIA Eth drivers team, and we are experiencing a problem, sibesced to this change: commit 86e25f40aa1e ("net: napi: Add napi_config") The issue occurs when sending packets from one machine to another. On the receiver side, we have XSK (XDPsock) that receives the packet and sends it back to the sender. At some point, one packet (packet A) gets "stuck," and if we send a new packet (packet B), it "pushes" the previous one. Packet A is then processed by the NAPI poll, and packet B gets stuck, and so on. Your change involves moving napi_hash_del() and napi_hash_add() from netif_napi_del() and netif_napi_add_weight() to napi_enable() and napi_disable(). If I move them back to netif_napi_del() and netif_napi_add_weight(), the issue is resolved (I moved the entire if/else block, not just the napi_hash_del/add). This issue occurs with both the new and old APIs (netif_napi_add/_config). Moving the napi_hash_add() and napi_hash_del() functions resolves it for both. I am debugging this, no breakthrough so far. I would appreciate if you could look into this. We can provide more details per request. Regards, Alexei Lazar