Skip to content

Commit c77d4c5

Browse files
Radhey Shyam Pandeyvinodkoul
authored andcommitted
dmaengine: xilinx_dma: Use tasklet_hi_schedule for timing critical usecase
Schedule tasklet with high priority to ensure that callback processing is prioritized. It improves throughput for netdev dma clients. Signed-off-by: Radhey Shyam Pandey <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent 7bcdaa6 commit c77d4c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/dma/xilinx/xilinx_dma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1850,7 +1850,7 @@ static irqreturn_t xilinx_mcdma_irq_handler(int irq, void *data)
18501850
spin_unlock(&chan->lock);
18511851
}
18521852

1853-
tasklet_schedule(&chan->tasklet);
1853+
tasklet_hi_schedule(&chan->tasklet);
18541854
return IRQ_HANDLED;
18551855
}
18561856

0 commit comments

Comments
 (0)