Messages in this thread Patch in this message |  | | | Date | Sun, 22 Jan 2006 12:06:19 -0800 | | From | "Randy.Dunlap" <> | | Subject | [PATCH] slab: fix sparse warning |
| |
From: Randy Dunlap <rdunlap@xenotime.net>
fix sparse warning: mm/slab.c:1522:13: error: incompatible types for operation (&)
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> --- mm/slab.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) --- linux-2616-rc1g4.orig/mm/slab.c +++ linux-2616-rc1g4/mm/slab.c @@ -1501,7 +1501,7 @@ static inline void set_up_list3s(kmem_ca * towards high-order requests, this should be changed. */ static inline size_t calculate_slab_order(kmem_cache_t *cachep, size_t size, - size_t align, gfp_t flags) + size_t align, unsigned long flags) { size_t left_over = 0;
--- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |