Re: [PATCH 1/7] drm/msm: move wq handling to KMS code

2025-04-30 Thread Abhinav Kumar
On 4/15/2025 1:59 AM, Dmitry Baryshkov wrote: On 14/04/2025 18:58, Rob Clark wrote: On Sun, Apr 13, 2025 at 9:33 AM Dmitry Baryshkov wrote: The global workqueue is only used for vblanks inside KMS code. Move allocation / flushing / deallcation of it to msm_kms.c Maybe we should also just

Re: [PATCH 1/7] drm/msm: move wq handling to KMS code

2025-04-15 Thread Dmitry Baryshkov
On 14/04/2025 18:58, Rob Clark wrote: On Sun, Apr 13, 2025 at 9:33 AM Dmitry Baryshkov wrote: The global workqueue is only used for vblanks inside KMS code. Move allocation / flushing / deallcation of it to msm_kms.c Maybe we should also just move the wq into struct msm_kms? ... together w

Re: [PATCH 1/7] drm/msm: move wq handling to KMS code

2025-04-14 Thread Rob Clark
On Sun, Apr 13, 2025 at 9:33 AM Dmitry Baryshkov wrote: > > The global workqueue is only used for vblanks inside KMS code. Move > allocation / flushing / deallcation of it to msm_kms.c Maybe we should also just move the wq into struct msm_kms? BR, -R > > Signed-off-by: Dmitry Baryshkov > --- >

[PATCH 1/7] drm/msm: move wq handling to KMS code

2025-04-13 Thread Dmitry Baryshkov
The global workqueue is only used for vblanks inside KMS code. Move allocation / flushing / deallcation of it to msm_kms.c Signed-off-by: Dmitry Baryshkov --- drivers/gpu/drm/msm/msm_drv.c | 21 ++--- drivers/gpu/drm/msm/msm_kms.c | 16 +++- 2 files changed, 17 insert