On Apr 21, Paolo Abeni wrote: > On 4/17/26 8:36 AM, Lorenzo Bianconi wrote: > > @@ -1055,8 +1058,33 @@ static void airoha_qdma_cleanup_tx_queue(struct airoha_queue *q) > > e->dma_addr = 0; > > e->skb = NULL; > > list_add_tail(&e->list, &q->tx_list); > > + > > + /* Reset DMA descriptor */ > > + WRITE_ONCE(desc->ctrl, 0); > > + WRITE_ONCE(desc->addr, 0); > > + WRITE_ONCE(desc->data, 0); > > + WRITE_ONCE(desc->msg0, 0); > > + WRITE_ONCE(desc->msg1, 0); > > + WRITE_ONCE(desc->msg2, 0); > > Sashiko has some complains on this patch that look legit to me. Hi Paolo, I looked at the issue reported by Sashiko for patch 2/2 and I will send a dedicated patch to address it but I guess this problem is not strictly related to this patch since we already have the reported issue upstream even without this patch (please consider dma_unmap_single() in airoha_qdma_cleanup_tx_queue()). Moreover, in this patch I want to just add missing bits in airoha_qdma_cleanup_tx_queue(). > > Also the pre-existing issues mentioned WRT patch 1/2 makes such patch > IMHO almost ineffective, I think you should address them in the same series. The issue reported by Sashiko for patch 1/2 are already addressed in the following upstream series: https://patchwork.kernel.org/project/netdevbpf/cover/20260420-airoha_qdma_init_rx_queue-fix-v2-0-d99347e5c18d@kernel.org/ > > Note that you should have commented on sashiko review on the ML, it > would have saved a significant amount of time on us. I guess the main issue here is Sashiko is not currently sending the feedbacks on the ML, right? Regards, Lorenzo > > /P >