diff options
author | Christoph Lameter <cl@linux.com> | 2013-01-10 23:12:17 +0400 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2013-02-01 14:32:06 +0400 |
commit | 6744f087ba2a49f6d6935d9daa0b20a0f03567b5 (patch) | |
tree | 0f208fc00f89179d5b1fd5ae32556663d9d4abac /include/linux/slab_def.h | |
parent | e33660165c901d18e7d3df2290db070d3e4b46df (diff) | |
download | linux-6744f087ba2a49f6d6935d9daa0b20a0f03567b5.tar.xz |
slab: Common name for the per node structures
Rename the structure used for the per node structures in slab
to have a name that expresses that fact.
Acked-by: Glauber Costa <glommer@parallels.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'include/linux/slab_def.h')
-rw-r--r-- | include/linux/slab_def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/slab_def.h b/include/linux/slab_def.h index e0f30ef9525d..8b5b2f6b36d3 100644 --- a/include/linux/slab_def.h +++ b/include/linux/slab_def.h @@ -95,7 +95,7 @@ struct kmem_cache { * pointer for each node since "nodelists" uses the remainder of * available pointers. */ - struct kmem_list3 **nodelists; + struct kmem_cache_node **nodelists; struct array_cache *array[NR_CPUS + MAX_NUMNODES]; /* * Do not add fields after array[] |