mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-17 04:17:44 +07:00
![]() System workqueues have been able to handle high level of concurrency for a long time now and there's no reason to use dedicated workqueues just to gain concurrency. Since the workqueue host->intr_wq is involved in sync point interrupts, and sync point wait and is not being used on a memory reclaim path, dedicated host->intr_wq has been replaced with the use of system_wq. Unlike a dedicated per-cpu workqueue created with create_workqueue(), system_wq allows multiple work items to overlap executions even on the same CPU; however, a per-cpu workqueue doesn't have any CPU locality or global ordering guarantees unless the target CPU is explicitly specified and thus the increase of local concurrency shouldn't make any difference. cancel_work_sync() has been used in _host1x_free_syncpt_irq() to ensure that no work is pending by the time exit path runs. Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com> Acked-by: Tejun Heo <tj@kernel.org> Signed-off-by: Thierry Reding <treding@nvidia.com> |
||
---|---|---|
.. | ||
cdma_hw.c | ||
channel_hw.c | ||
debug_hw.c | ||
host1x01_hardware.h | ||
host1x01.c | ||
host1x01.h | ||
host1x02_hardware.h | ||
host1x02.c | ||
host1x02.h | ||
host1x04_hardware.h | ||
host1x04.c | ||
host1x04.h | ||
host1x05_hardware.h | ||
host1x05.c | ||
host1x05.h | ||
hw_host1x01_channel.h | ||
hw_host1x01_sync.h | ||
hw_host1x01_uclass.h | ||
hw_host1x02_channel.h | ||
hw_host1x02_sync.h | ||
hw_host1x02_uclass.h | ||
hw_host1x04_channel.h | ||
hw_host1x04_sync.h | ||
hw_host1x04_uclass.h | ||
hw_host1x05_channel.h | ||
hw_host1x05_sync.h | ||
hw_host1x05_uclass.h | ||
intr_hw.c | ||
syncpt_hw.c |