From: Randy Dunlap <[email protected]>
fix sparse warning:
mm/slab.c:1522:13: error: incompatible types for operation (&)
Signed-off-by: Randy Dunlap <[email protected]>
---
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;
---
Hi Randy,
On Sun, 2006-01-22 at 12:06 -0800, Randy.Dunlap wrote:
> From: Randy Dunlap <[email protected]>
>
> fix sparse warning:
> mm/slab.c:1522:13: error: incompatible types for operation (&)
>
> Signed-off-by: Randy Dunlap <[email protected]>
Looks good, thanks.
Acked-by: Pekka Enberg <[email protected]>
Pekka