Skip to content

Commit

Permalink
slab: replace non-existing 'struct freelist *' with 'void *'
Browse files Browse the repository at this point in the history
There is no 'strcut freelist', but codes use pointer to 'struct freelist'.
Although compiler doesn't complain anything about this wrong usage and
codes work fine, but fixing it is better.

Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Pekka Enberg <penberg@iki.fi>
  • Loading branch information
Joonsoo Kim authored and Pekka Enberg committed Oct 30, 2013
1 parent 0172f77 commit 7e00735
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mm/slab.c
Original file line number Diff line number Diff line change
Expand Up @@ -1954,7 +1954,7 @@ static void slab_destroy_debugcheck(struct kmem_cache *cachep,
*/
static void slab_destroy(struct kmem_cache *cachep, struct page *page)
{
struct freelist *freelist;
void *freelist;

freelist = page->freelist;
slab_destroy_debugcheck(cachep, page);
Expand Down Expand Up @@ -2520,11 +2520,11 @@ int __kmem_cache_shutdown(struct kmem_cache *cachep)
* kmem_find_general_cachep till the initialization is complete.
* Hence we cannot have freelist_cache same as the original cache.
*/
static struct freelist *alloc_slabmgmt(struct kmem_cache *cachep,
static void *alloc_slabmgmt(struct kmem_cache *cachep,
struct page *page, int colour_off,
gfp_t local_flags, int nodeid)
{
struct freelist *freelist;
void *freelist;
void *addr = page_address(page);

if (OFF_SLAB(cachep)) {
Expand Down Expand Up @@ -2646,7 +2646,7 @@ static void slab_put_obj(struct kmem_cache *cachep, struct page *page,
* virtual address for kfree, ksize, and slab debugging.
*/
static void slab_map_pages(struct kmem_cache *cache, struct page *page,
struct freelist *freelist)
void *freelist)
{
page->slab_cache = cache;
page->freelist = freelist;
Expand All @@ -2659,7 +2659,7 @@ static void slab_map_pages(struct kmem_cache *cache, struct page *page,
static int cache_grow(struct kmem_cache *cachep,
gfp_t flags, int nodeid, struct page *page)
{
struct freelist *freelist;
void *freelist;
size_t offset;
gfp_t local_flags;
struct kmem_cache_node *n;
Expand Down

0 comments on commit 7e00735

Please sign in to comment.