* [PATCH 1/1] drm/sched: Use KMEM_CACHE instead of kmem_cache_create
@ 2025-09-02 9:05 Longlong Xia
0 siblings, 0 replies; only message in thread
From: Longlong Xia @ 2025-09-02 9:05 UTC (permalink / raw)
To: yuq825, maarten.lankhorst; +Cc: dri-devel, lima, linux-kernel, Longlong Xia
Use KMEM_CACHE() instead of kmem_cache_create() to simplify the code.
Signed-off-by: Longlong Xia <xialonglong@kylinos.cn>
---
drivers/gpu/drm/lima/lima_sched.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/lima/lima_sched.c b/drivers/gpu/drm/lima/lima_sched.c
index 739e8c6c6d90..b079ac198d59 100644
--- a/drivers/gpu/drm/lima/lima_sched.c
+++ b/drivers/gpu/drm/lima/lima_sched.c
@@ -28,9 +28,7 @@ static int lima_fence_slab_refcnt;
int lima_sched_slab_init(void)
{
if (!lima_fence_slab) {
- lima_fence_slab = kmem_cache_create(
- "lima_fence", sizeof(struct lima_fence), 0,
- SLAB_HWCACHE_ALIGN, NULL);
+ lima_fence_slab = KMEM_CACHE(lima_fence, SLAB_HWCACHE_ALIGN);
if (!lima_fence_slab)
return -ENOMEM;
}
--
2.43.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2025-09-02 9:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-02 9:05 [PATCH 1/1] drm/sched: Use KMEM_CACHE instead of kmem_cache_create Longlong Xia
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).