]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
drm/xe: Use usleep_range for accurate long-running workload timeslicing
authorMatthew Brost <matthew.brost@intel.com>
Fri, 12 Dec 2025 18:28:42 +0000 (10:28 -0800)
committerThomas Hellström <thomas.hellstrom@linux.intel.com>
Thu, 18 Dec 2025 17:25:42 +0000 (18:25 +0100)
commit80f9c601d9c4d26f00356c0a9c461650e7089273
tree734acaac043482237ee9d1ea73dd5f671a1eb433
parentfe3ccd24138fd391ae8e32289d492c85f67770fc
drm/xe: Use usleep_range for accurate long-running workload timeslicing

msleep is not very accurate in terms of how long it actually sleeps,
whereas usleep_range is precise. Replace the timeslice sleep for
long-running workloads with the more accurate usleep_range to avoid
jitter if the sleep period is less than 20ms.

Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Cc: stable@vger.kernel.org
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Link: https://patch.msgid.link/20251212182847.1683222-3-matthew.brost@intel.com
(cherry picked from commit ca415c4d4c17ad676a2c8981e1fcc432221dce79)
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
drivers/gpu/drm/xe/xe_guc_submit.c