提交 5e804789 编写于 作者: J Joonsoo Kim 提交者: Linus Torvalds

slab: change int to size_t for representing allocation size

It is better to represent allocation size in size_t rather than int.  So
change it.
Signed-off-by: NJoonsoo Kim <iamjoonsoo.kim@lge.com>
Suggested-by: NAndrew Morton <akpm@linux-foundation.org>
Cc: Christoph Lameter <cl@linux.com>
Reviewed-by: NPekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 a6406168
...@@ -681,7 +681,7 @@ static void init_arraycache(struct array_cache *ac, int limit, int batch) ...@@ -681,7 +681,7 @@ static void init_arraycache(struct array_cache *ac, int limit, int batch)
static struct array_cache *alloc_arraycache(int node, int entries, static struct array_cache *alloc_arraycache(int node, int entries,
int batchcount, gfp_t gfp) int batchcount, gfp_t gfp)
{ {
int memsize = sizeof(void *) * entries + sizeof(struct array_cache); size_t memsize = sizeof(void *) * entries + sizeof(struct array_cache);
struct array_cache *ac = NULL; struct array_cache *ac = NULL;
ac = kmalloc_node(memsize, gfp, node); ac = kmalloc_node(memsize, gfp, node);
...@@ -868,7 +868,7 @@ static void *alternate_node_alloc(struct kmem_cache *, gfp_t); ...@@ -868,7 +868,7 @@ static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
static struct alien_cache *__alloc_alien_cache(int node, int entries, static struct alien_cache *__alloc_alien_cache(int node, int entries,
int batch, gfp_t gfp) int batch, gfp_t gfp)
{ {
int memsize = sizeof(void *) * entries + sizeof(struct alien_cache); size_t memsize = sizeof(void *) * entries + sizeof(struct alien_cache);
struct alien_cache *alc = NULL; struct alien_cache *alc = NULL;
alc = kmalloc_node(memsize, gfp, node); alc = kmalloc_node(memsize, gfp, node);
...@@ -880,7 +880,7 @@ static struct alien_cache *__alloc_alien_cache(int node, int entries, ...@@ -880,7 +880,7 @@ static struct alien_cache *__alloc_alien_cache(int node, int entries,
static struct alien_cache **alloc_alien_cache(int node, int limit, gfp_t gfp) static struct alien_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
{ {
struct alien_cache **alc_ptr; struct alien_cache **alc_ptr;
int memsize = sizeof(void *) * nr_node_ids; size_t memsize = sizeof(void *) * nr_node_ids;
int i; int i;
if (limit > 1) if (limit > 1)
...@@ -1037,7 +1037,7 @@ static int init_cache_node_node(int node) ...@@ -1037,7 +1037,7 @@ static int init_cache_node_node(int node)
{ {
struct kmem_cache *cachep; struct kmem_cache *cachep;
struct kmem_cache_node *n; struct kmem_cache_node *n;
const int memsize = sizeof(struct kmem_cache_node); const size_t memsize = sizeof(struct kmem_cache_node);
list_for_each_entry(cachep, &slab_caches, list) { list_for_each_entry(cachep, &slab_caches, list) {
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册