Skip to content

Commit c14bdcc

Browse files
RichardWeiYangakpm00
authored andcommitted
mm/khugepaged: use KMEM_CACHE()
We got some late review commits during review of commit b4c9ffb ("mm/khugepaged: remove definition of struct khugepaged_mm_slot"). No need to keep the old cache name "khugepaged_mm_slot", let's simply use KMEM_CACHE(). Link: https://lkml.kernel.org/r/20251001091900.20041-3-richard.weiyang@gmail.com Fixes: b4c9ffb ("mm/khugepaged: remove definition of struct khugepaged_mm_slot") Signed-off-by: Wei Yang <richard.weiyang@gmail.com> Acked-by: Lance Yang <lance.yang@linux.dev> Reviewed-by: Dev Jain <dev.jain@arm.com> Acked-by: David Hildenbrand <david@redhat.com> Acked-by: Zi Yan <ziy@nvidia.com> Reviewed-by: Raghavendra K T <raghavendra.kt@amd.com> Cc: Kiryl Shutsemau <kirill@shutemov.name> Cc: xu xin <xu.xin16@zte.com.cn> Cc: SeongJae Park <sj@kernel.org> Cc: Nico Pache <npache@redhat.com> Cc: Baolin Wang <baolin.wang@linux.alibaba.com> Cc: Barry Song <baohua@kernel.org> Cc: Chengming Zhou <chengming.zhou@linux.dev> Cc: Dan Carpenter <dan.carpenter@linaro.org> Cc: Kiryl Shutsemau <kas@kernel.org> Cc: Liam Howlett <liam.howlett@oracle.com> Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> Cc: Ryan Roberts <ryan.roberts@arm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
1 parent df6879a commit c14bdcc

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

mm/khugepaged.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -376,10 +376,7 @@ int hugepage_madvise(struct vm_area_struct *vma,
376376

377377
int __init khugepaged_init(void)
378378
{
379-
mm_slot_cache = kmem_cache_create("khugepaged_mm_slot",
380-
sizeof(struct mm_slot),
381-
__alignof__(struct mm_slot),
382-
0, NULL);
379+
mm_slot_cache = KMEM_CACHE(mm_slot, 0);
383380
if (!mm_slot_cache)
384381
return -ENOMEM;
385382

0 commit comments

Comments
 (0)