Re: [PATCH v4 03/10] drm/sched: Move schedule policy to scheduler

2023-09-27 Thread Luben Tuikov
Hi, On 2023-09-19 01:01, Matthew Brost wrote: > Rather than a global modparam for scheduling policy, move the scheduling > policy to scheduler so user can control each scheduler policy. > > v2: > - s/DRM_SCHED_POLICY_MAX/DRM_SCHED_POLICY_COUNT (Luben) > - Only include policy in scheduler (Lub

Re: [PATCH v4 03/10] drm/sched: Move schedule policy to scheduler

2023-09-23 Thread kernel test robot
thew-Brost/drm-sched-Add-drm_sched_submit_-helpers/20230919-130353 base: git://anongit.freedesktop.org/drm/drm drm-next patch link: https://lore.kernel.org/r/20230919050155.2647172-4-matthew.brost%40intel.com patch subject: [PATCH v4 03/10] drm/sched: Move schedule policy to scheduler co

[PATCH v4 03/10] drm/sched: Move schedule policy to scheduler

2023-09-18 Thread Matthew Brost
Rather than a global modparam for scheduling policy, move the scheduling policy to scheduler so user can control each scheduler policy. v2: - s/DRM_SCHED_POLICY_MAX/DRM_SCHED_POLICY_COUNT (Luben) - Only include policy in scheduler (Luben) v3: - use a ternary operator as opposed to an if-cont