]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/xe: Fix the gem shrinker name
authorThomas Hellström <thomas.hellstrom@linux.intel.com>
Thu, 8 May 2025 11:29:31 +0000 (13:29 +0200)
committerLucas De Marchi <lucas.demarchi@intel.com>
Tue, 13 May 2025 20:17:05 +0000 (13:17 -0700)
The xe buffer object shrinker name is visible in the
<debugfs>/shrinker directory and most if not all other shinkers
follow a naming convention that looks like
<subsystem>-<driver>_<objects>:<unique>
Follow the same convention for xe, changing the name to
drm-xe_gem:<unique>.

Other shrinkers typically use the device node for <unique> but
since drm drivers typically don't have a single unique device-
node, instead use the unique name in the drm device.

Fixes: 00c8efc3180f ("drm/xe: Add a shrinker for xe bos")
Cc: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
Link: https://lore.kernel.org/r/20250508112931.3347-1-thomas.hellstrom@linux.intel.com
(cherry picked from commit 243bf99e2fe75edf8df1711c1377b6fc020b806c)
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
drivers/gpu/drm/xe/xe_shrinker.c

index 8184390f9c7b9c8a4627207da5f2c5b5afaefc90..86d47aaf0358922fde876117914c1b3d1bdd0138 100644 (file)
@@ -227,7 +227,7 @@ struct xe_shrinker *xe_shrinker_create(struct xe_device *xe)
        if (!shrinker)
                return ERR_PTR(-ENOMEM);
 
-       shrinker->shrink = shrinker_alloc(0, "xe system shrinker");
+       shrinker->shrink = shrinker_alloc(0, "drm-xe_gem:%s", xe->drm.unique);
        if (!shrinker->shrink) {
                kfree(shrinker);
                return ERR_PTR(-ENOMEM);