mm/slob: use min_t() to compare ARCH_SLAB_MINALIGN
authorArnd Bergmann <arnd@arndb.de>
Fri, 5 Oct 2012 14:55:20 +0000 (16:55 +0200)
committerPekka Enberg <penberg@kernel.org>
Wed, 31 Oct 2012 07:24:22 +0000 (09:24 +0200)
commit789306e5ad6b3051c263ac2478875efa8bc07462
tree67b8bd1e953dfc46ea830c02622195d0f4000010
parentd8843922fba49e887874aa1f9e748d620c5092af
mm/slob: use min_t() to compare ARCH_SLAB_MINALIGN

The definition of ARCH_SLAB_MINALIGN is architecture dependent
and can be either of type size_t or int. Comparing that value
with ARCH_KMALLOC_MINALIGN can cause harmless warnings on
platforms where they are different. Since both are always
small positive integer numbers, using the size_t type to compare
them is safe and gets rid of the warning.

Without this patch, building ARM collie_defconfig results in:

mm/slob.c: In function '__kmalloc_node':
mm/slob.c:431:152: warning: comparison of distinct pointer types lacks a cast [enabled by default]
mm/slob.c: In function 'kfree':
mm/slob.c:484:153: warning: comparison of distinct pointer types lacks a cast [enabled by default]
mm/slob.c: In function 'ksize':
mm/slob.c:503:153: warning: comparison of distinct pointer types lacks a cast [enabled by default]

Acked-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
[ penberg@kernel.org: updates for master ]
Signed-off-by: Pekka Enberg <penberg@kernel.org>
mm/slob.c