Commit c63349fc authored by Chengming Zhou's avatar Chengming Zhou Committed by Vlastimil Babka

mm/slub: remove unused parameter in next_freelist_entry()

The parameter "struct slab *slab" is unused in next_freelist_entry(),
so just remove it.
Acked-by: default avatarChristoph Lameter (Ampere) <cl@linux.com>
Reviewed-by: default avatarVlastimil Babka <vbabka@suse.cz>
Signed-off-by: default avatarChengming Zhou <zhouchengming@bytedance.com>
Signed-off-by: default avatarVlastimil Babka <vbabka@suse.cz>
parent a6def11b
...@@ -2243,7 +2243,7 @@ static void __init init_freelist_randomization(void) ...@@ -2243,7 +2243,7 @@ static void __init init_freelist_randomization(void)
} }
/* Get the next entry on the pre-computed freelist randomized */ /* Get the next entry on the pre-computed freelist randomized */
static void *next_freelist_entry(struct kmem_cache *s, struct slab *slab, static void *next_freelist_entry(struct kmem_cache *s,
unsigned long *pos, void *start, unsigned long *pos, void *start,
unsigned long page_limit, unsigned long page_limit,
unsigned long freelist_count) unsigned long freelist_count)
...@@ -2282,13 +2282,12 @@ static bool shuffle_freelist(struct kmem_cache *s, struct slab *slab) ...@@ -2282,13 +2282,12 @@ static bool shuffle_freelist(struct kmem_cache *s, struct slab *slab)
start = fixup_red_left(s, slab_address(slab)); start = fixup_red_left(s, slab_address(slab));
/* First entry is used as the base of the freelist */ /* First entry is used as the base of the freelist */
cur = next_freelist_entry(s, slab, &pos, start, page_limit, cur = next_freelist_entry(s, &pos, start, page_limit, freelist_count);
freelist_count);
cur = setup_object(s, cur); cur = setup_object(s, cur);
slab->freelist = cur; slab->freelist = cur;
for (idx = 1; idx < slab->objects; idx++) { for (idx = 1; idx < slab->objects; idx++) {
next = next_freelist_entry(s, slab, &pos, start, page_limit, next = next_freelist_entry(s, &pos, start, page_limit,
freelist_count); freelist_count);
next = setup_object(s, next); next = setup_object(s, next);
set_freepointer(s, cur, next); set_freepointer(s, cur, next);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment