Skip to content

Commit

Permalink
mm/slub.c: switch to bitmap_zalloc()
Browse files Browse the repository at this point in the history
Switch to bitmap_zalloc() to show clearly what we are allocating.  Besides
that it returns pointer of bitmap type instead of opaque void *.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Andy Shevchenko <[email protected]>
Acked-by: Christoph Lameter <[email protected]>
Reviewed-by: Andrew Morton <[email protected]>
Tested-by: David Rientjes <[email protected]>
Cc: Pekka Enberg <[email protected]>
Cc: Joonsoo Kim <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
andy-shev authored and torvalds committed Oct 26, 2018
1 parent 253cc22 commit 0684e65
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions mm/slub.c
Original file line number Diff line number Diff line change
Expand Up @@ -3621,9 +3621,7 @@ static void list_slab_objects(struct kmem_cache *s, struct page *page,
#ifdef CONFIG_SLUB_DEBUG
void *addr = page_address(page);
void *p;
unsigned long *map = kcalloc(BITS_TO_LONGS(page->objects),
sizeof(long),
GFP_ATOMIC);
unsigned long *map = bitmap_zalloc(page->objects, GFP_ATOMIC);
if (!map)
return;
slab_err(s, page, text, s->name);
Expand All @@ -3638,7 +3636,7 @@ static void list_slab_objects(struct kmem_cache *s, struct page *page,
}
}
slab_unlock(page);
kfree(map);
bitmap_free(map);
#endif
}

Expand Down Expand Up @@ -4411,18 +4409,16 @@ static long validate_slab_cache(struct kmem_cache *s)
{
int node;
unsigned long count = 0;
unsigned long *map = kmalloc_array(BITS_TO_LONGS(oo_objects(s->max)),
sizeof(unsigned long),
GFP_KERNEL);
struct kmem_cache_node *n;
unsigned long *map = bitmap_alloc(oo_objects(s->max), GFP_KERNEL);

if (!map)
return -ENOMEM;

flush_all(s);
for_each_kmem_cache_node(s, node, n)
count += validate_slab_node(s, n, map);
kfree(map);
bitmap_free(map);
return count;
}
/*
Expand Down Expand Up @@ -4573,14 +4569,12 @@ static int list_locations(struct kmem_cache *s, char *buf,
unsigned long i;
struct loc_track t = { 0, 0, NULL };
int node;
unsigned long *map = kmalloc_array(BITS_TO_LONGS(oo_objects(s->max)),
sizeof(unsigned long),
GFP_KERNEL);
struct kmem_cache_node *n;
unsigned long *map = bitmap_alloc(oo_objects(s->max), GFP_KERNEL);

if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
GFP_KERNEL)) {
kfree(map);
bitmap_free(map);
return sprintf(buf, "Out of memory\n");
}
/* Push back cpu slabs */
Expand Down Expand Up @@ -4646,7 +4640,7 @@ static int list_locations(struct kmem_cache *s, char *buf,
}

free_loc_track(&t);
kfree(map);
bitmap_free(map);
if (!t.count)
len += sprintf(buf, "No data\n");
return len;
Expand Down

0 comments on commit 0684e65

Please sign in to comment.