mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 07:44:49 +01:00
drm/amdgpu: Simplify the allocation of mux_chunk slab caches
Use the new KMEM_CACHE() macro instead of direct kmem_cache_create to simplify the creation of SLAB caches. Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Kunwu Chan <chentao@kylinos.cn> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
3d14cb0263
commit
e4e4618bc1
1 changed files with 1 additions and 3 deletions
|
|
@ -159,9 +159,7 @@ int amdgpu_ring_mux_init(struct amdgpu_ring_mux *mux, struct amdgpu_ring *ring,
|
|||
mux->ring_entry_size = entry_size;
|
||||
mux->s_resubmit = false;
|
||||
|
||||
amdgpu_mux_chunk_slab = kmem_cache_create("amdgpu_mux_chunk",
|
||||
sizeof(struct amdgpu_mux_chunk), 0,
|
||||
SLAB_HWCACHE_ALIGN, NULL);
|
||||
amdgpu_mux_chunk_slab = KMEM_CACHE(amdgpu_mux_chunk, SLAB_HWCACHE_ALIGN);
|
||||
if (!amdgpu_mux_chunk_slab) {
|
||||
DRM_ERROR("create amdgpu_mux_chunk cache failed\n");
|
||||
return -ENOMEM;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue